Search found 70 matches: aeditlisttxt

Return to advanced search

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

... } olbx101c:acols[4]:bOnPostEdit:= { |o,nval| hola(@acDescriptor,@acTemporal,olbx101c,nval) } olbx101c:acols[4]:aEditListTxt := acTemporal //olbx101c:acols[4]:bEditBlock:= { mifuncion('1') } //olbx101c:acols[4]:bBmpAction := { |oCol| mifuncion('2') } //olbx101c:acols[4]:bEditValid ...
by elmoiquique
Thu Mar 28, 2024 9:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 10
Views: 2223

error TXBROWSE:CARGOS

... ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET //_LISTBOX * :aEditListTxt := tHallazgos END * WITH OBJECT oResultado:Interna * :bOnPostEdit := { | o, x, k | ( au_Audit->Interna := upper(x), xmodiproc := "S" ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 276

Listbox dinamico con xbrowse

... x, oResultado ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET_LISTBOX :aEditListTxt := tHallazgos END Necesito que tHallazgos pueda cambiar el contenido en forma dinámica.
by jpcavagnaro
Mon Jun 26, 2023 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox dinamico con xbrowse
Replies: 0
Views: 165

Re: Error usando aEditListBound en xBrowse

Referring to your code: :aCols[ i ] : aEditListtxt  := {"ADELANTADA", "VENCIDA"}    :aCols[ i ] : aEditListBound := { "A", "V" }  This means that what ...
by nageswaragunupudi
Tue Nov 29, 2022 12:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 494

Error usando aEditListBound en xBrowse

... y utilizo esta variable de clase los datos de la columna donde quiero aplicarla desaparecen, si la quito funciona pero me guarda el valor de aEditListtxt Case 6    :aCols[ i ] : nEditType      := EDIT_LISTBOX    :aCols[ i ] : cHeader        := "T. PAGO"    :aCols[ ...
by horacio
Mon Nov 28, 2022 2:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 494

Re: TXBrwColumn aEditListTxt

Many thanks, Mr. Rao
by Detlef
Thu Mar 03, 2022 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

Thanks for jumping in Mr. Rao. Columns 2 and 3 are not only listboxes but also editable. If users make a false entry in col 3 it should be possible to repeat the mechanism to click again the same value in col 2 to correct the value in col 3. And no, it's a dbf to edit. You should not keep column 3 ...
by nageswaragunupudi
Wed Mar 02, 2022 10:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

Thanks for jumping in Mr. Rao.
Columns 2 and 3 are not only listboxes but also editable.
If users make a false entry in col 3 it should be possible to repeat the mechanism to click again the same value in col 2 to correct the value in col 3.
And no, it's a dbf to edit.
by Detlef
Wed Mar 02, 2022 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

Is there a way to know that a txBrwColumn:aEditListTxt was selected even when it's not different as before?

No.
In the above case, logically, column 3 should not change if column 2 does not change.

1) Are you editing an array? Then there is a simpler way.
by nageswaragunupudi
Wed Mar 02, 2022 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

... from 1st column:listbox to correct the 2nd column, it doesn' work. I see the there is no 'change event' because i selected the same value from aEditListTxt as before. So I tried bOnPostEdit. But this doesn't work too. Is there a way to know that a txBrwColumn:aEditListTxt was selected even ...
by Detlef
Wed Feb 23, 2022 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

nageswaragunupudi wrote:
Code: Select all  Expand view
oBrw:aCols[2]:bOnChange := ;
{ |o| o:oBrw:oCol( 3 ):VarPut( a2[ AScan( a1, o:Vaue ) ] ) }
 

assuming other column number is 3.


This is much more smart.
Many thanks :D
by Detlef
Tue Feb 22, 2022 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

My issue is solved.
I build a codeblock which does an aScan on array a1 and so I get my nAt to find the corresponding element of array a2.

Many thanks to MGA who gave me the hint about "oBrw:aCols[2]:value".
by Detlef
Tue Feb 22, 2022 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

Code: Select all  Expand view
oBrw:aCols[2]:bOnChange := ;
{ |o| o:oBrw:oCol( 3 ):VarPut( a2[ AScan( a1, o:Vaue ) ] ) }
 

assuming other column number is 3.
by nageswaragunupudi
Tue Feb 22, 2022 9:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

Code: Select all  Expand view
oBrw:aCols[2]:bOnChange := ;
{ |o| o:oBrw:oCol( 3 ):VarPut( a2[ AScan( a1, o:Vaue ) ] ) }
 

assuming other column number is 3.
by nageswaragunupudi
Tue Feb 22, 2022 9:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536

Re: TXBrwColumn aEditListTxt

... my problem. I have 2 arrays a1 := [ "elem1", "elem2" ] a2 := [ "white" , "blue" ] a1 is my oBrw:aCols[2]:aEditListTxt. If the 2nd element of a1 is clicked the column cell should become "elem2". Now I need to know that the 2nd element was clicked. ...
by Detlef
Mon Feb 21, 2022 6:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 536
Next

Return to advanced search