What does your code look like
I just added the following to the end of the IntitializeComponent section of MyForm.Designer:
Me.colHIDWght.Caption = MicroFour.StrataFrame.UI.Localization.RetrieveTextValue("F001_001")
Me.colHIDWght is a column in a DevExpress grid.
how are you implementing the XML files.
Using the standard SF edit tools.
Are they embedded or external.
External
If they are external, what does your Appmain.vb (or programcs) file look like in the InitApplication() method? If you embedding your XML files, then have you set t the XML files to "embedded" on the property sheet?
As follows:
e.Forms.Add(GetType(SF_Test06.frmHID))
'-- ToDo: Add any extra application initialization
MicroFour.StrataFrame.UI.Localization.MessageKeyType = MicroFour.StrataFrame.Messaging.MessageKeyDataType.XML
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = MicroFour.StrataFrame.UI.Localization.GetActiveLanguage("SF_Test06")
Actually I thought I could see the problem "SF_Test06" is incorrect - I actually created a message file name SF_test (not sure how SF_Test06 got in. However I changed the ActiveLanguage reference to "SF_test" but that didn't make an difference.
The warning (not error) definately displays at build time.
Cheers, Peter