Normal Topic On-Screen Keyboard (Read 524 times)
tcgeo
Full Member
***
Offline



Posts: 278
Location: Traverse City, Michigan
Joined: May 13th, 2008
On-Screen Keyboard
Oct 19th, 2010 at 8:27pm
Print Post Print Post  
I’m using @AsynchShell("C:\Windows\System32\osk.exe") on a command button to open the On-Screen Keyboard. Is there a way to close the keyboard with code?

Thanks for the help,

Brandon

P.S. In reference to NICEBERGS post concerning just a super big "Thank You" to all that help on this forum, I too am very thankful and want to say thank you to all also. I wouldn't be anywhere with Sesame without you!
  
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: On-Screen Keyboard
Reply #1 - Oct 19th, 2010 at 8:47pm
Print Post Print Post  
Taskkill works for me:
Code
Select All
CreateAProcess("taskkill /im osk.exe /f /t") 


  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
tcgeo
Full Member
***
Offline



Posts: 278
Location: Traverse City, Michigan
Joined: May 13th, 2008
Re: On-Screen Keyboard
Reply #2 - Oct 19th, 2010 at 8:58pm
Print Post Print Post  
Thank you very much Erika.

Works like a charm!
  
Back to top
IP Logged