retrieve fix number of tables in combobox in c#
my query is
String query = @"SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE';";
this will return all the table names of database in combobox.
but i want fix number of tables in combobox which changes is require in this query?
please help
thank you..