PdcApplication.ShowProjectForm: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Declaration ==
== Declaration ==
 
ShowProjectForm(ProjectNo as String,CalcNo as String) as Boolean


== Description ==
== Description ==
Opens en shows a project


== Notes ==
This method opens and shows a project.<br />


== Notes ==


'''Parameters Description'''<br />
ProjectNr Project number of the requested project<br />
CalcNr Calculation number for the selection of a calculation in this project


== Code example ==
== Code example ==
 
This code opens project 1102-000234 and shows the project form.
The opened project form will have calculation 0801-000087 selected in the lower grid.


<source lang="vb">
<source lang="vb">
 
pdc.ShowProjectForm "1102-000234","0801-000087"
</source>
</source>


== Availability ==
== Availability ==
No longer supported, since January 2011 (From version 4.2) this method is no longer available. The same functionality can be started by [[PdcProjects.Show]].

Latest revision as of 11:22, 21 May 2012

Declaration

ShowProjectForm(ProjectNo as String,CalcNo as String) as Boolean

Description

Opens en shows a project

Notes

This method opens and shows a project.


Parameters Description
ProjectNr Project number of the requested project
CalcNr Calculation number for the selection of a calculation in this project

Code example

This code opens project 1102-000234 and shows the project form. The opened project form will have calculation 0801-000087 selected in the lower grid.

pdc.ShowProjectForm "1102-000234","0801-000087"

Availability

No longer supported, since January 2011 (From version 4.2) this method is no longer available. The same functionality can be started by PdcProjects.Show.