Hi forum, Access 2010 accdb
I have a form with an unbound Text Box Control.
The Control Source is defined by the Form On Open Event.
One option is for a string (function) to populate the Text Box Control and the other is for a Value to be placed in the control.
Both options result in automatic population of the control with a Currency value.
I would like a Command Button control to be Enabled - True or False depending on the value. as per the code below.
I have tried AfterUpdate and Dirty without success
Any other options or methods to get this to react ??
Appreciate any advice
I have a form with an unbound Text Box Control.
The Control Source is defined by the Form On Open Event.
One option is for a string (function) to populate the Text Box Control and the other is for a Value to be placed in the control.
Both options result in automatic population of the control with a Currency value.
I would like a Command Button control to be Enabled - True or False depending on the value. as per the code below.
Code:
Dim LateFee As Currency
LateFee = Me.txtLateFeesToBeCharged
If LateFee = 0 Then
Me.CmdChargeLateFee.Enabled = True
End If
I have tried AfterUpdate and Dirty without success

Any other options or methods to get this to react ??
Appreciate any advice
