Search found 131 matches: bbmpdata

Return to advanced search

Re: colorize a xbrowse with a brush

... find a text in the cell, but when I have an image or a color in the cell the command imposes the new brush samples when there are images ( with :bBmpData ) or when on a column there is a color         WITH OBJECT  oBrowse:aCols[6]           :bClrStd := {|| { CLR_WHITE,IIF(oBrowse:aArrayData[ ...
by Silvio.Falconi
Wed Nov 08, 2023 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize a xbrowse with a brush
Replies: 3
Views: 334

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... NADA AL HACER DOBLE CLICK SOBRE ESTA COLUMNA oBrw:aCols[1]:cHeader := "Est" oBrw:aCols[1]:nHeadStrAlign := AL_LEFT //LEFT oBrw:aCols[1]:bBmpData := { || iif( cTab_Art:opcion=.t., 1, 2) } oBrw:aCols[1]:nWidth := 20 oBrw:aCols[2]:cHeader := "Código" oBrw:aCols[2]:bStrData := ...
by kpidata
Fri Sep 01, 2023 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE
Replies: 1
Views: 331

evitar que se active columna con xbrowse al dar un click

... NADA AL HACER DOBLE CLICK SOBRE ESTA COLUMNA oBrw:aCols[1]:cHeader := "Est" oBrw:aCols[1]:nHeadStrAlign := AL_LEFT //LEFT oBrw:aCols[1]:bBmpData := { || iif( cTab_Art:opcion=.t., 1, 2) } oBrw:aCols[1]:nWidth := 20 oBrw:aCols[2]:cHeader := "Código" oBrw:aCols[2]:bStrData := ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1077

Re: more than 1 bmp on a xbrowse column

Second way is to use
1. bBmpData (left or right align)
2. bStrImage (any position)
3. Text any position

Lastly, paint the column on our own using either oBrw:bPaintRow or oCol:bPaintText
I will provide a sample if required
by nageswaragunupudi
Wed Mar 22, 2023 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: more than 1 bmp on a xbrowse column
Replies: 6
Views: 478

Re: New FTDN October/Octure (FWH 22.10)

... Al navegar por una matriz que contiene valores utf8 en cualquier celda se generaba un error en tiempo de ejecución. Corregido. * La DATA bBmpData ahora es evaluada con los parámetros, CellValue, lSelected y ColumnObject. * La función FW_ReadImage( <wmf_file> ) estaba dando errores ...
by Antonio Linares
Mon Nov 07, 2022 9:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

New FTDN October/Octure (FWH 22.10)

... ( default .t. ) - Method ToExcel() Fix: When browsing an array containing utf8 values in any cell was resulting in runtime error. Fixed. * DATA bBmpData is now evaluated with params, CellValue, lSelected, ColumnObject) * FW_ReadImage( <wmf_file> ) was giving runtime error, Fixed. * function ...
by Antonio Linares
Wed Nov 02, 2022 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

Re: BMP en xBrowse. Transparente?

:addResource( 'FLAG' ) :bBmpData := {|| IIf( Empty( oData:produtocontado ), 0, 1 ) } :lBmpStretch := .f. :lBmpTransparent := .t. :nDataBmpAlign := AL_CENTER :nHeadStrAlign := AL_CENTER :cHeader := 'Contado' :nWidth := 50 :bStrData := ...
by MGA
Mon Sep 05, 2022 8:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BMP en xBrowse. Transparente?
Replies: 2
Views: 388

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

... 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 bitmap, png :bCellToolTip ...
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: 937

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

... Por ejemplo: bSetGet := { |x| If( x == nil, nVal * 100, nVal := x / 100 ) } @ r,c GET bSetGet <clauses,...> * 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 ...
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)

... capabilities of Get. Eg: bSetGet := { |x| If( x == nil, nVal * 100, nVal := x / 100 ) } @ r,c GET bSetGet <clauses,...> * 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 ...
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

Re: XBrowse 2101: bBmpData : enhancment

Finally. very nice
by Silvio.Falconi
Wed Feb 03, 2021 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 559

Re: XBrowse 2101: bBmpData : enhancment

... .f.      :lHScroll      := .f.      WITH OBJECT :aCols[ 1 ]         :bBmpData      := { || oBrw:nArrayAt + 93 }         :nClrBmpBack   := METRO_LIME    ...
by nageswaragunupudi
Wed Feb 03, 2021 8:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 559

Re: XBrowse 2101: bBmpData : enhancment

Mr. Rao:

Great job.

Regards
by Armando
Mon Feb 01, 2021 4:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 559

XBrowse 2101: bBmpData : enhancment

We are aware 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 ...
by nageswaragunupudi
Mon Feb 01, 2021 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 559

Re: xbrwdisk change directory

...   oBrw:oTree := oTree, oBrw:GoTop(),oBrw:Refresh() );          OF oDlg  and also change :bBmpData as below:      :bBmpData   := { || If( Right( oBrw:oTreeItem:cPrompt, 1 ) == ":", 4, ;  ...
by nageswaragunupudi
Wed Jan 13, 2021 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrwdisk change directory
Replies: 8
Views: 763
Next

Return to advanced search