|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Browser > NoRequery |
available from build: 20040709 |
It causes DBWorks to stop requerying the Browser, if opened.
Can be used to launch multiple commands that will cause the Browser to requery, and to invoke the Requery command only at the end of the sequence.
call DBWShell("NoRequery activate")
activate |
[0/1] |
Requery command
Sub Main()
DBWInit(TRUE)
DBWShell("NoRequery 1")
< command that updates the database >
< command that updates the database >
...
< command that updates the database >
DBWShell("NoRequery 0")
DBWShell("Requery")
End Sub