|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > UserInterface > SetBrowserTreeCurrentGrid |
available from build: 20160609 |
The command changes the current grid to the one specified with its tab name (the name that appears in the Tab Control when activated).
call DBWShell("SetBrowserTreeCurrentGrid TabName")
TabName |
The name of the tab to be activated |
Sub Main()
DBWInit(True)
tabName = Replace("Working Set"," ","|")
DBWShell("SetBrowserTreeCurrentGrid " & tabName)
End Sub