|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Browser > SetBrowserFocus |
available from build: 20080911 |
This command must be invoked by any script displaying a modal dialog (e.g. DBWMsgBox) for resetting the input focus back to the Browser.
call DBWShell("SetBrowserFocus")
.VBSCRIPT
Sub Main()
DBWInit(True)
'...Do something useful
DBWMsgBox1 "Give Feedback!", "msgbox title"
DBWShell("SetBrowserFocus")
End Sub