Forum: Visual Basic 4 / 5 / 6 Jul 14th, 2009 |
| Replies: 1 Views: 237 how to find the number of fields and their names in ms access using vb6?
i am using dao database. |
Forum: Visual Basic 4 / 5 / 6 Jul 14th, 2009 |
| Replies: 5 Views: 489 ^^^^^^^
i am not using duplicate tables and recordset
actually i wil create a new table every month to maintain attendance as i cnt have all in the same table. |
Forum: Visual Basic 4 / 5 / 6 Jul 12th, 2009 |
| Replies: 5 Views: 489 how to delete a particular record in all the tables?
i am not sure wat r the tables as i wil create them at run time
i am maintaining an attendance for employees.
a table wil be added for every... |
Forum: Visual Basic 4 / 5 / 6 Jul 5th, 2009 |
| Replies: 3 Views: 339 Set login = OpenDatabase("database path")
Set newtable = login.CreateTableDef("table_name")
With newtable
.Fields.Append .CreateField("name", dbText, 30)
end with
now wat is the default... |
Forum: Visual Basic 4 / 5 / 6 Jul 5th, 2009 |
| Replies: 3 Views: 339 what will be the initial value of the fields created in a new table(dao)?
how to change it? |