I need some help. Right now i have a grid with 10 columns. All the columns
are using "text" to display the information but I need to use a combobox in a
column named "country". At the moment i have the following code but when the
cursor
enter that column then the combobox doesnt allow me to pick any other country
Grid.Name = GrdTempDetail
Grid.RecordSource = TempDetail
Column country information
GrdTempDetail.GrcCountry. countrolsource = tempdetail.country
GrdTempDetail.GrcCountry.combobox.countrolsource = tempdetail.country
GrdTempDetail.GrcCountry.combobox.recordsource = country.country
GrdTempDetail.GrcCountry.combobox.type = alias
The table country has 5 records at the moment.
1)USA
2)Canada
3)France
4)Italy
5)Mexico
What do i need to do to be able to show the combobox with all the countrys
and be able to pick a different one?
Thank for the help
Eliseo