Hello!
Don't forget to switch the display, the Treeview and the Command echo Off during macro operation!
Depending on how many Comp-points you have this will increase the speed dramatically:
regards, Oliver
Don't forget to switch the display, the Treeview and the Command echo Off during macro operation!
Depending on how many Comp-points you have this will increase the speed dramatically:
Code Select
#### switch display off####
COMMAND ECHO("Off")
WINDOW REFRESH ("Off")
TREEVIEW REFRESH ("Off")
...
..
.
#### switch display on####
TREEVIEW REFRESH ("On")
WINDOW REFRESH ("On")
COMMAND ECHO("On")
TREEVIEW REFRESH NOW
WINDOW REFRESH NOW
### Macro end ###
regards, Oliver