Search found 33 matches: addbitmap

Return to advanced search

move the bitmap of the xbrowse sort

... to make the sort of the column of Xbrowse Ho I can to move the bitmap on the left before of the name of the column ? I make only WITH OBJECT oBrw :AddBitmap( { "SOR_TUP","SOR_TDW" } ) :lHScroll := .f. :CreateFromCode() END
by Silvio.Falconi
Wed Mar 08, 2023 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: move the bitmap of the xbrowse sort
Replies: 2
Views: 254

Re: bitmap for nEditType EDIT_BUTTON

... :aCols[ 2 ]         :nEditType  := EDIT_BUTTON         :nBtnBmp    := :AddBitmap( "EDIT" )         :bEditBlock := { | nRow, nCol, oCol, nKey | MsgInfo( "edit" ...
by nageswaragunupudi
Wed Sep 28, 2022 5:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bitmap for nEditType EDIT_BUTTON
Replies: 4
Views: 311

Re: Consulta sobre el uso de gráficos en filas de un xBrowse

If you please indicate the FWH version you are using, we can advise a solution most appropriate for the FWH version. How oCol:AddBitmap( aArray ) works: TXBrwColumn object internally maintains an array of bitmaps oCol:aBitmaps. When we first call oCol:AddBitmap( { bmp1, bmp2, bmp3 } ), ...
by nageswaragunupudi
Tue Apr 06, 2021 11:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre el uso de gráficos en filas de un xBrowse
Replies: 7
Views: 945

Consulta sobre el uso de gráficos en filas de un xBrowse

... xBrowse donde en dos de la columnas tnego definido que el contenido sea un ráfico y texto, esto con los siguientes comandos WITH OBJECT :oCol(2) :AddBitmap(aGraphsL, ) :bBmpData := {|| oLbx:KeyNo() } // número del bitmap para cada fila :nBmpWidth := 22 // ancho de la franja donde se muestra el ...
by nanoespinoza
Sun Apr 04, 2021 6:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre el uso de gráficos en filas de un xBrowse
Replies: 7
Views: 945

Re: New FTDN January/Enero 2021 (FWH 21.01)

... XBROWSE: - Se espera que oCol:bBmpData devuelva un valor numérico, que es el índice en una lista de imágenes de mapas de bits ya cargados con oCol:AddBitmap(...). Ahora oCol:bBmpData también puede devolver cualquier fuente de imagen no cargada. Esto permite la visualización de cualquier imagen ...
by Antonio Linares
Sun Feb 07, 2021 9:15 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

New FTDN January/Enero 2021 (FWH 21.01)

... * XBROWSE: - oCol:bBmpData is expected to return a numeric values, which is the index into a list of bitmaps already loaded with oCol:AddBitmap(...). Now oCol:bBmpData can also return any source of image not already loaded. This enables display of bitmaps/images at runtime which are ...
by Antonio Linares
Sun Feb 07, 2021 9:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2021 (FWH 21.01)
Replies: 1
Views: 1256

XBrowse 2101: bBmpData : enhancment

... that we use oCol:bBmpData to return a numeric value, which is an index value into the list of bitmaps already attached to the column with oCol:AddBitmap( aBitmaps ). If the value returned is not numeric or exceeds the length of the bitmap list, no bitmap is painted. In some cases, it may not ...
by nageswaragunupudi
Mon Feb 01, 2021 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 559

Re: Desaparecen Bitmaps en columnas XBROWSE(SOLUCIONADO)

Muchas gracias Cristobal.

Solucionado con AddBitmap.

Un abrazo y feliz dia de Reyes.

Jose.
by jvtecheto
Mon Jan 06, 2020 2:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Desaparecen Bitmaps en columnas XBROWSE(SOLUCIONADO)
Replies: 6
Views: 909

Re: An easy way to make a tree-browse

obrow2:setTree(otree) ocol:=obrow2:aCols[ 1 ] ocol:cheader:="科目代码" ocol:AddBitmap( { "tree1", "tree2", "treevh" } ) // ocol:cFooter := "GRAND TOTAL" ocol:nEditType := {||if(::ledit,1,0)} ocol:bEditValue := {||odb2:cquery:="select ...
by ShumingWang
Wed Jul 31, 2019 1:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3557

xbrowse -get date - resolved

to inser on a column a calenda I made WITH OBJECT oBrowse:aCols[ 7] :AddBitmap( "INVOICE_CALENDARIO") :nBtnBmp := 1 :lBtnTransparent := .t. * :lBmpStretch := .f. :nwidth := 120 :nDataStrAlign := AL_CENTER :nHeadStrAlign := AL_CENTER :nDataStrAlign ...
by Silvio.Falconi
Mon Jul 08, 2019 10:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse -get date - resolved
Replies: 3
Views: 478

XBrowse - adding cellimages from DBF or array

... cell-adjustment ( centered ) 4. small images resized to cellsize 5. keeping the aspect ratio ( size calculated to fill the cell ) 6. NO using of :AddBitmap 7. NO text visible only the image 8. reading the image-names from a DBF-field or array testing different sizes and format http://www.pflegeplus.com/IMAGES/XbrwImage1.jpg ...
by ukoenig
Wed Mar 13, 2019 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse - adding cellimages from DBF or array
Replies: 2
Views: 734

How call an image from oDbf ( tdatabase)

how call image on xbrowse from multiarray I cannot use AddBitmap because I have bitmap on oTipClienti archive and on xbrowse I have string oClienti:tipo WITH OBJECT oBrwClienti:aCols[2] :bStrData := { || oClienti:tipo } END I tried to call :bBmpData ...
by Silvio.Falconi
Tue Mar 12, 2019 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How call an image from oDbf ( tdatabase)
Replies: 1
Views: 470

Re: Xbrowse Problem Bitmap autosort

... := 1 :nHeadBmpAlign := AL_RIGHT :bLClickHeader :={ ||(CuSel_Index(1,"CU"), CU->(DbSetOrder(1),nOrder:=1) ) } END END IF I insert :AddBitmap( { "c:\work\fwh\bitmaps\16x16\up2.bmp", "c:\work\fwh\bitmaps\16x16\down2.bmp" } ) and then ACTIVATE DIALOG.... ON INIT ...
by Silvio.Falconi
Fri Nov 09, 2018 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Problem Bitmap autosort
Replies: 3
Views: 714

xBrowse me agrega una columna adicional no definida

... una columna vacía al final, lo que ya identifique es que se da cuando agrego bitmaps en el texto de las cabeceras (en columnas 1 y 10 usando :AddBitmap y :HeadBmpNo), pero no encuentra la razón para ello. Mi código es el siguiente (uso FWH1709): LOCAL aGraficos:={"PRACTICA" ...
by nanoespinoza
Sun Aug 05, 2018 5:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse me agrega una columna adicional no definida
Replies: 5
Views: 749

Re: How to change / add the bitmap on the xBrowse-tree-column ?

... CELL ; DATASOURCE oTree; COLUMNS 1,2; HEADERS "State/City", "Last", "First" ; CELL LINES FONT oFont oBrw:aCols[ 1 ]:AddBitmap( { "Open", "Close", "Go" } ) Do not specify oBrw:aCols[ 1 ]:bBmpData. This is already done by xbrowse internally
by nageswaragunupudi
Mon May 15, 2017 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change / add the bitmap on the xBrowse-tree-column ?
Replies: 3
Views: 924
Next

Return to advanced search