|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Library Reference > Project > DBWGetProjectsList |
Returns all the project ids contained into the database
Sub DBWGetProjectsList(ByRef NumOfProjects, ByRef ProjectsIDArray)
NumOfProjects |
number of found projects |
|---|---|
ProjectsIDArray |
array containing the ids of found projects |
DBWGetProjectsList numofproj, projIdArray
msgbox cstr(numofproj) & " project(s) found!"
for i=1 to Ubound(projIdArray)
msgbox projIdArray(i)
next