Search found 32 matches: palbmpfree

Return to advanced search

Re: Logo en ventana principal con areas transparentes

... <cBmpFileName> ) --> <aPalBmp> PalBmpLoad( <hDC>, <cBmpResName> ) --> <aPalBmp> And destroyed calling: PalBmpFree( <hBitmap>, <hPalette> ) These functions are automatically called from TBitmap Class. <nWidth> The target dimensions for ...
by MarioG
Thu Apr 07, 2011 10:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Logo en ventana con areas transparentes (Solucionado)
Replies: 8
Views: 2268

TxBrowse()

Hola otra vez: He puesto un TxBrowse para visualizar unos datos y cuando lo compilo me da los siguientes errores me podeis ayudar a corregirlos, Gracias FiveCEC.lib(XBROWSEC.obj) : error LNK2005: HB_FUN_XBRWSCROLLROW already defined in FiveCE.lib(XBROWSE.obj) FiveCE.lib(XBROWSE.obj) : error LNK2001:...
by colthop
Sun Nov 14, 2010 4:05 pm
 
Forum: FiveWin para Pocket PC
Topic: TxBrowse()
Replies: 3
Views: 1072

Urgent problem with FWH 10.3 !!!!

Hello, Today I rebuilded my application with FWH 10.3. But suddenly I got an error which doesn't happen in FWH 10.2 while rebuilding. This error says : xLINK: error: Unresolved external symbol '_HB_FUN_TACTIVEX referenced from (JUDA.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TFONT refe...
by driessen
Wed Apr 07, 2010 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Urgent problem with FWH 10.3 !!!!
Replies: 3
Views: 1633

xBrowse in FWPPC

Hi, I am trying to use xBrowse along with FWPPC. Unfortunately, I am getting the following link errors FiveCEC.lib(XBROWSEC.obj) : error LNK2005: HB_FUN_XBRWSCROLLROW already defined in FiveCE.lib(XBROWSE.obj) FiveCE.lib(XBROWSE.obj) : error LNK2001: unresolved external symbol HB_FUN_PALBMPFREE Five...
by anserkk
Fri Mar 26, 2010 2:59 pm
 
Forum: FiveWin for Pocket PC
Topic: xBrowse in FWPPC
Replies: 1
Views: 655

Re: Juan Planelles Lazaga

... { | aRes | aRes[ 2 ] == nHResource } ) ) != 0 ADel( aResources, nAt ) ASize( aResources, Len( aResources ) - 1 ) endif return nil function PalBmpFree( h ) return DeleteObject( h ) static function Ribbon() ? "Hola" return nil Procedure ChangeSelect( aObj ) local n aObj[ 1 ]:lSelected ...
by Juan Planelles
Tue Dec 29, 2009 10:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6862

Re: GPF error

... 80 oBmp[x]:Setfile( iif(lStatus,cBmp1,cBmp2) ) NEXT The problem is that after 10 minutes I have the GPF error and i think that is in the function PalBmpFree( ::hBitmap1, ::hPalette1 ) OF ::FreeBitmaps() OF ::Setfile() This is with FW June 2009 With a old version of FW March 2008 all works fine ...
by Maurizio
Wed Jul 22, 2009 10:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF error
Replies: 11
Views: 2633

Re: xbrowse required bug fixes !

Otto,

The Method End(), that must be Destroy(), affects to all xbrowse versions.
The PalBmpFree() may also affect to all xbrowse versions.

The others two, can't say the exact version right now. Better look in your xbrowse.prg code for those sections. Thanks,
by Antonio Linares
Sun Jun 21, 2009 8:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse required bug fixes !
Replies: 6
Views: 1218

xbrowse arreglos de bugs!

... En la función TXBrows() el browse no se destruía:    if ValType( bChild ) == 'B'      bXBr:End()      bXBr := bChild   endif  4) PalBmpFree() no está funcionando bien. Hay que añadir esta función: function PalBmpFree( hBmp, hPal )   DeleteObject( hBmp )  ...
by Antonio Linares
Sun Jun 21, 2009 8:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse arreglos de bugs!
Replies: 2
Views: 609

xbrowse required bug fixes !

... function TXBrows() the browse is not destroyed:    if ValType( bChild ) == 'B'      bXBr:End()      bXBr := bChild   endif  4) PalBmpFree() is not properly working. This function should be added: function PalBmpFree( hBmp, hPal )   DeleteObject( hBmp )  ...
by Antonio Linares
Sun Jun 21, 2009 8:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse required bug fixes !
Replies: 6
Views: 1218

tImage: Image desde campo de DB

... METHOD LoadFromMemory(cBuffer) //CEL 08-Nov-2008 local hOldBmp := ::hBitmap local hOldPal := ::hPalette if ! Empty( hOldBmp ) PalBmpFree( hOldBmp, hOldPal ) endif ::hBitmap:=FILoadFromMemory(cBuffer) PalBmpNew( ::hWnd, ::hBitmap, ::hPalette ) return nil //----------------------------------------------------------------------------// ...
by César E. Lozada
Thu Mar 12, 2009 4:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tImage: Image desde campo de DB
Replies: 5
Views: 1511

... Lubin Hi, con esta funcion evitas la sobrecarga de memoria cuando cambias bastantes bmps..... Salu2 ClearImage(oBmp) Function ClearImage(oImg) PalBmpFree( oImg:hBitMap, oImg:hPalette ) oImg:hBitmap := 0 oImg:hPalette := 0 oImg:cResName := NIL oImg:cBmpFile := NIL oImg:Refresh() Return(Nil)
by lubin
Tue Dec 02, 2008 4:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: dificil guardar Rtf en campo memo (dbf) o campo de Mysql??
Replies: 14
Views: 5632

Hi, con esta funcion evitas la sobrecarga de memoria cuando cambias bastantes bmps..... Salu2 ClearImage(oBmp) ... .. Function ClearImage(oImg) PalBmpFree( oImg:hBitMap, oImg:hPalette ) oImg:hBitmap := 0 oImg:hPalette := 0 oImg:cResName := NIL oImg:cBmpFile := NIL oImg:Refresh() Return(Nil)
by Willi Quintana
Tue Dec 02, 2008 2:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: dificil guardar Rtf en campo memo (dbf) o campo de Mysql??
Replies: 14
Views: 5632

... números ó cadenas Si para un diálogo no se requiere helpid, por favor déjelo vacio. En este caso se muestra helpindex. * Corrección: La función PalBmpFree() estaba fallando bajo algunas circunstancias. Ahora está correcta.
by Antonio Linares
Mon Oct 20, 2008 5:44 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October / Octubre 2008 (8.10)
Replies: 1
Views: 3315

New FTDN October / Octubre 2008 (8.10)

... context-numbers or strings also mixed If for a dialog no helpid is required, please let this empty. In this case the helpindex is shown. * Fix: PalBmpFree() was failing under some circunstances. Now it is ok.
by Antonio Linares
Sun Oct 12, 2008 8:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October / Octubre 2008 (8.10)
Replies: 1
Views: 3315

Riccardo,

Please add this code to your main PRG and to your example:
Code: Select all  Expand view
function PalBmpFree( h )
return DeleteObject( h )

There is a problem with PalBmpFree() that we have to fix.

Many thanks for your feedback :-)
by Antonio Linares
Tue Sep 30, 2008 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unrecoverable error 9009
Replies: 1
Views: 856
PreviousNext

Return to advanced search