Conditional format

Safari

Member
Local time
Today, 15:10
Joined
Jun 14, 2021
Messages
95
Hi All

How to make textbox ( bound ) enabled by conditional format with anther unbound textbox?

I made expression by if statement but its not working..
 
Can you show us your CF expression?
 
already a thread on this subject here
 
This code needs to be executed from at least two different events - the form's Current event and the textx's AfterUpdate event
Code:
If Me.textx > 0  Then
    Me.xx.enabled = True
Else
    me.xx.enabled = False
End If
 
private sub textx_afterupdate()
Me!xx.Enabled = (Nz(Me!textx, 0) <> 0)
end sub

private sub form_current()
call textx_afterupdate
end sub
 

Users who are viewing this thread

Back
Top Bottom