PdcApplication.OpenCalculation: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
Dim objCalc | Dim objCalc | ||
set objCalc = pdc.OpenCalculation "0801-000087" | set objCalc = pdc.OpenCalculation("0801-000087") | ||
objCalc.Show | objCalc.Show | ||
</source> | </source> |
Latest revision as of 09:39, 16 September 2014
Declaration
OpenCalculation(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.
Calculation number 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.OpenCalculation("0801-000087")
objCalc.Show
Availability
Available since June 2006 (From version 3.7).