PdcOperation.StartdateOpereration: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
Created page with "== Declaration == StarDateOperation as DateTime == Description == This method returns or sets the startdate of the operation. == Notes == == Code example == This method re..."
 
No edit summary
 
Line 1: Line 1:
== Declaration ==
== Declaration ==
StarDateOperation as DateTime
StartDateOperation as DateTime


== Description ==
== Description ==
Line 19: Line 19:
   set objBWPL = objCalc.OperationList(0)
   set objBWPL = objCalc.OperationList(0)


   msgbox objBWPL.StarDateOperation
   msgbox objBWPL.StartDateOperation


   set objBWPL = nothing
   set objBWPL = nothing

Latest revision as of 11:31, 22 June 2017

Declaration

StartDateOperation as DateTime

Description

This method returns or sets the startdate of the operation.

Notes

Code example

This method returns the startdate of the first operation of a calculation.

Sub sGetStartDate
dim objCalc
dim objBWPL

  set objCalc = pdc.ActiveCalculation
  set objBWPL = objCalc.OperationList(0)

  msgbox objBWPL.StartDateOperation 

  set objBWPL = nothing
  set objCalc  = nothing
End Sub

Availability

5.3 and onwards