PdcCalculations.Open
Jump to navigation
Jump to search
Declaration
Open(CalculationNo as String) as PdcCalculation
Description
Opens and returns an existing Calculation object
Notes
The open calculation method returns an existing calculation object, without form. To show this calculation, you have to call the 'Show' method of the calculation object.
CalculationNo = Number of the calculation that should be opened
Code example
This example opens calculation 0801-000087 and shows it in PdC.
Dim objCalc
set objCalc = pdc.Calculations.Open("0801-000087")
objCalc.Show
Availability
Available since April 2014 (version 4.3 onwards).