═══ 1. Hide Pop-Up Keyboard Window ═══ Select "Demo", then "Start Demo" to start the Demonstration Program. The dialog displays a row of pushbuttons which controls the display of a Pop-Up Keyboard. Button Actions: LOAD - Loads the default Pop-Up Keyboard. HIDE - Hides the currently visible Pop-Up Keyboard. RESTORE - Displays a hidden Pop-Up Keyboard. CLOSE - Closes the Pop-Up Keyboard. ═══ 2. LOAD ═══ LOAD - Loads the default Pop-Up Keyboard. Example: APIRET rc; rc = (APIRET) VkpLoadKeyboard( NULL, hwnd ) hwnd - The window handle of the frame that owns the Pop-Up Keyboard. ═══ 3. HIDE ═══ HIDE - Hides the currently visible Pop-Up Keyboard. Example: APIRET rc; rc = (APIRET) VkpHideKeyboard( hwnd ) hwnd - The window handle of the frame that owns the Pop-Up Keyboard. ═══ 4. RESTORE ═══ RESTORE - Displays a hidden Pop-Up Keyboard. Example: APIRET rc; rc = VkpSetKbPos( 0L, 0L, 0L, 0L, SWP_SHOW, hwnd ) hwnd - The window handle of the frame that owns the Pop-Up Keyboard. ═══ 5. CLOSE ═══ CLOSE - Closes the Pop-Up Keyboard. Example: BOOL rc; rc = (APIRET) VkpCloseKb( hwnd ) hwnd - The window handle of the frame that owns the Pop-Up Keyboard.