15-01-2008, 10:15 PM
Add them to where you're calling the sub...
Yeah.
If you're trying to.. Let's say, send a Byte to a sub... But you use Long, it wont work.
Ex..
You can't use
That also causes the error...
Yeah.
If you're trying to.. Let's say, send a Byte to a sub... But you use Long, it wont work.
Ex..
Code:
Sub Hi(byval x as byte)
You can't use
Code:
Dim g as Long
Call Hi(g)
That also causes the error...