Data Bind ComboBox to display the List
Hello Guys,
Please, please can anyone help. I seem to be stuck with a problem, I have created tables in SQL Server 2005 Express with the following definitions:
Customer
[Customer ID]
[NAME] nvarchar(100),
[CONTACT_NAME] nvarchar(60),
[CONTACT_1] nvarchar(100),
[CONTACT_2] nvarchar(50),
[CITY_TOWN] nvarchar(70),
[PROVINCE] varchar(50),
[COUNTRY] varchar(100)
Country
[COUNTRY NAME]
[City]
I have created a user-interface with Visual Basic Express 2005. So what steps do I use to link a CountryComboBox on the user-interface form to the table - Country [COUNTRY NAME]? So that the CountryComboBox can display the list of countries from the - database table - Country for the user. Thanks a lot.
|