Search found 80 matches: loadimage

Return to advanced search

Re: clear IMAGE

elvira wrote:Lucas;

Try this oBmpFoto1:LoadImage("nada")

This also works. Giving a non-empty name, which is not an existing image file also works. This is a work around.
by nageswaragunupudi
Thu Jul 18, 2013 8:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clear IMAGE
Replies: 6
Views: 1160

Re: clear IMAGE

Lucas;

Try this oBmpFoto1:LoadImage("nada")
by elvira
Thu Jul 18, 2013 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clear IMAGE
Replies: 6
Views: 1160

New FTDN April/Abril 2013 (FWH 13.04)

... from now on you can review warnings.log to get a copy of the warnings that Harbour shows only on the terminal. * Enhancement: Class TBitmap Method LoadImage() supports PNG files from disk. http://forums.fivetechsupport.com/viewtopic.php?p=143739 * Enhancement: Class TRbtn (used from the FWH RibbonBar) ...
by Antonio Linares
Wed May 01, 2013 6:21 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2013 (FWH 13.04)
Replies: 2
Views: 3507

Re: 3 problems with touch.prg from the fwh/samples

... from TBitmap, then we could do: oImgBack:bMove = { || If( oImgBack;cBmpFile != "..\bitmaps\metro\back-black-48-hover.png", ( oImgBack:LoadImage( nil, "..\bitmaps\metro\back-black-48-hover.png" ), oImgBack:Refresh() ), nil ) } oImgBack:bMLeave = { || oImgBack:LoadImage( nil, ...
by Antonio Linares
Mon Feb 11, 2013 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3884

Re: How to adj. a Image (Res.) using <Loadimage> SOLVED !

SOLVED !!! any combinations of NON transparent with alphablended BMP / PNG http://www.pflegeplus.com/pictures/ResizeI3.jpg A combination of using ABPaint and PalBmpDraw is needed. For using ABPaint, You have to detect the Alpha-Image with IF lAlpha = .T. // Appl.-path// c_path := cFi...
by ukoenig
Tue Jan 22, 2013 7:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to adj. a Image (Res.) using <Loadimage> SOLVED !
Replies: 1
Views: 717

How to adj. a Image (Res.) using <Loadimage> SOLVED !

... dosn't show transparent PNG's 2.) REDEFINE IMAGE oIMG1 OF oDlg FILENAME NIL ; ID 110 PIXEL BORDER oIMG1:cTooltip := "Image 1l" oIMG1:LoadImage( , c_path1 + cImage0 ) Transparent but not adjusted to resource ! http://www.pflegeplus.com/pictures/ResizeI1.jpg Best Regards ...
by ukoenig
Tue Jan 22, 2013 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to adj. a Image (Res.) using <Loadimage> SOLVED !
Replies: 1
Views: 717

Re: POPMENU WITH ACTION ERROR

...                        ON INIT (BarDialogImage(oBmp,oDlg),oBmp:LoadImage( ,cBmpFile ))                                 ...
by Silvio.Falconi
Wed Nov 14, 2012 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: POPMENU WITH ACTION ERROR
Replies: 12
Views: 2929

Re: DRAW A TEXT ON A BITMAP

WHEN i MAKE @ nY*numero, nx*numero IMAGE aBtn[nBotone] SIZE BMP_H,BMP_V OF oPanel FILENAME NIL PIXEL NOBORDER aBtn[nBotone]:LoadImage( , UMBRELLA_FREE ) aBtn[nBotone]:lTransparent := .T. IT IS OK WHEN i ADD THESE LINE IT CRASH AND NOT FOUND nBotone aBtn[nBotone]:bPainted = { || SetBkMode( ...
by Eoeo
Mon Jul 16, 2012 8:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DRAW A TEXT ON A BITMAP
Replies: 35
Views: 9172

Re: problema al cambiar dinámicamente una imagen

... muestro uno sin contenido, pero bueno, aún así, la imagen no se superpone, la muestra a su tamaño. Tal vez sea que estás usando LoadBmp y yo LoadImage. Lo tengo de la siguiente forma: ................REDEFINE IMAGE oFoto FILENAME cFoto ID 800;             OF oDlg UPDATE oBrw:bChange:= {|| ...
by Manuel Aranda
Fri Apr 06, 2012 9:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema al cambiar dinámicamente una imagen
Replies: 5
Views: 1050

Re: Cargar imagen

... "C:\IMAGE.BMP" ) la carga desde el disco. Cómo cargo una imagen desde recurso? Gracias por la ayuda Saludos, Adhemar Please use method LoadImage() instead of LoadBmp() oImager:LoadImage( cBmpFile, cResourceName, [cResFileName] ) For loading bitmap file, oImager:LoadImage( cBmpFileName ...
by nageswaragunupudi
Fri Sep 02, 2011 3:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cargar imagen
Replies: 12
Views: 4072

Re: falla de brush con xharbour.com

... BM_FONDO2 4194304 0 retorno de GetErrMsg es: El nombre de recurso especificado no se encuentra en el archivo de imagen. en bitmap.prg METHOD LoadImage( cResName, cBmpFile ) CLASS TBitmap   local lChanged := .f.   local hBmpOld  := ::hBitmap   local hPalOld  := ::hPalette   local aBmpPal  ...
by carlos vargas
Sun Aug 14, 2011 11:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: falla de brush con xharbour.com
Replies: 14
Views: 3759

Re: New FWH 11.07

... cBmpRes )           ::hBrush  = If( ::hBitmap != 0, CreatePatternBrush( ::hBitmap ),)  in bitmap.prg in METHOD LoadImage, ::hBitmap and ::hPalette return zero   if ! Empty( cResName )       aBmpPal    = PalBmpLoad( cResName )       ::hBitmap  = ...
by Antonio Linares
Sat Aug 13, 2011 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12871

Re: New FWH 11.07

...        ::hBrush  = If( ::hBitmap != 0, CreatePatternBrush( ::hBitmap ),)  in bitmap.prg in METHOD LoadImage, ::hBitmap and ::hPalette return zero   if ! Empty( cResName )       aBmpPal    = PalBmpLoad( ...
by carlos vargas
Fri Aug 12, 2011 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 11.07
Replies: 79
Views: 12871

Re: bitmap changed from user

...   ltrim(STR(AScan( aItems, Trim( HW->type )))) after cbmp:=aGet[20]:cresname ,; WE told you... use LoadImage... In the start you use... @ 2, 250 BITMAP aGet[20] RESOURCE oggettoBmp[val(ltrim(cBmp))] NOBORDER PIXEL;  ...
by Daniel Garcia-Gil
Thu Mar 10, 2011 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bitmap changed from user - RESOLVED !!!
Replies: 20
Views: 5547

Re: bitmap changed from user

... ,; "Registratore" ,; "Tv" ,; "Videocamera" } and if I insert as return value this line aControl[20]:LoadImage( AllTrim( aItems[ AScan( aItems, Trim( HW->type )) ] ) ) go to load an image and not a number ( but I need a number not a cbmfile name) ...
by James Bott
Thu Mar 10, 2011 12:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bitmap changed from user - RESOLVED !!!
Replies: 20
Views: 5547
PreviousNext

Return to advanced search