[DllImport("user32.dll")]
static extern int ToAscii(uint uVirtKey, uint uScanCode, byte [] lpKeyState,
[Out] StringBuilder lpChar, uint uFlags);
<DllImport("user32")> _
Public Function ToAscii( _
ByVal uVirtKey As Integer, _
ByVal uScanCode As Integer, _
ByVal lpKeyState() As Byte, _
ByVal lpChar As StringBuilder, _
ByVal uFlags As Integer)
End Function
'or..
Public Declare Function ToAscii Lib "user32" (ByVal uVirtKey As Win32CONST.KeyEvent, ByVal uScanCode As Integer, ByVal lpKeyState() As Byte, ByVal lpChar As System.Text.StringBuilder, ByVal uFlags As Integer) As Integer
None.
None.
Please add some!
Please add some!
Do you know one? Please contribute it!