andy_dyer
Registered User.
- Local time
- Today, 23:10
- Joined
- Jul 2, 2003
- Messages
- 806
Hi,
I have a form with a todays date text box (txtTodaysDate) and a series of fields with percentages in them...
The label is a date e.g. 30/06/2008 and I want to check on the form opening or something similar what the todays date is and then lock the related text boxes
But all I get is a Run-time error '438': Object doesn't support this property or method
Is there a way of doing this??
Thanks for any help!!
I have a form with a todays date text box (txtTodaysDate) and a series of fields with percentages in them...
The label is a date e.g. 30/06/2008 and I want to check on the form opening or something similar what the todays date is and then lock the related text boxes
Code:
If Me.End_Jun_08_Label > Me.txtTodaysDate Then
Me.End_Jun_08.Locked = True
Else
Me.End_Jun_08.Locked = False
End If
But all I get is a Run-time error '438': Object doesn't support this property or method
Is there a way of doing this??
Thanks for any help!!