static void Main( string[] args ) { WRoXMain appMain = new WRoXMain(); if (args.Length > 0) { appMain.boolargz = true; appMain.strargz = args[0]; } Application.Run(appMain); }
WRoXMain m_form; //ref main form for syncronous user interface calls #endregion Fields #region Constructors public RecSFV(ManualResetEvent eventStop, ManualResetEvent eventStopped, WRoXMain form) { m_EventStop = eventStop; m_EventStopped = eventStopped; m_form = form; }