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 #55.0K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for user777
Member Avatar for AndreRet
-1
2K
Member Avatar for ssimkhan

[B]This is Visual Basic 6 String Connection[/B] dim con as adodb.connection dim rs as new adodb.recordset Private Sub Form_Load() Set con = New ADODB.Connection ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\databasename.mdb;Persist Security Info=False" con.Open ConnectionString If rs.State = 1 Then rs.Close sql = "select * tablename" rs.Open sql, con, …

Member Avatar for kRod
0
185
Member Avatar for teklu

The End.