No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
hello there, as far as i know vb6 can only manage access 97 file formats. so if you wanna get access to your database you should convert it into access 97 file format. to do that go to [COLOR=DarkRed]Tools >> Database Utilities >> Convert Database >> To Access 97 file …
hello, you can use the [COLOR=DarkRed]seek [/COLOR] command that will allow you to search for a certain value of data inside your database. but do not worry i will post you a full code description next time. :) . but i just wanna give an advise : try to use …
@ ~GGK~ Try this one, Dim dbs As Database Dim td As TableDef Set dbs = OpenDatabase(App.Path & "\mydata.mdb") For Each td In dbs.TableDefs If Left$(td.Name, 4) <> "MSys" Then Combo1.AddItem td.Name End If Next
The End.
hatem