Buongiorno a tutti,
in una maschera ho inserito nell'evento current il seguente codice:
Private Sub Form_Current()
Dim lngred As Long, lnggreen As Long
Dim ctr1 As Date
Dim ctr2 As Integer
lngred = RGB(255, 0, 0)
lnggreen = RGB(0, 255, 0)
ctr1 = Me.frmOLDATAtabOLda.Value
ctr2 = Me.frmOLNUMtabOLco.Value
If ctr1 = Null Or ctr2 = Null Then
Exit Sub
Else
Call OreGiorno
Call Copiadati
If frmOLTXTstatocommessa.Value = "Aperta" Then
frmOLTXTstatocommessa.ForeColor = lnggreen
Else
frmOLTXTstatocommessa.ForeColor = lngred
End If
End If
End Sub
Quando inserisco un nuovo record mi da "errore di runtime '94' Utilizzo non valido di null" su ctr1=Me.frmOLDATAtabOLda.Value perche' il valore e' nullo. Dove sto sbagliando?