i fix my problem i add
Transparent := True;
in exit.iss
there is any way to make this for the entire script? or i need to add
Transparent := True; for each msg win popup ?
Code:
MyExitFrameLabel:=TLabel.Create(nil);
with MyExitFrameLabel do
begin
Transparent := True;
Parent := MyExit;
Font.Color := $00A9A9A9;
Font.Size := 9;
Font.Name:='calibri';
Caption := ExpandConstant('Exit');
SetBounds(25, 18, 100, 17);
OnMouseDown:=@ExitFormOnMouseDown;
end;
MyExitFrameLabel1:=TLabel.Create(NIL);
with MyExitFrameLabel1 do
begin
Transparent := True;
Parent := MyExit;
Font.Color := $00A9A9A9;
Font.Size := 9;
Font.Name:='calibri';
Caption := 'Setup is not completed. All changes will not be saved'+#13+
'Are you sure you want to Exit?'
SetBounds(90, 77, 400, 300);
OnMouseDown:=@ExitFormOnMouseDown;
end;
do