Problema FWH release di Aprile

Moderator: Enrico Maria Giordano

Post Reply
User avatar
Marco Turco
Posts: 858
Joined: Fri Oct 07, 2005 12:00 pm
Location: London
Contact:

Problema FWH release di Aprile

Post by Marco Turco »

Salve,
mi sembra ci siano problemi nel visualizzare bitmap trasparenti con l'ultima versione di FWH (Aprile).

Ecco un esempio che mostra il problema.

#include "FiveWin.ch"

static oWnd

//----------------------------------------------------------------------------//

function Main()

local oWndEdit, oBar, oIcon, oImage
local cName := "FiveWin power"

DEFINE WINDOW oWnd TITLE "I am the MDI Frame" ;
COLOR NIL, NRGB(192,192,192);
MDI


@50,50 BITMAP oBmp file "48ASSEMB.BMP" OF oWnd PIXEL NOBORDER
oBmp:nClrPane:=nRgb(192,192,192)
oBmp:lTransparent:=.t.

SET MESSAGE OF oWnd TO "Main Window"


ACTIVATE WINDOW oWnd MAXIMIZED

return nil

Qualche idea ?

Grazie in anticipo

Marco Turco
User avatar
Enrico Maria Giordano
Posts: 8775
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 7 times
Contact:

Re: Problema FWH release di Aprile

Post by Enrico Maria Giordano »

Code: Select all | Expand

@50,50 BITMAP oBmp file "48ASSEMB.BMP" OF oWnd:oWndClient PIXEL NOBORDER


EMG
Post Reply