Search found 72 matches: aeditlisttxt

Return to advanced search

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: 616

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: 616

Re: TXBrwColumn aEditListTxt

Hello my friend, can this help you?

oBrw:aCols[2]:nEditType := EDIT_LISTBOX
oBrw:aCols[2]:aEditListBound := {'MARINGA','LONDRINA'}
oBrw:aCols[2]:aEditListTxt := { 51, 20}

//returns the selected code , ex: 20
msginfo(oBrw:aCols[2]:value)
by MGA
Mon Feb 21, 2022 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 616

TXBrwColumn aEditListTxt

Hi all,
is there a way to find out the value of aEditListTxt[ nAt ] of a TXBrwColumn at the moment of selection?
I want to get the element of a parallel array.
But i'm stucked :(

Thanks for any hint
Detlef
by Detlef
Mon Feb 21, 2022 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBrwColumn aEditListTxt
Replies: 11
Views: 616

xBrowse and oBrw:ToExcel() to Rao

Hello Rao , When I have an xBrowse with a column :aEditListTxt and I need export :ToExcel() , the fields with :aEditListTxt are exported as a value and not with the field in :aEditListTxt #include "fivewin.ch"REQUEST DBFCDXfunction xbtest()  ...
by Maurizio
Thu Apr 22, 2021 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and oBrw:ToExcel() to Rao
Replies: 0
Views: 360

POPUPBROWSE o EDIT_LISTBOX en columna browse

... y sucede lo siguiente, necesito cuando le de al boton de desplegar los valores a mostrar, cambiar en linea dichos valores, es decir, resetear el aEditListTxt, cargar y mostrar valores nuevos ya que los productos a facturar puedes tener diferentes valores a mostrar, son unos productos COMBOS y ...
by joseluisysturiz
Fri Nov 20, 2020 3:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: POPUPBROWSE o EDIT_LISTBOX en columna browse
Replies: 5
Views: 707

Re: New FTDN December 2019 (FWH 19.12)

... significado cuando nEditType es EDIT_LISTBOX. (No es aplicable también a EDIT_GET_LISTBOX). Esta DATA se establece en el número de artículo en aEditListTxt/Bound para cada fila y se puede usar para mostrar/establecer valores en otras columnas. Ver: fwh\samples\xbrlbxat.prg - Window class: Métodos ...
by Antonio Linares
Thu Jan 02, 2020 12:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3062

New FTDN December 2019 (FWH 19.12)

... object. Has meaning only when nEditType is EDIT_LISTBOX. (Not applicable to EDIT_GET_LISTBOX also). This data is set to the item number in the aEditListTxt/Bound for each row and can be used to display/set values in other columns. See: fwh\samples\xbrlbxat.prg * Window class: Methods SaveState() ...
by Antonio Linares
Sat Dec 21, 2019 5:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3062

Re: Error XBrowse edit_listbox

Mr. Rao, if i use: :aEditListTxt := ArrTranspose( aTabla )[02] -> array char :aEditListBound := ArrTranspose( aTabla )[01] -> array number the logical thing would be for me to return a number, not characters regards. This is ...
by nageswaragunupudi
Sun Oct 20, 2019 3:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error XBrowse edit_listbox
Replies: 13
Views: 2718

Re: Error XBrowse edit_listbox

Mr. Rao,

if i use:

:aEditListTxt := ArrTranspose( aTabla )[02] -> array char
:aEditListBound := ArrTranspose( aTabla )[01] -> array number

the logical thing would be for me to return a number, not characters
regards.
by Ariel
Sun Oct 20, 2019 2:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error XBrowse edit_listbox
Replies: 13
Views: 2718

Error XBrowse edit_listbox

... } // :bEditValid := { | oGet, oCol | ValidaCodArt( oGet, oCol, oBrwArticulo, oSelf:cPathRs ) } :aEditListTxt := ArrTranspose( aPlanes )[02] :aEditListBound := ArrTranspose( aPlanes )[01] :bOnPostEdit:= { | oCol, xVal, nKey | If( nKey == VK_RETURN, ...
by Ariel
Thu Oct 17, 2019 11:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error XBrowse edit_listbox
Replies: 13
Views: 2718

Re: COMBOBOX en file de xBrowse

oCol:nEditType := EDIT_LISTBOX
oCol:aEditListTxt = { "One", "Two", "Three" }
by nageswaragunupudi
Thu Jul 25, 2019 11:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMBOBOX en file de xBrowse
Replies: 4
Views: 549

Re: ERROR XBROWSE -EDIT_LISTBOX

CM (nunca recuerdo tu nombre) Gracias por responder En principio, me tiene confundido porque tengo otra app donde muestro un array de tipo :aEditListTxt := { "Uno", "Dos", "Tres" } :aEditListBound:= { 1, 2, 3 } Y no me da error. Aunque, difiere en que es un xBrowse ...
by MarioG
Wed Oct 03, 2018 3:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE -EDIT_LISTBOX
Replies: 3
Views: 953

ERROR XBROWSE -EDIT_LISTBOX

... EDIT_DATE Elseif n == 3 oCol:nEditType := EDIT_LISTBOX oBrw:aCols[3]:aEditListBound := {"EFECTIVO", "TARJETA"} oBrw:aCols[3]:aEditListTxt := {"EFECTIVO", "TARJETA"} oCol:bOnPostEdit:= { |o,x,n| If( n != VK_ESCAPE, oBrw:aRow[o:nArrayCol] := x, ) } Elseif ...
by jbrita
Fri Feb 09, 2018 3:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE -EDIT_LISTBOX
Replies: 1
Views: 900

Re: Xbrowse - EDIT_LISTBOX

... 'WFSICO' ; AUTOSORT la columna que se edita (contiene la descripcion de un producto WITH OBJECT oBrw:aCols[9] :nEditType := EDIT_LISTBOX :aEditListTxt:= aProd END Con 3 elementos no logro que el browse me muestre la descripcion del producto que esta en wfsico.dbf Yo necesito que al seleccionar ...
by rterraz
Tue Feb 14, 2017 3:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse - EDIT_LISTBOX
Replies: 4
Views: 1826
PreviousNext

Return to advanced search