|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > PDMSystem > EnableRepaint |
available from build: 20071031 |
This command stops the automatic Browser repaints that may happen while executing scripts.
call DBWShell("EnableRepaint repaint")
repaint |
0: disable the repaint |
The Browser repaint is always automatically re-enabled when the script terminates its execution.
Sub main()
DBWInit(TRUE)
DBWShell("EnableRepaint 0")
DBWMsgBox "Please move me over the Browser's Tree: I will erase it!"
DBWShell("EnableRepaint 1")
DBWMsgBox "Please move me again over the Browser's Tree: I will display it now!"
End Sub