Ciao, prova così:
codice:
Private Sub Command1_Click()
Dim analis As Integer 'variabile contenente un numero integer
analis = CInt(Text2.Text)
If InStr(1, CStr(CDbl(analis) / 2), ",", vbTextCompare) = 0 Then
MsgBox "numero pari"
Else
MsgBox "Numero dispari"
End If
End Sub
Private Sub Command2_Click()
Dim myValore As Double
myValore = CDbl(Text2.Text) 'numero dooble
If myValore > 0 Then
Text1.ForeColor = vbBlack
Else
Text1.ForeColor = vbRed
End If
Text1.Text = Format(myValore, "#,##0.00")
'in caso di numeri negativi in rosso
End Sub
Ciao
Gugu