Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error while executing program - mismatched

Status
Not open for further replies.

Yohn

Programmer
May 25, 2008
3
HR
Hy.
I have a problem. When I start program I get this error:
Mismatched number of parameters passed to routine <program name>.
What that I do wrong?
 
You passed the wrong number of parameters to routine <program name>.

Cheers, Mike.
 
You are calling a program and you are passing a wrong number of parameters.
Example

First programm
RUN A.P (x,y)

Called program A.P
define input parameter x as int.
define input parameter y as int.
define input parameter Z as int.

In this example you must send 3 parameters and you obtain an error.

There are more complex examples if you especify INPUT and OUTPUT.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top