I have a textbox (txtEnddate) and another textbox (notebox), i want if txtEnddate is empty then display a message in notebox.
Is there any wrong with the following code:
Because it doesn't return any error but it doesn't do anything.
If IsNull(Me![txtEndDate]) Then
Me.notebox.BackColor = 14803425
Me.notebox = "do something"
End If
Is there any wrong with the following code:
Because it doesn't return any error but it doesn't do anything.
If IsNull(Me![txtEndDate]) Then
Me.notebox.BackColor = 14803425
Me.notebox = "do something"
End If