Table names in a combo

  • Thread starter Thread starter KS
  • Start date Start date
K

KS

How can I populate a combobox with table names form a SQL-
DB ?

KS, Denmark
 
Try this SQL statement:

SELECT name
FROM sysobjects
WHERE (type = 'U')
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top