How do I set more than One Parameter in Property Let Statement?
June 29th, 2010 by
How do I set More than one parameter in Property Let Statement in Visual Basic 6.0 Please if any example
Related posts:
- What languages should I learn. I want to build Point of sale, and property managment software. ? So I am ready to learn programming, I have a little bit of experience in C++ and Visual basic, but I feel I am off track. I really want...











































In short, you don’t. The Let and Set propeties are designed to take use one value. Now that value could be something more complex like an array. If you need to pass multiple values in or out of a property, you can use an array, a structure, or an object.
But both Let and Set properties deal with one value whether that value is a simple data type like an integer or string, or more complex object like an array.
If you are hell bent on getting multiple values, set up your property to accept/send an array or object. Stash your values into the array/object and pass it to/from the property where you then break the values back out.
Hope this helps!