═══ 1. LOAD Pop-Up Keyboard Window ═══ Select "Demo", then "Start Demo" to start the Demonstration Program. The dialog displays two windows. One has two entry fields for a name and a phone number. These entry fields should be filled in by using the Pop-Up Keyboard. A different keyboard is displayed for each field. Button Actions: OK - Copies the Name and Phone Number fields to the display window. NAME - Enter a name in this field. PHONE_NO - Enter a phone number in this field. ═══ 2. OK ═══ Copies the Name and Phone Number fields to the display window. ═══ 3. NAME ═══ Enter a name in this field. When this field gains focus the default keyboard is loaded. Example: APIRET rc; rc = (APIRET) VkpLoadKeyboard( NULL, hwnd ); NULL - Specifies the default keyboard. hwnd - The window handle of the frame. that owns the Pop-Up Keyboard. ═══ 4. Phone Number ═══ Enter a phone number in this field. When this field gains focus the Numerical keyboard is loaded. Example: APIRET rc; rc = (APIRET) VkpLoadKeyboard( "NUMKEY", hwnd ); NUMKEY - Specifies the Numerical keyboard. hwnd - The window handle of the frame. that owns the Pop-Up Keyboard.