Advertisement
anderes

OBEL: Find Tag; Show 1e gDisplay

Nov 4th, 2015
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' This finds the 1st instance of display c/ ConcatString, in g dir, then displays it, zoomed.
  2.                                            ConcatString = "analog.g132d_btu.curval";
  3.                  System showObjectByDBKey: ConcatString;
  4.  MsgBox msgtxt: (System showObjectByDBKey: ConcatString) ok: nil;
  5. '
  6. method Trigger onmsg: msg
  7. begin
  8.  
  9. | ConcatString |
  10.   ConcatString = ~v_edit_field/Concat  getText;  
  11.   System showObjectByDBKey: ConcatString;
  12.  
  13. MsgBox msgtxt: ConcatString + " :: " + (System showObjectByDBKey: ConcatString) ok: nil;
  14.  
  15.   ^true;
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement