Example #1
0
 private void bKey_Click(object sender, EventArgs e)
 {
     Process[] processesByName = Process.GetProcessesByName("KVKeyboard");
     if (processesByName.Length < 1)
     {
         if (File.Exists("c:\\kiosk\\KVKeyboard.exe"))
         {
             try
             {
                 CheckCommands.RunPackage("c:\\kiosk\\", "KVKeyboard.exe", "es");
             }
             catch
             {
                 MessageBox.Show("Keyboard on screeen not present");
             }
         }
         else
         {
             MessageBox.Show("Keyboard on screeen not present");
         }
     }
 }