S
Steven
I have a Function that I call from a form for example:
Call SizeAccess(100,100,200,300)
I would like to use variables in this for example:
Dim PosOne, PosTwo, PosThree, PosFour as Double
PosOne = 100
PosTwo = 100
PosThree = 200
PosFour = 400
Call SizeAccess(PosOne, PosTwo, PosThree, PosFour)
But when I compile it I get an error that says: "ByRef
argument mismatch"
What is the problem and solution here?
Thank you for your help.
Steven
Call SizeAccess(100,100,200,300)
I would like to use variables in this for example:
Dim PosOne, PosTwo, PosThree, PosFour as Double
PosOne = 100
PosTwo = 100
PosThree = 200
PosFour = 400
Call SizeAccess(PosOne, PosTwo, PosThree, PosFour)
But when I compile it I get an error that says: "ByRef
argument mismatch"
What is the problem and solution here?
Thank you for your help.
Steven