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> == ..." |
No edit summary |
||
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 = "Omschrijving" | |||
objProject.Save | |||
</source> | </source> | ||
== Availability == | == Availability == | ||
Available since February 2011 (From version 4.2 onwards). | Available since February 2011 (From version 4.2 onwards). |
Revision as of 10:40, 5 November 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 = "Omschrijving"
objProject.Save
Availability
Available since February 2011 (From version 4.2 onwards).