public frmSearch() : 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 frmSearch CreateInstance() { frmSearch theInstance = new frmSearch(); return(theInstance); }