示例#1
0
 public bool Install()
 {
     frmInstallDB installDb = new frmInstallDB(new InstallDB());
     ProtocolForm.ShowModalDialog(FrameworkParams.MainForm, installDb);
     if (CheckOK())
         return true;
     else
         return false;
 }
示例#2
0
 public bool UnInstall()
 {
     frmInstallDB installDb = new frmInstallDB(new InstallDB());
     ProtocolForm.ShowModalDialog(FrameworkParams.MainForm, installDb);
     return true;
 }
示例#3
0
        public bool UnInstall()
        {
            frmInstallDB db = new frmInstallDB(new InstallDB());
            //frmInstallDB.Install = false;
            //ProtocolForm.ShowModalDialog(db);

            return true;
        }