Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6

Parameters Passing to Forms



The call for Form open is known:

       callOpenFormTop(“ptEdit“,“FNAME.FM“,“WORK.TNAME“,1,“?=TNAME“)


In cases where we want to pass two more parameters, the code is as follows:

       callOpenFormTop(“ptEdit“,“FNAME.FM“,“WORK.TNAME“,1,“?=TNAME“,par1,par2)


Into the code of the called Form, we are taking the parameters as:

proc Form_Start()

    parameter1 = {...par1}
    parameter2 = {...par2}

end

Parameter counting starts from “ptEdit“ as (1).