How i can do the check if i use
DCREAD GUI ?
dc_updated
-
- Posts: 484
- Joined: Wed Jan 27, 2010 10:25 pm
- Location: Berlin Germany
Re: dc_updated
In the codeblock of DCGETOPTIONS CLOSEQUERY MSG, ABORTQUERY MSG, EXITQUERY MSG or QUITQUERY MSG.
_______________________
Best Regards
Wolfgang
Best Regards
Wolfgang
Re: dc_updated
ok, a bit more precise
until now the the user press ok or abort (with mouse or keyboard)
sample dcread gui to lOK
IF lOK
do put data
ELSE
do nothing
ENDIF
This mean "put data" is executed no matter the user change data.
If the data unchanged i would like to set lOK to FALSE. This should prevent write accesses
and speed up my application
until now the the user press ok or abort (with mouse or keyboard)
sample dcread gui to lOK
IF lOK
do put data
ELSE
do nothing
ENDIF
This mean "put data" is executed no matter the user change data.
If the data unchanged i would like to set lOK to FALSE. This should prevent write accesses
and speed up my application
Klaus
Re: dc_updated
Hi,
Code: Select all
IF lOK
if DC_GetOrigUpdated( GetList )
do put data
endif
ELSE
do nothing
ENDIF
Re: dc_updated
Use the SAVE clause:
DCREAD GUI .. SAVE
DCREAD GUI .. SAVE
The eXpress train is coming - and it has more cars.