I am trying to obtain a list of all tables in my database that will be used to populate a combobox.
The way I would assume to do this (in excel) is:
Dim r as recordset
For each r in recordsets
combobox1.additem r.name
Next r
but obviously it isn't the same in access, so could someone please help me out.
The way I would assume to do this (in excel) is:
Dim r as recordset
For each r in recordsets
combobox1.additem r.name
Next r
but obviously it isn't the same in access, so could someone please help me out.