PdcProjects.Show: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
Show(projno as String) as [[PdcProject]] | |||
== Description == | == Description == | ||
Line 6: | Line 6: | ||
== Notes == | == Notes == | ||
This method shows the projectform for the given projectnumber. | |||
== Code example == | == Code example == | ||
The following code shows the form of an existing project. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objProject | |||
set objProject = pdc.projects.Show("12345") | |||
</source> | </source> | ||
== Availability == | == Availability == | ||
Available since February 2011 (From version 4.2 onwards). |
Latest revision as of 10:46, 5 November 2013
Declaration
Show(projno as String) as PdcProject
Description
Notes
This method shows the projectform for the given projectnumber.
Code example
The following code shows the form of an existing project.
dim objProject
set objProject = pdc.projects.Show("12345")
Availability
Available since February 2011 (From version 4.2 onwards).