public frmOrderRequest() : base() { if (m_vb6FormDefInstance == null) { if (m_InitializingDefInstance) { m_vb6FormDefInstance = this; } else { try { //For the start-up form, the first instance created is the default instance. if (System.Reflection.Assembly.GetExecutingAssembly().EntryPoint.DeclaringType == this.GetType()) { m_vb6FormDefInstance = this; } } catch { } } } //This call is required by the Windows Form Designer. InitializeComponent(); }
public static frmOrderRequest CreateInstance() { frmOrderRequest theInstance = new frmOrderRequest(); theInstance.Form_Load(); return(theInstance); }