TEXTBOX CHANGE VALUE (1 Viewer)

Status
Not open for further replies.

Safari

Member
Local time
Today, 08:30
Joined
Jun 14, 2021
Messages
95
Dear All

PLEASE HELP

I WANT IF TEXTBOX NAMED " TEXT175" CHANGE VALUE IN FORM INVOICEHEAD IT WILL CHANGE THE PROPERTY OF ANTHER TEXTBOX FOR EXAMPLE:


IF TEXT175 VALUE >0
THE TEXTBOX NAMED " DISTAX " ENABLE TRUE

AND IF TEXT175 <=0
THE DISTAX ENABLE FALSE

THANKS
 

Attachments

  • Accountant.accdb
    4 MB · Views: 222

FahadTiger

Member
Local time
Today, 09:30
Joined
Jun 20, 2021
Messages
115
do you try after update the Field which depend it the result of TEXT175
 
Last edited:

CJ_London

Super Moderator
Staff member
Local time
Today, 07:30
Joined
Feb 19, 2013
Messages
16,600
please don't use capitals - it is the equivalent of shouting

as regards the code, something like this in your text175 control afterupdate event

distax=true

or perhaps

if text175.value<>text175.oldvalue then distax=true
 

Safari

Member
Local time
Today, 08:30
Joined
Jun 14, 2021
Messages
95
please don't use capitals - it is the equivalent of shouting

as regards the code, something like this in your text175 control afterupdate event

distax=true

or perhaps

if text175.value<>text175.oldvalue then distax=true
still not working
 

Safari

Member
Local time
Today, 08:30
Joined
Jun 14, 2021
Messages
95
please don't use capitals - it is the equivalent of shouting

as regards the code, something like this in your text175 control afterupdate event

distax=true

or perhaps

if text175.value<>text175.oldvalue then distax=true
can you edit my attached data base
 

CJ_London

Super Moderator
Staff member
Local time
Today, 07:30
Joined
Feb 19, 2013
Messages
16,600
Sorry, you need to understand what you are doing wrong. If i do it for you, you will learn nothing.

not working means what exactly?
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 14:30
Joined
May 7, 2009
Messages
19,226
test your form.
 

Attachments

  • Accountant.accdb
    4 MB · Views: 217

Pat Hartman

Super Moderator
Staff member
Local time
Today, 02:30
Joined
Feb 19, 2002
Messages
43,196
I'm going to lock this thread. It is in the wrong forum and there are at least two others out there on the same topic.

FYI, unbound controls do not raise events having to do with data.
 
Status
Not open for further replies.

Users who are viewing this thread

Top Bottom