PdcProjects.New: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == New as PdcProject == Description == == Notes == A new project can be created with this method. == Code example == <source lang="vb"> </source> == ..." |
|||
(One intermediate revision by the same user not shown) | |||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
The following code example creates a new project, sets a new customer, description and saves the project. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objProject | |||
set objProject = pdc.projects.new | |||
objProject.SetCustomerNo "Relation No" | |||
objProject.Description = "Description" | |||
objProject.Save | |||
</source> | </source> | ||
== Availability == | == Availability == | ||
Available since February 2011 (From version 4.2 onwards). | Available since February 2011 (From version 4.2 onwards). |
Latest revision as of 13:28, 5 December 2013
Declaration
New as PdcProject
Description
Notes
A new project can be created with this method.
Code example
The following code example creates a new project, sets a new customer, description and saves the project.
dim objProject
set objProject = pdc.projects.new
objProject.SetCustomerNo "Relation No"
objProject.Description = "Description"
objProject.Save
Availability
Available since February 2011 (From version 4.2 onwards).