Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
RecordSource
Message
From
13/07/2000 06:27:39
 
 
To
12/07/2000 21:28:17
General information
Forum:
Visual Basic
Category:
Database DAO/RDO/ODBC/ADO
Title:
Miscellaneous
Thread ID:
00391614
Message ID:
00391689
Views:
9
>Is there something wrong in my codes below?, it does not work.. please help .. and thanks
>
>
>Private Sub Form_Load()
>Dim mSetupDir as String
>
>mSetupDir = App.Path & "\Setup.MDB"
>'
>adoDep.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & mSetupDir & ";Persist Security Info=False"
>'
>adoDep.RecordSource = "Select * from Department Where Department.Dept like 'A*' order by Department.Dept"
>
>End Sub

You have to open your Connection and your RecordSet:

ex:

Set adoDep = New ADODB.Connection

With adoDep
.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
mSetupDir & ";Persist Security Info=False"
.Open
End With

Dim rsDep As New ADODB.RecordSet

rsDep.RecordSet.open "Select * from Department Where Department.Dept like
'A*' order by Department.Dept", adoDep, adOpenStatic, adLockOptimistic

I hope this will help you.
Previous
Reply
Map
View

Click here to load this message in the networking platform