The code I used came from the COBOL training class and allows one project to initiate another project. There must be some feature that initiates this capability. The code follows;
method-id button5_Click final private.
local-storage section.
* invoke project for final processing
01 newForm type AlterMenu.Form1.
procedure division using by value sender as object e as type System.EventArgs.
Invoke type AlterMenu.Form1::New() returning newForm
Invoke newForm::Show()
end method.
The project details are
A second part of my problem is, what is the best way to pass information between projects?
