SetBrowserTreeCurrentGrid

<< Click to Display Table of Contents >>

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

SetBrowserTreeCurrentGrid

available from build: 20160609

Description

The command changes the current grid to the one specified with its tab name (the name that appears in the Tab Control when activated).

Syntax

call DBWShell("SetBrowserTreeCurrentGrid  TabName")

Parameters

TabName

The name of the tab to be activated

Example

Sub Main()
  DBWInit(True)
  tabName = Replace("Working Set"," ","|")
  DBWShell("SetBrowserTreeCurrentGrid " & tabName)
End Sub