home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pentlk11.zip / LOADKBD.HLP (.txt) < prev    next >
OS/2 Help File  |  1994-01-13  |  2KB  |  52 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. LOAD Pop-Up Keyboard Window ΓòÉΓòÉΓòÉ
  3.  
  4. Select "Demo", then "Start Demo" to start the Demonstration Program.  The 
  5. dialog displays two windows.  One has two entry fields for a name and a phone 
  6. number.  These entry fields should be filled in by using the Pop-Up Keyboard. 
  7. A different keyboard is displayed for each field. 
  8.  
  9. Button Actions:
  10. OK - Copies the Name and Phone Number fields to the display window.
  11. NAME - Enter a name in this field.
  12. PHONE_NO - Enter a phone number in this field.
  13.  
  14.  
  15. ΓòÉΓòÉΓòÉ 2. OK ΓòÉΓòÉΓòÉ
  16.  
  17. Copies the Name and Phone Number fields to the display window.
  18.  
  19.  
  20. ΓòÉΓòÉΓòÉ 3. NAME ΓòÉΓòÉΓòÉ
  21.  
  22. Enter a name in this field.
  23.  
  24. When this field gains focus the default keyboard is loaded.
  25.  
  26. Example: 
  27.  
  28. APIRET    rc;
  29.  
  30. rc = (APIRET) VkpLoadKeyboard( NULL, hwnd );
  31.  
  32.    NULL - Specifies the default keyboard.
  33.    hwnd - The window handle of the frame.
  34.           that owns the Pop-Up Keyboard.
  35.  
  36.  
  37. ΓòÉΓòÉΓòÉ 4. Phone Number ΓòÉΓòÉΓòÉ
  38.  
  39. Enter a phone number in this field.
  40.  
  41. When this field gains focus the Numerical keyboard is loaded.
  42.  
  43. Example: 
  44.  
  45. APIRET    rc;
  46.  
  47. rc = (APIRET) VkpLoadKeyboard( "NUMKEY", hwnd );
  48.  
  49.    NUMKEY - Specifies the Numerical keyboard.
  50.    hwnd - The window handle of the frame.
  51.           that owns the Pop-Up Keyboard.
  52.