X
Xiazer
I can successfully pass at least one variable to a function but I cannot
pass multiple for the life of me. here is an example
something simple like trying to send a box to hide a group of 2 buttons
as visible
Private Sub cmdHideButtons_Click()
hidegrp(cmdButton1.visible, cmdButton2.visible)
End Sub
Function hidegrp(Value1 as Boolean, Value2 as Boolean)
Value1 = False
Value2 = False
End Function
Now this function Wont work, but i just wanted to illistrate the
principle of passing 2 variables. now if I did it with just one
variable it works fine, other wise it gives me an error *Compile error
: Expected: =*. All i want to know is why it does this and is there a
way around it
pass multiple for the life of me. here is an example
something simple like trying to send a box to hide a group of 2 buttons
as visible
Private Sub cmdHideButtons_Click()
hidegrp(cmdButton1.visible, cmdButton2.visible)
End Sub
Function hidegrp(Value1 as Boolean, Value2 as Boolean)
Value1 = False
Value2 = False
End Function
Now this function Wont work, but i just wanted to illistrate the
principle of passing 2 variables. now if I did it with just one
variable it works fine, other wise it gives me an error *Compile error
: Expected: =*. All i want to know is why it does this and is there a
way around it