Esempio n. 1
0
 public void EndKeyboardCapture()
 {
     if (text_input != null)
     {
         text_input.Dispose(true);
         text_input = null;
     }
 }
Esempio n. 2
0
 public void StartKeyboardCapture()
 {
     if (text_input == null)
     {
         text_input = new textInput(targetform.Handle);
         // ...4-02-06
     }
     else
     {
         //already started
     }
 }
Esempio n. 3
0
 InteractionRequests.Add( textInput );$endif$$if$ ($enableOpenFile$ == true)
Esempio n. 4
0
 public void StartKeyboardCapture()
 {
     if (text_input == null)
     {
         text_input = new textInput(targetform.Handle);
         // ...4-02-06
     }
     else
     {
         //already started
     }
 }
Esempio n. 5
0
 public void EndKeyboardCapture()
 {
     if (text_input != null)
     {
         text_input.Dispose(true);
         text_input = null;
     }
 }