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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

transmitting INFOconnect screens using VBA 1

Status
Not open for further replies.

cjclay

Programmer
Jul 14, 2005
1
0
0
GB
Is it possible to transmit a page using VBA? (our installation uses the "+" key on the number pad to transmit and move to another screen.)

I have tried

AppActivate "Accessory Manager",wait:=True
Sendkeys "<Transmit>"

or

Sendkeys "{+}"

and neither work. Please help
 
If you're using the AppActivate/Sendkeys your timing is always a bit difficult to get right.

You might try:

Sendkeys "{+}", 1

This will wait for the transaction to happen. Sometimes it helps. I've also put For...Next loops that count to 10,000, or even written a wait function to wait a specified amount of time after the SendKeys statement.

calculus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top