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

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Hide Pop-Up Keyboard Window ΓòÉΓòÉΓòÉ
  3.  
  4. Select "Demo", then "Start Demo" to start the Demonstration Program.  The 
  5. dialog displays a row of pushbuttons which controls the display of a Pop-Up 
  6. Keyboard. 
  7.  
  8. Button Actions:
  9. LOAD - Loads the default Pop-Up Keyboard.
  10. HIDE - Hides the currently visible Pop-Up Keyboard.
  11. RESTORE - Displays a hidden Pop-Up Keyboard.
  12. CLOSE - Closes the Pop-Up Keyboard.
  13.  
  14.  
  15. ΓòÉΓòÉΓòÉ 2. LOAD ΓòÉΓòÉΓòÉ
  16.  
  17. LOAD - Loads the default Pop-Up Keyboard.
  18.  
  19. Example: 
  20.  
  21. APIRET    rc;
  22.  
  23. rc = (APIRET) VkpLoadKeyboard( NULL,
  24.                                hwnd )
  25.  
  26.    hwnd - The window handle of the frame
  27.           that owns the Pop-Up Keyboard.
  28.  
  29.  
  30. ΓòÉΓòÉΓòÉ 3. HIDE ΓòÉΓòÉΓòÉ
  31.  
  32. HIDE - Hides the currently visible Pop-Up Keyboard.
  33.  
  34. Example: 
  35.  
  36. APIRET    rc;
  37.  
  38. rc = (APIRET) VkpHideKeyboard( hwnd )
  39.  
  40.    hwnd - The window handle of the frame
  41.           that owns the Pop-Up Keyboard.
  42.  
  43.  
  44. ΓòÉΓòÉΓòÉ 4. RESTORE ΓòÉΓòÉΓòÉ
  45.  
  46. RESTORE - Displays a hidden Pop-Up Keyboard.
  47.  
  48. Example: 
  49.  
  50. APIRET    rc;
  51.  
  52. rc = VkpSetKbPos( 0L, 0L, 0L, 0L,
  53.                   SWP_SHOW,
  54.                   hwnd )
  55.  
  56.    hwnd - The window handle of the frame
  57.           that owns the Pop-Up Keyboard.
  58.  
  59.  
  60. ΓòÉΓòÉΓòÉ 5. CLOSE ΓòÉΓòÉΓòÉ
  61.  
  62. CLOSE - Closes the Pop-Up Keyboard.
  63.  
  64. Example: 
  65.  
  66. BOOL      rc;
  67.  
  68. rc = (APIRET) VkpCloseKb( hwnd )
  69.  
  70.    hwnd - The window handle of the frame
  71.           that owns the Pop-Up Keyboard.
  72.