public static frmUsersManage CreateInstance()
        {
            frmUsersManage theInstance = new frmUsersManage();

            theInstance.Form_Load();
            return(theInstance);
        }
		public frmUsersManage()
			: 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();
			ReLoadForm(false);
		}
Exemple #3
0
 public frmUsersManage()
     : 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();
     ReLoadForm(false);
 }