Marx
Marx

Reputation: 116

Sending PageUp key to Reflections session?

I am creating a macro in VBA to automate a process in a Reflections 3270 environment.

This is not usually an issue, because

MyScreen.SendKeys "<ENTER>"

works fine, and 99% of the time in our system, enter is used.

However, I can't seem to find the key code for Page Up. I'd like to avoid remapping the user's keys if possible.

I have tried

"<PageUp>"
"<RollDown>" 'these two were listed on some documentation I found through google
"<RollUp>" '******************
"<PFPageUp>"

Can't think of or find anything else.

Upvotes: 0

Views: 613

Answers (1)

starball
starball

Reputation: 51943

Solution moved from @Marx's question post.

Found the answer. Hopefully this will help someone in the future.

MyScreen.SendKeys "<PA1>"

Page Advance 1

Upvotes: 2

Related Questions