No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
hi, check: http://resolviendoprogramacion.blogspot.com/2015/10/consumiendo-webservice-asmx.html I just develop a tiny example. Have a good day
Hi, 1) create a query in a dataset Add query > Use sql statements > Select which returns a single value the query is something like this: [code] SELECT valor FROM Table1 where id=@id [/code] valor= is the name of a column in Table1 that DataType is bit. 2) in …
put this in the function: AxWindowsMediaPlayer1.URL = "e:\music\Wanksta.mp3" AxWindowsMediaPlayer1.Visible = False and if you want to stop: AxWindowsMediaPlayer1.close() AxWindowsMediaPlayer1 is a COM component. this component you can add in the ToolBox whit right click and choose component. I hope this helps
Hi I think u need something like this: [url]http://www.c-sharpcorner.com/UploadFile/mahesh/RandomNumber11232005010428AM/RandomNumber.aspx[/url] Becaise if you want generate a number like a bank acccount number, you need a algorithm because each number in account has a meaning sucha as city, branch, etc. I hope this helps
Hi, (I hope understand your problem) 1) You can use the event "CellClick" of the DataGridView in form A: ' in this code the primary key of the table is loaded in the first column, Me.DataGridView1.CurrentRow.Cells(0).Value Private Sub DataGridView1_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick Dim customerID_ …
you can use this: [code] Dim mycon As New SqlClient.SqlConnection() Dim mycom As SqlClient.SqlDataAdapter mycon = New SqlClient.SqlConnection("Data Source=TOSHIBA-USER;Initial Catalog=test2;Persist Security Info=True;User ID=sa;Password=pass") mycom = New SqlClient.SqlDataAdapter("select playerid from player where username =" & TextBox1.Text & "", mycon) Dim ds As DataSet = New DataSet() mycom.Fill(ds) Dim id_ As String …
hi. If I underdant...you have 2 options: 1) In each textbox you have to select the propierty: (Databindings) > Text and choose as you need. (see the attach) 2) in the event cellClick [code=languaje] Private Sub DataGridView1_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick Me.TextBox2.Text = Me.DataGridView1.CurrentRow.Cells(0).Value Me.TextBox3.Text …
Hi, I dont know how is your code structure, but I think that you can use this: [code=language] 'event of page: Load Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not Page.IsPostBack Then 'you can evualate if the value of QueryString (nombre in this example) …
The End.
dlplenin