Guus2005
AWF VIP
- Local time
- Today, 20:48
- Joined
- Jun 26, 2007
- Messages
- 2,642
I see it in a lot of programs. I never use it. Do we need it and why?
What i am talking about is the "Call" keyword.
Which is better?
Thanks,
Guus
What i am talking about is the "Call" keyword.
Code:
Public Sub SomeRoutine()
...
End sub
Public Sub Doit()
Call SomeRoutine
End sub
Public sub WhatIDo()
SomeRoutine
End Sub
Which is better?
Thanks,
Guus