Search found 90 matches: beditblock

Return to advanced search

Re: New FWH 11.07

... would not work in FWH 11.5 either. We can not treat this as a new issue created by the new versions. Well. this can not be done from within oCol:bEditBlock, now or before. After execution of bEditBlock, control goes back to the calling browse. Because the dialog is a non-modal one, the control ...
by nageswaragunupudi
Sat Aug 06, 2011 4:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12363

Re: New FWH 11.07

... anomaly with folder when I use oFld:setoption(2) the focus remain in in folder 1 I modify the foldxbrw.prg in samples adding : oBrw1:aCols[ 2 ]:bEditBlock := { || oFld:SetOption(2) } After click on the colum and switch in folder 2 try the arrows key , doesn't work because the focus remain on ...
by Maurizio
Fri Aug 05, 2011 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12363

Re: xBrowse Cell ToolTip

... oBrw1:aCols[ 2 ]:bPopUp := { | o | ColMenu( o ) } oBrw1:aCols[ 3 ]:nWidth := 170 oBrw1:aCols[ 3 ]:nEditType := EDIT_BUTTON oBrw1:aCols[ 3 ]:bEditBlock := {|nRow, nCol, oCol| oCol:Value := GET_BMP()} oBrw1:CreateFromCode() Best Regards Uwe :lol: :?:
by ukoenig
Wed Jun 29, 2011 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell ToolTip
Replies: 14
Views: 3309

Re: Devolver Valor a una Columna del Xbrowse Antes de Validar

... oBrw:aCols[1]:nEditType := EDIT_GET_BUTTON oBrw:aCols[1]:bEditValid := { | oGet, oCol | BuscarProd( oGet,oCol,oBrw,aDatos,oDlg1 ) } oBrw:aCols[1]:bEditBlock := {|| LeerCodigo(oDlg1,oBrw,aDatos),oBrw:GoRight(),oBrw:GoRight() } oBrw:aCols[1]:nDataStrAlign:= AL_LEFT oBrw:aCols[1]:nHeadStrAlign:= ...
by jbrita
Thu Jun 02, 2011 3:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Devolver Valor a una Columna del Xbrowse Antes de Validar
Replies: 7
Views: 1801

How To Save Changes In xbrowse

... oBrw:aCols[ 1 ]:nDataBmpAlign := AL_CENTER oBrw:aCols[ 1 ]:bPopUp := { |o| ColMenu( o ) } oBrw:aCols[ 2 ]:nEditType := EDIT_BUTTON oBrw:aCols[ 2 ]:bEditBlock := {|nRow, nCol, oCol| oCol:Value := cGetFile( "*.*", "Select a file" ) } oDlg:oClient := oBrw oBrw:CreateFromCode() ...
by acwoo1
Tue May 17, 2011 11:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How To Save Changes In xbrowse
Replies: 1
Views: 679

Re: New FTDN April/Abril 2011 (FWH 11.04)

... una tecla invoca btnAction, donde nEditType es EDIT_BUTTON, el valor de nKey se proporciona como cuarto parámetro mientras se evalua oCol: bEditBlock. (b) La calidad de imagen de representación de imágenes en celdas se mejora mediante la sustitución de la función resizebmp con resizeimg. ...
by Antonio Linares
Tue May 03, 2011 11:09 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2011 (FWH 11.04)
Replies: 1
Views: 1992

New FTDN April/Abril 2011 (FWH 11.04)

