コード例 #1
0
ファイル: Programold.cs プロジェクト: chughes-3/Start-TC-File
 static void Main()
 {
     ProgramData thisProg = new ProgramData();
     TrueCryptSWObj tcSoftware = new TrueCryptSWObj(thisProg);
     TC_Data_File tcData = new TC_Data_File(thisProg);
     tcData.OpenTcFile(tcSoftware, thisProg);
     MessageBox.Show("tcopen done");
 }
コード例 #2
0
        static void Main()
        {
            ProgramData    thisProg   = new ProgramData();
            TrueCryptSWObj tcSoftware = new TrueCryptSWObj(thisProg);
            TC_Data_File   tcData     = new TC_Data_File(thisProg);

            tcData.OpenTcFile(tcSoftware, thisProg);
            MessageBox.Show("tcopen done");
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: chughes-3/Start-TC-File
 static void Main()
 {
     ProgramData thisProg = new ProgramData();
     TrueCryptSWObj tcSoftware = new TrueCryptSWObj(thisProg);
     TC_Data_File tcData = new TC_Data_File(thisProg, tcSoftware);
     tcData.OpenTcFile();
     tcData.PDrivePerms();
     tcData.SharePDrive();
     MessageBox.Show("Drive " + TC_Data_File.tCryptDriveLetter + " is mounted and shared as " + TC_Data_File.shareName + "\rIf on a network the Workstations can be started now",thisProg.mbCaption,MessageBoxButtons.OK,MessageBoxIcon.Information);
 }
コード例 #4
0
        static void Main()
        {
            ProgramData    thisProg   = new ProgramData();
            TrueCryptSWObj tcSoftware = new TrueCryptSWObj(thisProg);
            TC_Data_File   tcData     = new TC_Data_File(thisProg, tcSoftware);

            tcData.OpenTcFile();
            tcData.PDrivePerms();
            tcData.SharePDrive();
            MessageBox.Show("Drive " + TC_Data_File.tCryptDriveLetter + " is mounted and shared as " + TC_Data_File.shareName + "\rIf on a network the Workstations can be started now", thisProg.mbCaption, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification);
        }