Search found 207 matches: beditvalue

Return to advanced search

Re: Error en Xbrowse

Roberto Utilizá oCol:bEditValue en vez de oCo:bStrDatal  oCol:=oBrw:AddCol()   oCol:bEditValue := { || LCV->IMPORTE }   oCol:cHeader  := "IMPORTE"   oCol:nHeadStrAlign ...
by acuellar
Mon Nov 24, 2014 10:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en Xbrowse
Replies: 21
Views: 4105

Re: Add Xbrowse Column at runtime

... @ x,y Xbrowse.... WITH OBJECT oBrw WITH OBJECT oBrw:InsCol( 8 ) :lHide := !lRitenuta :bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 } :SetCheck() :nHeadBmpNo := { || If( Len( oBrw:aSelected ) == oBrw:nLen, 1, 2 ) } ...
by Silvio.Falconi
Wed Nov 12, 2014 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add Xbrowse Column at runtime
Replies: 7
Views: 2570

Re: Add Xbrowse Column at runtime

... the new import ( sample nImporto+20%) I made @x,y button ...action Ins_Ritenuta(oBrw) Function Ins_Ritenuta(oBrw) WITH OBJECT oBrw:InsCol( 8 ) :bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 } :SetCheck() :nHeadBmpNo := { || If( Len( oBrw:aSelected ) == oBrw:nLen, 1, 2 ) } ...
by Silvio.Falconi
Wed Nov 12, 2014 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add Xbrowse Column at runtime
Replies: 7
Views: 2570

Help for one check xbrowse RESOLVED!!

...  := i18n("Tasso")      oBrwCambi:aCols[3]:nWidth   := 70    WITH OBJECT oBrwCambi:InsCol( 1 )      :bEditValue    := { || AScan( oBrwCambi:aSelected, oBrwCambi:BookMark ) > 0 }      :SetCheck()      :nHeadBmpNo    := { ...
by Silvio.Falconi
Wed Nov 12, 2014 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for one check xbrowse RESOLVED!!
Replies: 1
Views: 520

Re: Question about XBrowse.

Mr. Rao, Thank you. it is ok now. I have read before you said this. I have tried to change all bStrData to bEditValue in my apps. But in case dbfcdx, some colons (that is defined by bEditValue) the backslashs (\) appears and some characters is missing. It could be codepage problem. ...
by Horizon
Sun Jul 13, 2014 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about XBrowse.
Replies: 3
Views: 760

Re: Question about XBrowse.

Please use oBrw:bEditValue instead of oBrw:bStrData. You do not have to add any code to check emptiness of the array. Please try      oCol:bEditValue := {||ALLTRIM(oBrw:aRow[3]) + ;               IIF(!EMPTY(oBrw:aRow[4])," ...
by nageswaragunupudi
Sun Jul 13, 2014 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about XBrowse.
Replies: 3
Views: 760

New FTDN march/april 2014 (FWH 14.04)

... pair of values like 'T','F', etc if required. Eg: oCol:SetLogical( 'T', 'F' ) This method works only when oCol:cDataType is 'C' or 'N' and oCol:bEditvalue is already assigned. Normally this is the case when browse is created with command syntax from RDD,ADO,MySql/ Dolphin with columns clause. ...
by Antonio Linares
Thu May 22, 2014 4:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN march/april 2014 (FWH 14.04)
Replies: 2
Views: 1755

Re: dolphin y xbrowse

FranciscoA wrote:No uso TDolphin, pero me da la impresion que aqui:
:acols[1]:bData:= { || oQuery:ID_PROG} <--------------------- esto esta mal.

...deberia ser: acols[1]:bEditValue:= { || oQuery:ID_PROG} o acols[1]:bStrData:= { || oQuery:ID_PROG}
Saludos.


gracias.
by goosfancito
Wed Feb 26, 2014 10:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: dolphin y xbrowse
Replies: 8
Views: 1027

Re: dolphin y xbrowse

No uso TDolphin, pero me da la impresion que aqui:
:acols[1]:bData:= { || oQuery:ID_PROG} <--------------------- esto esta mal.

...deberia ser: acols[1]:bEditValue:= { || oQuery:ID_PROG} o acols[1]:bStrData:= { || oQuery:ID_PROG}
Saludos.
by FranciscoA
Tue Feb 25, 2014 8:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: dolphin y xbrowse
Replies: 8
Views: 1027

New FTDN November/Noviembre 2013 (FWH 13.11)

... nx and ny parameters interchanged. Now fixed. * Enhancement: TXBrowse can now browse Blank Trees. Note: If the programmer adds columns on his own, bEditValue should check if oBrw:oTreeItem == nil and return the value appropriately. Columns created within command automatically take care of this. ...
by Antonio Linares
Fri Dec 20, 2013 5:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre 2013 (FWH 13.11)
Replies: 0
Views: 1182

Re: SetCheck en Xbrowse con consulta Dolphin

... lo uso de tipo integer de 1 valor, en el cual uso 0 ó 1. 2. esa columna la muestro asi oBrw:aCols[5]:cHeader := "ADJ." oBrw:aCols[5]:bEditValue := {|| IIF( oQryADJ:LastRec() == 0, SPACE(10) ,; ( IIF( oQryADJ:adj_adjudicar==0, .f., .t. ) ) ) } oBrw:aCols[5]:nHeadStrAlign := AL_LEFT ...
by joseluisysturiz
Tue Nov 12, 2013 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SetCheck en Xbrowse con consulta Dolphin
Replies: 17
Views: 3529

Re: xBrowse c/TDolphin

... with object oBrw:oCol(1) :cHeader := 'Código' :cEditPicture := '999999' :nDataStrAlign := AL_CENTER :nHeadStrAlign := AL_CENTER :nWidth := 100 :bEditValue := {|| oData:codigo} end with object oBrw:oCol(2) :cHeader := 'Nome' :cEditPicture := '@!' :nDataStrAlign := AL_LEFT :nHeadStrAlign := AL_LEFT ...
by MGA
Sat Nov 02, 2013 12:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse c/TDolphin
Replies: 4
Views: 780

Re: xBrowse and Mysql

... this workaround. First specify the COLUMNS CLAUSE with some column name for the second column also. After that you assign codeblock to the oCol:bEditValue. Example: oBrw:aCols[ 2 ]:bEditValue := { || ........your codeblock } Also assign :cEditPicture if required and assign :cHeader Alternatively, ...
by nageswaragunupudi
Wed Sep 04, 2013 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and Mysql
Replies: 2
Views: 722

Re: XBROWSE FWH1305 : error in SetColFromRDD

If oCol:cDataType is nil, the column's Adjust() method assigns ::cDataType := ValType( Eval( ::bEditValue ) ). I shall give here the actual fix adopted: Please see the code from line 8362 to 8371 The existing code is reproduced below:           ...
by nageswaragunupudi
Mon Jun 24, 2013 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE FWH1305 : error in SetColFromRDD
Replies: 3
Views: 663

Re: XBROWSE FWH1305 : error in SetColFromRDD

... != nil .and. oCol:cDataType $ "+="  Fixed for the next release. With this solution oCol:cDatatype remains nil , maybe : if Empty( oCol:bEditValue ) ..... // :ndatatype assigned ELSE oCol:cDataType := ValType( EVAL(oCol:bEditValue) ) ENDIF Frank
by Franklin Demont
Mon Jun 24, 2013 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE FWH1305 : error in SetColFromRDD
Replies: 3
Views: 663
PreviousNext

Return to advanced search