Re: Software keyboard

2005-11-24 Thread Mike
You need to call keybd_event which is (or was in win3.x - win95 at least) in USER32.DLL. Simulate return keypress: keybd_event(VK_RETURN,0,0,0); keybd_event(VK_RETURN,0,KEYEVENTF_KEYUP,0); Google turned this up: http://www.howtodothings.com/viewarticle.aspx?article=395 Note: This is ol

Software keyboard

2005-11-24 Thread maxxx_77
Hello. I'm a newbye of Python. I'm looking for a way of coding a virtual keyboard similar to the one that comes with Windows (Accessories -> Accessibility -> On Screen Keyboard). What I would like to do is make one which is a lot larger and add transparency to it. I've a first version in which I us