PdcCalculation.StartProductionDate: 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 |
||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
StartProductionDate as Date | |||
== Description == | == Description == | ||
Line 6: | Line 6: | ||
== Notes == | == Notes == | ||
This property sets or returns the date production started for the current calculation. In the calculation form this can be found in 'Order progress' box in the 'Other' treenode and it is populated when the calculation is given into production. | |||
== Code example == | == Code example == | ||
This code example returns the start of production of the active calculation. | |||
<source lang="vb"> | <source lang="vb"> | ||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.StartProductionDate | |||
</source> | </source> | ||
== Availability == | == Availability == |
Revision as of 10:19, 21 May 2012
Declaration
StartProductionDate as Date
Description
Notes
This property sets or returns the date production started for the current calculation. In the calculation form this can be found in 'Order progress' box in the 'Other' treenode and it is populated when the calculation is given into production.
Code example
This code example returns the start of production of the active calculation.
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.StartProductionDate