Search found 80 matches: loadimage

Return to advanced search

Re: Alternar fondo de pantalla BMP segun valor obtenido.

... que contexto lo haces? Hay un valor que cambia en el transcurso del programa y queres actualizar la imagen? Prueba recargando la imagen con oBmp:LoadImage("bmp2.bmp") #include "FiveWin.ch"function Main()                  ...
by cmsoft
Fri Sep 15, 2023 12:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SOLUCIONADO Alternar fondo de pantalla BMP segun valor
Replies: 4
Views: 202

Re: use Icon from Windows DLL Resource

... != "N"      nWidth  := 32   ENDIF   IF ValType(nHeight) != "N"      nHeight := 32   ENDIF   ::Handle := @user32:LoadImageA( hModule,;                           nId            ,;                           IMAGE_ICON     ,;                           nWidth   ...
by Jimmy
Tue Feb 14, 2023 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: use Icon from Windows DLL Resource
Replies: 7
Views: 426

COMO GRABAR UN RESOURCE EN EL DISCO

... FW_Saveimage(hDC,'Imagex.bmp') El archivo se recupera y se graba bien pero no lo puedo leer con ximage ni con image ( Loadimage() ), es como si se alterara algo en la estructura del mismo al recuperarlo. Alguien tiene idea de que puede estar pasando y de ser asi como ...
by rterraz
Sat Sep 25, 2021 2:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO GRABAR UN RESOURCE EN EL DISCO
Replies: 2
Views: 402

change xImage on line

... ,oBmp:refresh())} Next return nil Second Problem How I can reload the xmage ? Itried with reload,Setsource,LoadImage
by Silvio.Falconi
Fri Oct 02, 2020 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change xImage on line
Replies: 0
Views: 389

Re: Guardar imagen en el disco con FW_SaveImage

... ) He intentado recuperando la imagen con LoadFromMemory, LoadImage, Setbmp Gracias por la ayuda Is oDBF an object? TDatabase object? In that case, it should be oDBF:FOTOIf you are directly refering to memo ...
by nageswaragunupudi
Sat Jun 20, 2020 5:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Guardar imagen en el disco con FW_SaveImage
Replies: 11
Views: 1671

Guardar imagen en el disco con FW_SaveImage

... ) He intentado recuperando la imagen con LoadFromMemory, LoadImage, Setbmp Gracias por la ayuda
by acuellar
Tue Jun 16, 2020 11:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Guardar imagen en el disco con FW_SaveImage
Replies: 11
Views: 1671

cargar imagen web en el diálogo

Hola a todos,
utilizo LoadImage () para mostrar la imagen de producto en un diálogo. Con las imágenes almacenadas localmente funciona bien.
Ahora tengo que mostrar imágenes almacenadas en la web, alguien sabe cómo hacer?

Saludos
by rogerio
Thu Jun 13, 2019 8:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: cargar imagen web en el diálogo
Replies: 2
Views: 473

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

... MsgInfo is executed. If we add oImgBack:bMMoved = { || If( oImgBack:cBmpFile != "..\bitmaps\metro\Metro-Back-48hover.bmp",; ( oImgBack:LoadImage( nil, "..\bitmaps\metro\Metro-Back-48hover.bmp" ), oImgBack:Refresh() ), nil ) } then oImgBack:bMLeave = { || MsgInfo( 1 ) in no ...
by Otto
Fri Nov 09, 2018 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3795

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

Dear Antonio can you please help me with oImgBack:bMLeave = { || oImgBack:LoadImage( nil, "..\bitmaps\metro\back-black-48.png" ), oImgBack:Refresh(), msginfo(1) }. I tried your suggestions but oImgBack:bMLeave here is not working. Thank you in Advance ...
by Otto
Sun Oct 28, 2018 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 problems with touch.prg from the fwh/samples
Replies: 18
Views: 3795

Re: Bug in TBitmap

... ::hBitmap ) .and. ! Empty( ::cBmpFile )      ::LoadBmp( ::cBmpFile )   endif  keep calling LoadImage() repeatedly. This is fixed by inserting these lines before present line no. 833 ( FWH18.03)      if ::hBitmap == 0    ...
by nageswaragunupudi
Tue May 29, 2018 5:31 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in TBitmap [Fixed]
Replies: 2
Views: 1255

Re: Problem with upgrade to FWH 2018 - 02

Please try oBmp:LoadImage( cLogo )
by nageswaragunupudi
Wed Apr 25, 2018 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with upgrade to FWH 2018 - 02
Replies: 13
Views: 3061

Re: FW_DrawImage with negative coordinates

The problem are not the 4 images, the problem is FW_DrawImage with negative coordinate... I was thinking to use the new methods FW_LoadImage and FW_DrawImage in my new control, TImage uses FreeImage, TXImage uses FW_DrawImage The workaround I found is use FW_LoadImage and GDIBmp. Because I need to d...
by AntoninoP
Tue Apr 17, 2018 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_DrawImage with negative coordinates
Replies: 6
Views: 865

Re: XIMAGE ERROR

... .. @ 20, 330 XIMAGE oImageCropped SIZE 80, 80 OF oCattura PIXEL NOBORDER ... ACTIVATE DIALOG oCattura CENTERED ; on init oImageCropped:LoadImage( cImgFileCropped ) Local cImgFileCropped:= "default.jpg"..@ 20, 330 XIMAGE oImageCropped SOURCE cImgFileCropped SIZE 80, 80 OF oCattura ...
by nageswaragunupudi
Sun Nov 05, 2017 1:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE ERROR
Replies: 5
Views: 796

not show the image ( win 10)

...  oCattura CENTERED   ;        on init  oImage:LoadBmp( cImgFile )  Return nil I not see any image on dialog ... why ? ( tried also with LoadImage() )
by Silvio.Falconi
Fri Nov 03, 2017 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not show the image ( win 10)
Replies: 2
Views: 482

XIMAGE ERROR

WHY IT MAKE ERROR ?

...
Local cImgFileCropped:= "default.jpg"
..
@ 20, 330 XIMAGE oImageCropped SIZE 80, 80 OF oCattura PIXEL NOBORDER

...
ACTIVATE DIALOG oCattura CENTERED ;
on init oImageCropped:LoadImage( cImgFileCropped )
by Silvio.Falconi
Fri Nov 03, 2017 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE ERROR
Replies: 5
Views: 796
Next

Return to advanced search