Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Vista + Paradox + Sendkeys

Status
Not open for further replies.

TonyMcGuire

Programmer
Aug 17, 2004
692
US
Vista broke sendkeys().

There is a utility (skeys.exe) that brings back the same functionality. (from M$, I believe) But then you have to distribute it.

Well, Jan Marysal found a way.

For instance, printing. When you issue a print via formvar.action(dataprint), the dialog box pops up.

I run into this where the only way I can get a particular graph (look) is to create it on a form with boxes. Then print the form after hiding some stuff on the form.

With sendkeys, you issued the sendkeys command, and THEN printed.

The replacement, found in user32.dll, acts the same way.
Code:
Uses "user32.dll"
keybd_event(bVk cLong, bScan cLong, dwFlags cLong, dwExtraInfo cLong)
endUses

keybd_event(VK_RETURN, 0, 0, 0)
fPrint.action(DataPrint) ; where fPrint is a form object

The above simply presses [Enter] when the dialog box to print pops up.

Tony McGuire
"It's not about having enough time; we have the rest of our lives. It's about priorities.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top