Search found 43 matches: aeditlistbound

Return to advanced search

Re: Error usando aEditListBound en xBrowse

We will now run the above sample. See the data in the dbf at the beginning. https://imagizer.imageshack.com/v2/xq90/922/MZAr1v.png PAGO field of 1st record "Name01" is "V". PAGO field of 3rd record "Name03" is "A". Now we will change PAGO of 1s...
by nageswaragunupudi
Sat Dec 03, 2022 7:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

Mr Rao, no entiendo el ejemplo, yo necesito que al abrir el combo se muestre "ADELANTADA", "VENCIDA" y una vez asignada en la base de datos se guarde "A" o "V". Muchas gracias

Saludos
by horacio
Thu Dec 01, 2022 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

...      :aEditListtxt     := {"ADELANTADA", "VENCIDA"}         :aEditListBound   := { "A", "V" }         :bClrEdit         := { ...
by nageswaragunupudi
Tue Nov 29, 2022 1:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

Hola Rao, exactamente es eso lo que quiero hacer.

Saludos
by horacio
Tue Nov 29, 2022 1:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

... your code: :aCols[ i ] : aEditListtxt  := {"ADELANTADA", "VENCIDA"}    :aCols[ i ] : aEditListBound := { "A", "V" }  This means that what is displayed on the screen in the listbox is aEditListTxt, i.e., ...
by nageswaragunupudi
Tue Nov 29, 2022 12:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

Gracias por contestar, el ejemplo es con un array y no con una dbf con la clase TDatabase. Con esas características no funciona por lo menos para mi.

Saludos
by horacio
Mon Nov 28, 2022 5:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Re: Error usando aEditListBound en xBrowse

C:\FWH..\SAMPLES\TESTXBRW.PRG lynea: 619

Regards, saludos.
by karinha
Mon Nov 28, 2022 2:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

Error usando aEditListBound en xBrowse

... := AL_CENTER    :aCols[ i ] : aEditListtxt  := {"ADELANTADA", "VENCIDA"}    :aCols[ i ] : aEditListBound := { "A", "V" }  Hay algo que no estoy teniendo en cuenta? desde ya muchas gracias. Saludos
by horacio
Mon Nov 28, 2022 2:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error usando aEditListBound en xBrowse
Replies: 8
Views: 472

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

Re: New FTDN December 2019 (FWH 19.12)

... - Se ha mejorado el pintado de los botones transparentes. - Corrección: EDIT_GET_LISTBOX: El texto correspondiente a un elemento en blanco en aEditListBound no se muestra. Corregido. viewtopic.php?f=3&t=37965 - Nueva DATA nLbxAt en el objeto columna. Tiene únicamente significado cuando ...
by Antonio Linares
Thu Jan 02, 2020 12:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 2997

New FTDN December 2019 (FWH 19.12)

... - Improved painting of transparent buttons. - Fix: EDIT_LISTBOX: Text corresponding to a blank item in aEditListBound is not displayed. Fixed. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=37965 - New data nLbxAt in the column object. Has ...
by Antonio Linares
Sat Dec 21, 2019 5:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 2997

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 not necessary if you use :aEditListTxt ...
by nageswaragunupudi
Sun Oct 20, 2019 3:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error XBrowse edit_listbox
Replies: 13
Views: 2541

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

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, ( oCol:value:= xVal,; oSelf:LoadItem( oBrwPlan, ...
by Ariel
Thu Oct 17, 2019 11:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error XBrowse edit_listbox
Replies: 13
Views: 2541
Next

Return to advanced search