×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Run code on specific screen only

Run code on specific screen only

Run code on specific screen only

(OP)
Hi, im running a code but i only want it to run on a specific screen in mainframe or a message box appears "Not correct screen". Need a code to run only in screen T900 please...thanks

RE: Run code on specific screen only

Hi,

How about If [the text from the screen transaction area) = "T900" Then run the macro?

RE: Run code on specific screen only

(OP)
yep that's exactly it :)

RE: Run code on specific screen only

(OP)
Hey Skip, do u have the code for this?
the positioning for the T900 screen is (1,2,5)

RE: Run code on specific screen only

Have you not taken a stab at this code?

RE: Run code on specific screen only

(OP)
If Sess0.getstring(1, 2, 5) <> "T750" Then Exit Do
MsgBox"Mainframe is not set to the T750 screen. Please set to T750"
End If

Not sure where to put this code. before or after the Do

RE: Run code on specific screen only

Why are you in a Do...Loop with this code?

CODE

Sub Main()    'this is the code you run for your screens
'code that runs on ALL screens
  If Sess0.getstring(1, 2, 4) <> "T750" Then 
' the code that runs on OTHER screens
  End If
end sub 

RE: Run code on specific screen only

(OP)
got it thanks..works good now!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close