SteveMac32
Programmer
When is it best to use Call or not. For example if you had a method below in one class
Public Sub LoadData(ByVal ID As Integer, ByVal Desc As String)
Now to call it from another class would you use
LoadData intID, strDesc
OR
Call LoadData(intID, strDesc)
both do the same so is one better than the other ???
Public Sub LoadData(ByVal ID As Integer, ByVal Desc As String)
Now to call it from another class would you use
LoadData intID, strDesc
OR
Call LoadData(intID, strDesc)
both do the same so is one better than the other ???