Group: Forum Members
Posts: 436,
Visits: 944
|
I just deployed a simple app I wrote and i figured out that this was the line causing a problem.
MicroFour.StrataFrame.UI.Localization.MessageLocaleID = MicroFour.StrataFrame.UI.Localization.GetActiveLanguage("BluePrintLog2K5")
Our users connect to our apps through remote desktop (terminal server) and GetActiveLanguage is looking for a .dat file in AllUsers. I was curious as whether the .dat file its looking for gets placed there when you install the app? We deploy our apps using the "XCopy" method so we never actually "install" them per se.
I changed the line of code to this: MicroFour.StrataFrame.UI.Localization.MessageLocaleID = 1033 which is fine because i dont ever see us writing apps in different languages but I was just curious as to the hows and whys i mentioned above.
Thanks
|