|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Selection > AndSelectQueryByUniqueId |
Permits to create a multiple selection in the Query Page.
call DBWShell("AndSelectQueryByUniqueId UniqueID")
UniqueID |
unique id of the document to select together with other ones. |
It must be preceeded by a SelectQueryByUniqueId command, in order to start the selection.
SelectQueryByUniqueId command
SelectByUniqueId command
SelectTreeByUniqueId command
Sub main()
DBWInit(True)
DBWShell("LoadQuery e:\test\myquery.sql") 'Load file containing my queries
DBWShell("SelectQueryByUniqueId 1871")
DBWShell("AndSelectQueryByUniqueId 3633")
DBWShell("AndSelectQueryByUniqueId 3639")
DBWShell("AndSelectQueryByUniqueId 1874")
End Sub