DBWGetProjectsList

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Library Reference > Project >

DBWGetProjectsList

Description

Returns all the project ids contained into the database

Syntax

Sub DBWGetProjectsList(ByRef NumOfProjects, ByRef ProjectsIDArray)

Return Values

NumOfProjects

number of found projects

ProjectsIDArray

array containing the ids of found projects

Example

DBWGetProjectsList numofproj, projIdArray
msgbox cstr(numofproj) & " project(s) found!"
for i=1 to Ubound(projIdArray)
 msgbox projIdArray(i)
next