i want to retrieve all table names from database into combobox
Printable View
i want to retrieve all table names from database into combobox
Hi
Run this ms sql server 2000 query :
select name from sysobjects where xtype = 'u' order by name asc
Then add the results into the combobox.
Regards
Jorge