Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #18.7K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

8 Posted Topics

Member Avatar for Rammanan

hi, check: http://resolviendoprogramacion.blogspot.com/2015/10/consumiendo-webservice-asmx.html I just develop a tiny example. Have a good day

Member Avatar for rubberman
0
237
Member Avatar for rak4u

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 …

Member Avatar for azimuth01
0
912
Member Avatar for fable1380

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

Member Avatar for huslayer
0
368
Member Avatar for tomikimi

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

Member Avatar for dlplenin
0
136
Member Avatar for RobinTheHood

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_ …

Member Avatar for dlplenin
0
112
Member Avatar for atiqjaved

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 …

Member Avatar for dlplenin
0
165
Member Avatar for BaggyHTID

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 …

Member Avatar for dlplenin
0
113
Member Avatar for reptar

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) …

Member Avatar for reptar
0
114

The End.