Log in

View Full Version : Keypad


AngelPR
03-10-2003, 04:24 PM
Hi everybody

I am a eVB programmer. I would like to know if someone knows how to activate the keypad by the software, not but the user pressing the keypad icon.

Thanks;

Angel

AngelPR
10-04-2003, 01:40 AM
Hi everybody

I am a eVB programmer. I would like to know if someone knows how to activate the keypad by the software, not but the user pressing the keypad icon.

Thanks;

Angel

I found the way by my self y will like to publish it here


write this in the module form

Declare Function SipShowIM Lib "Coredll" (ByVal flags As Long) As Long

Public Function ShowKeyBoard() As Long
ShowKeyBoard = SipShowIM(1)
End Function

Private Function HideKeyBoard() As Long
HideKeyBoard = SipShowIM(0)
End Function