La clausula ::lTransparent, no funciona con bmp en recursos.
- Code: Select all Expand view
// Using bitmaps from resources
#include "FWCE.ch"
function Main()
local oWnd, oBmp, oBmp2
DEFINE WINDOW oWnd TITLE "Bmp-Res"
@ 5, 5 BITMAP oBmp FILENAME CURDIR() + "\users.bmp" NOBORDER
oBmp:lTransparent = .t.
@ 8, 5 BITMAP oBmp2 NAME "users" NOBORDER
oBmp2:lTransparent = .t.
ACTIVATE WINDOW oWnd ;
ON CLICK MsgInfo( "click!" )
return nil
Alguna solucion ?
Saludos.
C.