... (a) If pressing a key invokes btnAction, where nEditType is EDIT_BUTTON, value of nKey is provided as 4th parameter while evaluating oCol:bEditBlock. (b) Image rendering quality of images in cells is improved by replacing resizebmp function with resizeimg. * New: New Method ToExcel( bProgress ...
by Antonio Linares
Thu Apr 28, 2011 8:39 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2011 (FWH 11.04)
Replies: 1
Views: 1992

Re: HELP TO INSERT IMAGE ON XBROWSE

... :bBmpData := {|oCol, oGrid| oApp():oGrid:aRow[ 4 ] } :nDataBmpAlign := AL_CENTER END WITH OBJECT oApp():oGrid:aCols[4] :nEditType := EDIT_BUTTON :bEditBlock := {|nRow, nCol, oCol| oCol:Value := cGetFile( "*.*", "Select a file" ) } END END oApp():oGrid:SetRDD() oApp():oGrid:CreateFromCode() ...
by Silvio
Thu Mar 10, 2011 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HELP TO INSERT IMAGE ON XBROWSE
Replies: 2
Views: 614

HELP TO INSERT IMAGE ON XBROWSE

... :bBmpData := {|oCol, oGrid| oApp():oGrid:aRow[ 4 ] } :nDataBmpAlign := AL_CENTER END WITH OBJECT oApp():oGrid:aCols[4] :nEditType := EDIT_BUTTON :bEditBlock := {|nRow, nCol, oCol| oCol:Value := cGetFile( "*.*", "Select a file" ) } END END oApp():oGrid:SetRDD() oApp():oGrid:CreateFromCode() ...
by Silvio
Thu Mar 10, 2011 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HELP TO INSERT IMAGE ON XBROWSE
Replies: 2
Views: 614

Re: xBrowse - Edit

... oBrw:aCols[1]:nEditType := EDIT_GET_BUTTON oBrw:aCols[1]:bEditValid := { | oGet, oCol | BuscarProd( oGet,oCol,oBrw,aDatos,oDlg1 ) } oBrw:aCols[1]:bEditBlock := {|| LeerCodigo(oDlg1,oBrw,aDatos),oBrw:GoRight(),oBrw:GoRight() } oBrw:aCols[1]:nDataStrAlign:= AL_LEFT oBrw:aCols[1]:nHeadStrAlign:= ...
by jbrita
Wed Mar 09, 2011 1:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse - Edit
Replies: 6
Views: 1281

help for the sample xbimg.prg

... :bStrImage := {|oCol, oBrw|oApp():oGrid:aRow[ 2 ] } :nDataBmpAlign := AL_CENTER END WITH OBJECT oApp():oGrid:aCols[2] :nEditType := EDIT_BUTTON :bEditBlock := {|nRow, nCol, oCol| oCol:Value := cGetFile( "*.*", "Select a file" ) } END END oApp():oGrid:SetRDD() oApp():oGrid:CreateFromCode() ...
by Silvio
Sun Feb 27, 2011 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for the sample xbimg.prg
Replies: 0
Views: 357

BtnBmp en txbrowse

... logro ver la imagen en el btnbmp de una columna. WITH OBJECT :aCols[1] :AddResource("Lupa16") :nBtnBmp:=1 :cEditPicture:="@!" :bEditBlock:= {|nRow,nCol,oCol| DocBuscar(oCol,nRow,nCol)} :nEditType := EDIT_GET_BUTTON END ¿ Qué estoy haciendo mal? Gracias.
by César E. Lozada
Sun Mar 28, 2010 5:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BtnBmp en txbrowse
Replies: 1
Views: 413

Re: Edit a xBrowse array

bEditBlock should return the new value if edited or old value if not edited. You may change the bEditBlock as: :oCol( "Target"   ):bEditBlock := { || GetNewTarget( oBrw, cKdNr, oBrw:aRow[ ...
by Detlef Hoefner
Fri Mar 05, 2010 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit a xBrowse array
Replies: 3
Views: 707

Re: Edit a xBrowse array

bEditBlock should return the new value if edited or old value if not edited. You may change the bEditBlock as: :oCol( "Target"   ):bEditBlock := { || GetNewTarget( oBrw, cKdNr, oBrw:aRow[ ...
by nageswaragunupudi
Fri Mar 05, 2010 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit a xBrowse array
Replies: 3
Views: 707

Re: ** ListBox column in the XBROWSE

... oBrw:Refresh() ) ) } END WITH OBJECT oBrw:Item :nEditType := EDIT_BUTTON :AddBmpFile( 'e:\fwh\bitmaps\16x16\find2.bmp' ) :nBtnBmp := 1 :bEditBlock := { || SelectItem( oBrw ) } END WITH OBJECT oBrw :nStretchCol := 1 :bPastEof := { || ExtendRow( oBrw ) } :bChange := { || BrwChangeRow( ...
by shri_fwh
Mon Dec 21, 2009 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ** ListBox column in the XBROWSE
Replies: 4
Views: 1700
PreviousNext

Return to advanced search