suoirotciv
Programmer
i need to populate in my combobox all table names using visual basic.
thank you in advance
thank you in advance
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim tbl As TableDef
'loop through table names
For Each tbl In db.TableDefs
'add to your combo box here
cmbBox.AddItem tbl
Next tbl