Search found 268 matches: transparency

Return to advanced search

Re: Transparent area becomes black when use BUTTON...ADJUST

This is your definition of the buttonbar  DEFINE BUTTONBAR oBar OF oWnd 3D size 110,66 1) Remove "3D" clause. This is creating problem of transparency. If you remove this clause, the images will be transparent. But resizing makes the image ragged. 2) Add "GDIP" clause. This makes ...
by nageswaragunupudi
Wed Dec 06, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 873

Re: XML, CON ARCHIVO ADJUNTO PDF

... Ùµ_Öß&˯ßfÿÓÓMíØÿ8½× endstream endobj 1 0 obj <</Group<</Type/Group/CS/DeviceRGB/S/Transparency>>/Parent 7 0 R/Contents 6 0 R/Type/Page/Resources<</XObject<</img0 5 0 R/Xf1 4 0 R>>/ProcSet [/PDF /Text /ImageB ...
by elmoiquique
Sat Sep 30, 2023 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XML, CON ARCHIVO ADJUNTO PDF
Replies: 35
Views: 2288

Re: Seeking your thoughts. UPDATED

First, I finally obtained the client's .png file. It was using a gray background for transparency ( which at one time could be done ). I had to manually resolve that using an editor I have, and making it true transparent. The problem continued on his printer, displaying ...
by TimStone
Tue Jun 13, 2023 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Seeking your thoughts
Replies: 10
Views: 652

Re: Seeking your thoughts

... on printer controls in Windows, and not FWH code. We can drop this topic for now because I need to see a good .png file first, and make sure the transparency is correct. What I do know is that the file the client sent me had a grey background. I suspect if I can get the logo onto a transparent ...
by TimStone
Mon Jun 12, 2023 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Seeking your thoughts
Replies: 10
Views: 652

Re: Change the transparency of the window

Thank you, Karinha, it was a useful example !
by Natter
Sun Apr 23, 2023 6:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 278

Re: Change the transparency of the window

// C:\FWH..\SAMPLES\NATTER2.PRG#Include "Fivewin.ch"#Include "Gif.ch"STATIC oDlg, oSayNatFUNCTION Main()   LOCAL oWnd   LOCAL oMenu   MENU oMenu      MenuItem "nOpacity" ACTION( Test_nOpacit() ) ...
by karinha
Sat Apr 22, 2023 8:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 278

Re: Change the transparency of the window

I am interested in a non-modal (NOWAIT) window
by Natter
Sat Apr 22, 2023 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 278

Re: Change the transparency of the window

#Include "FiveWin.ch"STATIC oDlgFUNCTION Main()  DEFINE DIALOG oDlg FROM 0,0 TO 300,300 PIXEL TRUEPIXEL RESIZABLE           ;     STYLE nOR(WS_POPUP, WS_THICKFRAME) COLOR CLR_BLACK, RGB(152, 251, 152)  ;   ...
by karinha
Sat Apr 22, 2023 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 278

Change the transparency of the window

I need to change the transparency of the window.I try this way, but nothing changes. How can this problem be solved ? #include "fivewin.ch"function Mainprivate oDlg  DEFINE DIALOG oDlg FROM 0,0 TO 300,300  PIXEL ;          ...
by Natter
Sat Apr 22, 2023 4:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change the transparency of the window
Replies: 4
Views: 278

Re: Imagelist : Icon and Bitmap from Resource

...  iImage := ::oImageLHeader:Add( oBMP )   DeleteObject( oBMP ) now i got Bitmap in Grid-Header :D ... but Icon look better ... Transparency of Bitmap is not working ... https://i.postimg.cc/fWBBqNmL/Grid-Header-No-Transparency.png
by Jimmy
Tue Feb 14, 2023 4:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Imagelist : Icon and Bitmap from Resource
Replies: 5
Views: 451

Re: MENUITEM RESOURCE transparency ?

hi,
nageswaragunupudi wrote:Now all our users also know.

i think it must be in Help File so every User can read it
by Jimmy
Wed Nov 09, 2022 4:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1243

Re: MENUITEM RESOURCE transparency ?

Dear Rao The menus defined without any clause ( COLORS or styles 20?? ), are painted by the Windows API ( S.O. ) with the limitations that this produced for us. To improve them, I introduced the COLORS clause that allows you to use colors and images and fonts both in the main menu items and in the ...
by nageswaragunupudi
Tue Nov 08, 2022 11:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1243

Re: MENUITEM RESOURCE transparency ?

hi,
nageswaragunupudi wrote:if you use
Code: Select all  Expand view
MENU oMenu COLORS

instead of
Code: Select all  Expand view
MENU oMenu

YES, that work fine
by Jimmy
Tue Nov 08, 2022 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1243

Re: MENUITEM RESOURCE transparency ?

Mr. Rao, add the COLORS clause to the menu definition (without putting any style 20?? ) and try. This works perfectly both with FWH1709 and the latest version. Thanks. May ask? Is it possible to make it work like this without any clause like "COLORS" ? You know better but we like to have ...
by cnavarro
Tue Nov 08, 2022 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1243

Re: MENUITEM RESOURCE transparency ?

... had I sought guidance of Mr. Cristobal before posting here. Now, you need not use any style. You can have classic menus working perfectly with transparency if you use MENU oMenu COLORS instead of MENU oMenu I tested all the samples and all of them work perfectly.
by nageswaragunupudi
Tue Nov 08, 2022 7:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1243
Next

Return to advanced search