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