Forum: Visual Basic 4 / 5 / 6 Jun 17th, 2005 |
| Replies: 3 Views: 1,511 ok as i promised you here it is.
Data1.Recordset.MoveFirst
Do Until Data1.Recordset.EOF
If Data1.Recordset!Name = datatofind Then
Data1.Recordset.Delete
Data1.Refresh
Exit Do
End If... |
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2005 |
| Replies: 5 Views: 4,344 @ ~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
... |
Forum: Visual Basic 4 / 5 / 6 Jun 15th, 2005 |
| Replies: 3 Views: 1,511 hello,
you can use the seek 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... |
Forum: Visual Basic 4 / 5 / 6 Jun 13th, 2005 |
| Replies: 9 Views: 21,583 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 Tools >>... |