Group: Forum Members
Posts: 235,
Visits: 309
|
I created a new SF Windows App, added a few controls and bo's and hit run and got a complaint about:
private static void InitApplication(InitializingApplicationEventArgs e)
{
//-- Add the main form type
//-- If more than one form is added to the collection, they can be chosen by showing a "Gateway" form
// and supplying the index of the form to show (At least 1 form type must be added to the collection
e.Forms.Add(typeof(MainForm.ResultSetBuilder));
//-- 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("ResultSetBuilder", "", false); ;
}
The project is named ResultSetBuilder and the form is named MainForm.
I don't understand why the code generator put this:
MainForm.ResultSetBuilder
in the e.Forms.Add
Removing the .ResultSetBuilder obviously resolves the runtime error.
|