Hello,
I'm trying to localize fields from database to display different strings depending on the value. What I have is:
- example of the localized caption:
- or with data:
What I would like to have is for ColorValueTextBox to have the localized values depending on the Fields.Color.
How can that be accomplished?
I'm trying to localize fields from database to display different strings depending on the value. What I have is:
- example of the localized caption:
Me.ColorNameTextBox.Value = My.Resources.MyProjectResources.ColorName
Me.ColorValueTextBox.Value = "=IIf(Fields.Color =0, ""Blue"", IIf(Fields.Color=1,""Red"", ""Black""))"
What I would like to have is for ColorValueTextBox to have the localized values depending on the Fields.Color.
How can that be accomplished?