G
Guest
I want to be able to use multi language combo boxes in a form. The user must
be able to switch between English and Dutch.
Data in the database, from the combobox should be stored in one language only.
How should that be done?
I started with double combobox table :
Id
Txt_NL
Txt_GB
And tried to change the combo box property with:
If LangToggle = True Then
ComboBox.RowSource = "TheTable"
CpmboBox.BoundColumn = 1
Else
ComboBox.RowSource = "TheTable"
CpmboBox.BoundColumn = 2
End If
But that didn't work.
be able to switch between English and Dutch.
Data in the database, from the combobox should be stored in one language only.
How should that be done?
I started with double combobox table :
Id
Txt_NL
Txt_GB
And tried to change the combo box property with:
If LangToggle = True Then
ComboBox.RowSource = "TheTable"
CpmboBox.BoundColumn = 1
Else
ComboBox.RowSource = "TheTable"
CpmboBox.BoundColumn = 2
End If
But that didn't work.