charlieelliott785@hotmail
Member
is skeleton structure correct?
Sub MySub (v as Object) As String
If v Is Long Then
... process long ...
Return Somthing
End if
If v Is Double Then
... process double ...
Return SomthingElse
End if
Return NotCorrect
End Sub
That is, can I pass "anything" and check to see if the data type is something like long, or double, or string for instance
Charlie
Sub MySub (v as Object) As String
If v Is Long Then
... process long ...
Return Somthing
End if
If v Is Double Then
... process double ...
Return SomthingElse
End if
Return NotCorrect
End Sub
That is, can I pass "anything" and check to see if the data type is something like long, or double, or string for instance
Charlie