User Profile
Collapse
-
guidelines to establish connection?
i want to know the guidelines to establish a connection i.e ADODB connection to a database.....wi th an ex. for understanding it...anyone there... -
We are using VB6 integrated with SQL Server 2000....Last edited by Killer42; Oct 11 '07, 02:19 AM. -
Commands to display text from database
Tell me the various commands that are used to display texts from a database.Last edited by Killer42; Oct 11 '07, 02:17 AM. -
adoRecordset.Op en "select name from employee", db.Connectionst ring
adoRecordset.Op en "select age from employee", db.Connectionst ring
adoRecordset.Op en "select dept from employee", db.Connectionst ring
If (Combo1 = "ssn") Then
Set Text1.DataSourc e = adoRecordset
Text1.DataField = "name"
Set...Leave a comment:
-
when i click on command button on giving ssn it has to retrive all info from employee table...Leave a comment:
-
i hav to print all these from from database how to do that?...Leave a comment:
-
I am a beginner for VB. i am writing a code which has to display details of employee from database. hav a look at my code...
Private Sub Combo1_click()
Combo1.AddItem ("1233")
Combo1.AddItem ("1234")
Combo1.AddItem ("3343")
End Sub
Private Sub Form_Load()
Dim adoRecordset As ADODB.Recordset
Dim...Leave a comment:
-
No activity results to display
Show More
Leave a comment: