COMO SABER SE UMA VARIAVEL E DO TIPO VARIANT?
Tem jeito de saber isso?
Obrigado.
Obrigado.
Da uma olhada nesse exemplo.
Dim testVarType As Variant
Dim varTeste as string
testVarType = VarType(varTeste)
Dim testVarType As Variant
Dim varTeste as string
testVarType = VarType(varTeste)
só pra esclarecer mais
Private Sub Form_Load()
Dim testVarType As Variant
Dim V As Variant [ô] retorna 0
Dim S As String [ô] retorna 8
Dim I As Integer [ô] retorna 2
Dim D As Double [ô] retorna 5
Dim L As Long [ô] retorna 3
Dim B As Byte [ô] retorna 17
testVarType = VarType(B)
MsgBox testVarType
End Sub
Tópico encerrado , respostas não são mais permitidas