Search found 35 matches: lchanged

Searched query: lchanged

by Antonio Linares
Fri Jan 17, 2025 11:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4826

Re: Using new Class TDeepSeek for documenting

... Refresh()`**:
- **Description**: Refreshes the combo box.

36. **`Reset()`**:
- **Description**: Resets the combo box.
- **Parameters**:
- `lChanged`: Logical indicating whether to trigger the change event.

37. **`Select()`**:
- **Description**: Selects an item in the combo box ...
by vilian
Thu Sep 12, 2024 2:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Update data showed in xBrowse
Replies: 13
Views: 1894

Re: Update data showed in xBrowse

Thank you Mr Rao, your advices are always great!

oRowSet:Resync() // --? lChanged
Here, oRowSet:Resync() is always returning .T., even the record was not changed.

Do you think is possible to do an option to verify all visible record in the xBrowse and update only those that were changed?
Nowaday ...
by Silvio.Falconi
Sat Dec 02, 2023 11:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

I tested with this program and oGet:lChanged is working well.

#include "fivewin.ch"

function Main()

local oDlg, oFont, oGet1, oGet2, oGet3, oBtn
local cVar1 := PadR( "ABC", 20 )
local cVar2 := PadR( "DEF", 20 )
local nVar := 30000
local lSave := .f.

SetGetColorFocus()

DEFINE FONT oFont ...
by nageswaragunupudi
Sat Dec 02, 2023 8:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

I tested with this program and oGet:lChanged is working well.

#include "fivewin.ch"

function Main()

local oDlg, oFont, oGet1, oGet2, oGet3, oBtn
local cVar1 := PadR( "ABC", 20 )
local cVar2 := PadR( "DEF", 20 )
local nVar := 30000
local lSave := .f.

SetGetColorFocus()

DEFINE FONT oFont ...
by Silvio.Falconi
Thu Nov 30, 2023 11:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

I tried to found the result of oGet:lchanged and give me no exist

Code:
Error occurred at: 27-11-2023, 11:06:45
Error description: Error BASE/1004 Metodo non disponibile: LCHANGED
Args:
[ 1] = U

This error means that oGet is NIL




Nages,

I tried with

Aeval( aGet, { | o | if(o != nil .and ...
by Silvio.Falconi
Thu Nov 30, 2023 10:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

//aGet
lAsk:= Aeval( aGet, { | o | o:lChanged } )

or
Aeval( aGet, { | o | if(o:lChanged,lAsk := .t.,.f.) } )

give me error

Error description: Error BASE/1004 No exported method: LCHANGED
Args:
[ 1] = U

Stack Calls
===========
Called from: => LCHANGED( 0 )
Called from: test.prg => (b)SALIDA2 ...
by Silvio.Falconi
Mon Nov 27, 2023 10:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

nageswaragunupudi wrote:
I tried to found the result of oGet:lchanged and give me no exist

Code:
Error occurred at: 27-11-2023, 11:06:45
Error description: Error BASE/1004 Metodo non disponibile: LCHANGED
Args:
[ 1] = U
This error means that oGet is NIL
Can you make a sample with lChanged pls ?
by nageswaragunupudi
Mon Nov 27, 2023 10:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

I tried to found the result of oGet:lchanged and give me no exist

Code:
Error occurred at: 27-11-2023, 11:06:45
Error description: Error BASE/1004 Metodo non disponibile: LCHANGED
Args:
[ 1] = U
This error means that oGet is NIL
by Silvio.Falconi
Mon Nov 27, 2023 10:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

FWH provides a way for the last many years.

if oGet:lChanged is true, the value is edited and modified.
We can also check the original value with oGet:uOriginalValue.


Nages,
I not understood
I tried to found the result of oGet:lchanged and give me no exist

Error occurred at: 27-11-2023, 11:06 ...
by karinha
Sat Nov 25, 2023 2:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

FWH provides a way for the last many years.

if oGet:lChanged is true, the value is edited and modified.
We can also check the original value with oGet:uOriginalValue.

Mister Rao:

https://forums.fivetechsupport.com/viewtopic.php?f=3&t=36677&p=218742&hilit=oGet%3AuOriginalValue&sid ...
by nageswaragunupudi
Fri Nov 24, 2023 4:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 26
Views: 6435

Re: check on get

FWH provides a way for the last many years.

if oGet:lChanged is true, the value is edited and modified.
We can also check the original value with oGet:uOriginalValue.
by byte-one
Sat Jan 26, 2019 11:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: oGet:lchanged not functioning correct
Replies: 2
Views: 607

Re: oGet:lchanged not functioning correct

Rao, but what the sin from knowing the value of the control at create-time? The interest is the change .t. or .f. !
If you make the ::lchanged not PROTECTED we can use it as programmer.
Or is there another method to determine a get is edited or not?
by nageswaragunupudi
Sat Jan 26, 2019 2:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: oGet:lchanged not functioning correct
Replies: 2
Views: 607

Re: oGet:lchanged not functioning correct

... after editing.
Will not be changed every time the user edits.

uOriginalValue is the value at the time the Get is created and will remain the same till the Get ends.
lChanged is .T. if the present value is different from the value when the Get is created.

This is the intended and desirable behavior.
by byte-one
Sat Jan 26, 2019 10:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: oGet:lchanged not functioning correct
Replies: 2
Views: 607

oGet:lchanged not functioning correct

If i am using oGet:lchanged this is only functioning on first edit. After editing a second,... one the lChanged is always .T. also when i not change the value! It sems ::uOriginalValue are not updated to the new value after editing.
by Antonio Linares
Mon Sep 03, 2018 11:04 am
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2018 (FWH 18.06)
Replies: 1
Views: 3205

Re: New FTDN June/Junio 2018 (FWH 18.06)

... y crea una nueva tabla en caso contrario.
Algunas correcciones menores.
- Nuevo método en FWMariaRowSet:
NetChanged([nRec], [@lDeleted]) -> lChanged
Comprueba si el registro nRec (registro actual predeterminado) es cambiado por otro usuario de la red
después de leer y también actualiza el ...