Re: generation of keyboard events

2009-07-07 Thread RAM
On 6 July, 10:02, Simon Brunning wrote: > 2009/7/6 RAM : > > > I am trying to do this on windows. My program(executable) has been > > written in VC++ and when I run this program, I need to click on one > > button on the program GUI i,e just I am entering "Enter key" on the > > key board. But this

Re: generation of keyboard events

2009-07-06 Thread Tim Harig
On 2009-07-06, RAM wrote: > I am trying to do this on windows. My program(executable) has been > written in VC++ and when I run this program, I need to click on one > button on the program GUI i,e just I am entering "Enter key" on the > key board. But this needs manual process. So i need to write

Re: generation of keyboard events

2009-07-06 Thread Simon Brunning
2009/7/6 RAM : > I am trying to do this on windows. My program(executable) has been > written in VC++ and when I run this program, I need to click on one > button on the program GUI i,e just I am entering "Enter key" on the > key board. But this needs manual process. So i need to write a python >

Re: generation of keyboard events

2009-07-06 Thread RAM
On 5 July, 17:12, Tim Harig wrote: > On 2009-07-05, RAM wrote: > > > I need to start an external program and pass the keyboard events like > > F1,Right arrow key etc to the program..I am trying to use the > > subprocess module to invoke the external program. I am able to invoke > > but not able t

Re: generation of keyboard events

2009-07-05 Thread Emile van Sebille
On 7/5/2009 8:56 AM RAM said... Hi, I need to start an external program and pass the keyboard events like F1,Right arrow key etc to the program..I am trying to use the subprocess module to invoke the external program. I am able to invoke but not able to generate the keyboard events and pass them

Re: generation of keyboard events

2009-07-05 Thread Tim Harig
On 2009-07-05, RAM wrote: > I need to start an external program and pass the keyboard events like > F1,Right arrow key etc to the program..I am trying to use the > subprocess module to invoke the external program. I am able to invoke > but not able to generate the keyboard events and pass them on

generation of keyboard events

2009-07-05 Thread RAM
Hi, I need to start an external program and pass the keyboard events like F1,Right arrow key etc to the program..I am trying to use the subprocess module to invoke the external program. I am able to invoke but not able to generate the keyboard events and pass them on to the external progam. Please