I am trying to show/hide the SIP (Soft Input Panel) based on which control has focus at any given time. I found the function SIPShowIM referenced here...
http://msdn.microsoft.com/library/defau ... showim.asp
I am defining the function as a DLL FUNCTION using this line...
Code: Select all
#define SIPF_OFF 0x00000000
#define SIPF_ON 0x00000001
DLL FUNCTION SIPShowIM( nState AS DWORD ) AS BOOL LIB "COREDLL.DLL"
I call the function with this simple line...
However, I only get a NULL value in return and nothing happens to the SIP. Has anyone successfully found a way to manage the SIP?
Also, this might be a nice optional METHOD for GETs in FWPPC...