Hello
I am having a problem with the following code
VB Code:
Dim numAvailableSlotsDL,numslotsDLTx As Integer
the code throws up an error saying that
Compiel error:
byref argument type mismatch
and the only way to correct it is by writing the definitions as
VB Code:
Dim numAvailableSlotsDL As Integer Dim numslotsDLTx As Integer
what is the wrong with the first version of my code, i.e.
VB Code:
Dim numAvailableSlotsDL,numslotsDLTx As Integer




Reply With Quote