SetBrowserFocus

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Commands Reference > Browser >

SetBrowserFocus

Description

This command must be invoked by any script displaying a modal dialog (e.g. DBWMsgBox) for resetting the input focus back to the Browser.

Syntax

call DBWShell("SetBrowserFocus")

Example

Sub Main()
 DBWInit(True)
 '...Do something useful
 DBWMsgBox1 "Give Feedback!", "msgbox title"
 DBWShell("SetBrowserFocus")
End Sub