AncientOne
Senior Citizen
- Local time
- Today, 13:45
- Joined
- Mar 11, 2003
- Messages
- 464
Yes, you don't need to declare statuscode as an integer in your form code!
AncientOne said:Yes, you don't need to declare statuscode as an integer in your form code!
AncientOne said:Yes, you don't need to declare statuscode as an integer in your form code!
If you use either Call syntax to call any intrinsic or user-defined function, the function's return value is discarded.
AncientOne said:look what I found in Help:
You are not required to use the Call keyword when calling a procedure. However, if you use the Call keyword to call a procedure that requires arguments, argumentlist must be enclosed in parentheses. If you omit the Call keyword, you also must omit the parentheses around argumentlist. If you use either Call syntax to call any intrinsic or user-defined function, the function's return value is discarded.
To pass a whole array to a procedure, use the array name followed by empty parentheses.
AncientOne said:Are the form properties exactly the same for both forms?