Sendkeys on Vista

  • Thread starter Thread starter rmotto
  • Start date Start date
R

rmotto

Hi,
i've a problem with sendkeys command operation in my app installed on
Windows Vista. I got Error 70.

I've tried to replace it with fsendkeys function (the public function
to resolve numlock issue) but i didnt resolve.

There's a solution?

Thank you. Roberto
 
What are you trying to do with the sendkeys?
Check out RunCommand Method, and Run Command Constants. There is usually a RunCommand
equivelent for most Access functions.
Also checlk out Action
example...
Shift-F2 to Zoom a text control...
or
DoCmd.RunCommand acCmd
 
Oops.. my last post had a hair trigger on it, and went off in my hand!

What are you trying to do with the sendkeys?
Check out RunCommand Method, and Run Command Constants. There is usually a RunCommand
equivelent for most Access functions.
Also checlk out Action
example... istead of...
Shift-F2 to "Zoom" a text control...
use
DoCmd.RunCommand acCmdZoomBox

--
hth
Al Campagna . Candia Computer Consulting . Candia, NH USA
Microsoft Access MVP
http://home.comcast.net/~cccsolutions

"Find a job that you love, and you'll never work a day in your life."
 
Back
Top