Jun 9, 2008 #1 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?
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?
Jun 9, 2008 #2 HelloMike MIS Feb 14, 2003 210 GB You passed the wrong number of parameters to routine <program name>. Cheers, Mike. Upvote 0 Downvote
Sep 24, 2008 #3 mroblesp Programmer Sep 24, 2008 2 MX 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. Upvote 0 Downvote
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.