TEXTBOX CHANGE VALUE

Status
Not open for further replies.

Safari

Member
Local time
Today, 15:10
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

do you try after update the Field which depend it the result of TEXT175
 
Last edited:
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
 
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
 
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
 
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?
 
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

Back
Top Bottom