Search found 65 matches: abitmaps

Return to advanced search

Re: Migrar a XBrowse

... cada columna del xbrowse le puedes asignar la cantidad de bitmap que desees, de forma independiente, cada columna posee una data llamada ::aBitmaps , ese array puedes llenarlo de la siguiente manera... oCol = oBrw:addcol() oCol:AddResource( cRecurso ) //para usar desde recursos oCol:AddBmpFile( ...
by Daniel Garcia-Gil
Fri Jan 16, 2009 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a XBrowse
Replies: 9
Views: 2066

Re: show bitmaps on Header and columns with Xbrowse

for change bitmap on header use... DATA nHeadBmpNo // header ordinal bitmap to use of ::aBitmaps for change bitmap on cell use... bBmpData // Ordinal bitmap data codeblock (returns a number in the range 1-len(aBitmaps)) use original fivewin bitmap, from folder \FWH\bitmaps\16x16 ...
by Daniel Garcia-Gil
Mon Jan 12, 2009 2:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show bitmaps on Header and columns with Xbrowse
Replies: 2
Views: 620

Re: New FTDN December/Diciembre 2008 (8.12)

... el ejemplo samples\TestMerg.prg. * Nuevo: En la clase TXBrowse, nuevo DATA nBtnBmp para seleccionar el índice de mapa de bits en la matriz oCol:aBitmaps por lo que la imagen del botón se puede cambiar, cuando se usan estos estilos de edición: EDIT_LISTBOX, EDIT_BUTTON, EDIT_GET_LISTBOX y EDIT_GET_BUTTON. ...
by Antonio Linares
Tue Dec 30, 2008 12:42 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2008 (8.12)
Replies: 1
Views: 2452

Test new features

Test TXBROWSE new features * New: Class TXBrowse DATA nBtnBmp to select the bitmap index from the array oCol:aBitmaps so the button image can be changed, when these edit styles are used: EDIT_LISTBOX, EDIT_BUTTON, EDIT_GET_LISTBOX and EDIT_GET_BUTTON. * New: Class TXBrowse Method ...
by Daniel Garcia-Gil
Mon Dec 29, 2008 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test new features
Replies: 6
Views: 1606

Test new features

test TXBROWSE new features * New: Class TXBrowse DATA nBtnBmp to select the bitmap index from the array oCol:aBitmaps so the button image can be changed, when these edit styles are used: EDIT_LISTBOX, EDIT_BUTTON, EDIT_GET_LISTBOX and EDIT_GET_BUTTON. * New: Class TXBrowse Method ...
by Daniel Garcia-Gil
Mon Dec 29, 2008 3:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Test new features
Replies: 6
Views: 1583

New FTDN December/Diciembre 2008 (8.12)

... columns is not handled. Please review samples\TestMerg.prg. * New: Class TXBrowse DATA nBtnBmp to select the bitmap index from the array oCol:aBitmaps so the button image can be changed, when these edit styles are used: EDIT_LISTBOX, EDIT_BUTTON, EDIT_GET_LISTBOX and EDIT_GET_BUTTON. * New: ...
by Antonio Linares
Sun Dec 28, 2008 9:54 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2008 (8.12)
Replies: 1
Views: 2452

Method end() at TxBrwColumns bug!

Antonio, I found a new bug in class TXBrowse.. at end() method of TXBrwColumn: for nFor := 1 to Len( ::aBitmaps ) PalBmpFree( ::aBitmaps[ BITMAP_HANDLE ], ::aBitmaps[ BITMAP_PALETTE ] ) next The property ::aBitmaps is a multi-dimensional ...
by JC
Fri Nov 28, 2008 8:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Method end() at TxBrwColumns bug!
Replies: 0
Views: 294

xBrowse Button del GET

... 1ro. cree una nueva DATA para las COLUMNS DATA nBtnBmp AS NUMERIC INIT 0 con esta voy a indicar en que posicion de la matriz de oBrw:oCols:aBitmaps esta la imagen que quiero mostrar... para cargar la imagen a oBrw:oCols:aBitmaps se pueden usar los METODOS METHOD AddResource( cRes ) // Adds ...
by Daniel Garcia-Gil
Mon Sep 29, 2008 3:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse Button del GET
Replies: 12
Views: 3937

... lHScroll DATA aActions // actions to be executed on header's click DATA aColors // the whole colors kit DATA aArray AS ARRAY // browsed array DATA aBitmaps AS ARRAY INIT {} // array with bitmaps handles DATA aDefault AS ARRAY INIT {} // default values in append mode DATA aClipBoard // used by RButtonDown ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5509

... = _parni( 2 ); _retl( TRUE ); } HARBOUR HB_FUN_TreeDrawIt() // em( LPDRAWITEMSTRUCT lp, cPrompt, nLevel, nIndent, // unStyle, aItemStyles, aiBmp, aBitmaps, aMasks ) { LPDRAWITEMSTRUCT lp = ( LPDRAWITEMSTRUCT ) _parnl( 1 ); RECT tempRct; HPEN hDotPen, hOldPen; BOOL firstDraw = TRUE; int centerX, ...
by alex_cyr
Sat Jul 26, 2008 5:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al compilar TREEDRAW.C
Replies: 6
Views: 1492

Destroy all bitmaps of a Col

Hello

The Problem is solved

I used

ASIZE( oLbx1:aCols[1]:aBitmaps,0)

to clear the bitmap-array of Col 1

Regards

Uwe
by ukoenig
Wed Apr 02, 2008 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can i use the array < bBmpData > in xBrowse ?
Replies: 2
Views: 619

Clear Bitmap-array before new select

... 1 > with bitmaps the user selected, I set the bitmap-arraylist to 0 ( oLbx1:Adjust() i checked, there was no difference ) ASIZE( oLbx1:aCols[1]:aBitmaps,0) Now every time, the user wants to test a bitmap, he starts with a clean browser. The Cell-hight is allways adjusted to the bitmap-height. ...
by ukoenig
Wed Apr 02, 2008 6:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Questions about xBBROWSE-Cell-Bitmaps in design-mode.
Replies: 5
Views: 1356

In txbrwColumn : DATA aBitmaps // Two dimension arrays that holds all the bitmaps added // aBitmaps[n, 1] -> handle // aBitmaps[n, 2] -> palette // aBitmaps[n, 3] -> width // aBitmaps[n, 4] -> heigth I suppose that you can ...
by demont frank
Tue Apr 01, 2008 5:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can i use the array < bBmpData > in xBrowse ?
Replies: 2
Views: 619

... de tipo carácter. bFooter puede evaluar cualquier tipo de dato. Los pies de página serán formateados automáticamente. g) Nuevo método SetCheck ( aBitMaps/aResource, bOnPostEdit ) Los valores lógicos pueden ser mostrados como imágenes (bitmaps) con este método. El primer parámetro es una matriz ...
by Antonio Linares
Sat Mar 29, 2008 9:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March / Marzo 2008 (8.03)
Replies: 6
Views: 4976

... The solutions perhaps would be to (a) revise datawidth and dataheight methods to take into account the dimensions of the largest of the bitmaps in abitmaps data. and/or (b) use transbmp in paintdata method instead of PalBmpDraw, to fit the bitmap to the size available, These are some thoughts . ...
by nageswaragunupudi
Fri Mar 14, 2008 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to alignment Bitmap in XBrowse?
Replies: 14
Views: 3361
PreviousNext

Return to advanced search