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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameter passing 3

Status
Not open for further replies.

dakotafox

Programmer
Apr 14, 2000
53
US
My old memory is really failing me. What is the maximum number of parameters that can be passed with a do app statement. (i.e, do app with parm1,parm2 etc)?
Thanks
 
27 is also the max in VFP 6.0. However if you need more than just a few, you should consider creating an object with all the parameters as properties, and pass that. It's easier to add parameters and you aren't hampered by the exact order of the values.

Rick
 
Or create an array and pass the array name by reference.
= app(@array) David W. Grewe
Dave@internationalbid.com
ICQ VFP ActiveList #46145644
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top