Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
/* on a window, under the TOOLS menu bar item are menu items called TOOLS1, TOOLS2, TOOLS3, and TOOLS4.    
To hide these menu items, set the VISIBLE property to 0. Do this in the CREATE event.*/
 
declare subroutine Set_Property
for i = 1 to 4
  Set_Property(@window: ".MENU.TOOLS.TOOL": i, "VISIBLE", 0)
next i