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 #72.8K
~196 People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
Re: VB6 database
Try this... [CODE=vb]Dim CON As new ADODB.Connection Dim rs As New ADODB.Recordset Dim SQLname As String Private Sub cmd_details_Click() SQLname = "Select name from Customer where telephone='" & txtphone.Text & "'" rs.Open sqlName, CON, adOpenKeyset, adLockOptimistic, 1 txtname.Text = rs.fields("name").value End Sub Private Sub form_initialize() Set CON = New ADODB.Connection …
use Active Data Objective (ADO).
The End.
fkmercado