private static void pmClearInstanse()
 {
     if (mInstanse != null)
     {
         mInstanse = null;
     }
 }
 public static frmWHPack GetInstanse()
 {
     if (mInstanse == null)
     {
         mInstanse = new frmWHPack();
     }
     return(mInstanse);
 }