Search found 29 matches: rectangule

Return to advanced search

Re: make a rectangule with a brush

Silvio.Falconi wrote:Mr. Rao,
I meant that if you see well the button has problems when using the gradient or the brush with diagonal lines, in both cases they come out of the border when they shouldn't.


I see your point.
We will look into this.
by nageswaragunupudi
Tue Apr 04, 2023 6:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

Mr. Rao,
I meant that if you see well the button has problems when using the gradient or the brush with diagonal lines, in both cases they come out of the border when they shouldn't.
by Silvio.Falconi
Thu Mar 30, 2023 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

Enlarge?
Pls provide an example.
by nageswaragunupudi
Thu Mar 30, 2023 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

Rao, I modify your test inserting the gradient I use and the color of border #include "fivewin.ch"function test()   local oDlg, oBtn, hBmp := LinesBmp()   local lEnabled := .t.   DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL   @ &nb...
by Silvio.Falconi
Thu Mar 30, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

function test()   local oDlg, oBtn, hBmp := LinesBmp()   local lEnabled := .t.   DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL   @  40,60 BTNBMP oBtn ;      FILE "..\bitmaps\pngs\image1.png", "", hBmp, "" ;      SIZE 64,64 PIXEL FLAT GDIP WHEN lEnable...
by Silvio.Falconi
Thu Mar 30, 2023 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

function test()   local oDlg, oBtn, hBmp := LinesBmp()   local lEnabled := .t.   DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL   @  40,60 BTNBMP oBtn ;      FILE "..\bitmaps\pngs\image1.png", "", hBmp,...
by nageswaragunupudi
Thu Mar 30, 2023 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

the problem is that a btnbmp when disabled looks ugly


Depends on the program.
by nageswaragunupudi
Mon Mar 27, 2023 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

Or we can also do this with minimal code like this:    DEFINE BRUSH oBrush STYLE BDIAGONAL COLOR CLR_GREEN   oDlg:bPainted := { || oDlg:Box( 100,100,200,300, { CLR_HRED, 2 }, oBrush, "TEXT" ) }  https://imagizer.imageshack.com/v2/xq70/924/yVyHyS....
by Silvio.Falconi
Mon Mar 27, 2023 6:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

Or we can also do this with minimal code like this:    DEFINE BRUSH oBrush STYLE BDIAGONAL COLOR CLR_GREEN   oDlg:bPainted := { || oDlg:Box( 100,100,200,300, { CLR_HRED, 2 }, oBrush, "TEXT" ) }  https://imagizer.imageshack.com/v2/xq70/924/yVyHyS...
by nageswaragunupudi
Mon Mar 27, 2023 2:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Re: make a rectangule with a brush

   DEFINE BRUSH hBrush    STYLE BDIAGONAL COLOR  Rgb(195,195,185)     hOldBru := SelectObject( ::hDC, hBrush )  should be    DEFINE BRUSH oBrush    STYLE BDIAGONAL COLOR  Rgb(195,195,185)    &nbs...
by nageswaragunupudi
Mon Mar 27, 2023 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

make a rectangule with a brush

... ::hDC, { aRect[ 1 ] + 1 , aRect[ 2 ] + 1, aRect[ 3 ], aRect[ 4 ] }, hBrush ) it draw the rectangule without the brush https://i.postimg.cc/YCbw9Ffn/g.jpg but not run ok
by Silvio.Falconi
Thu Mar 23, 2023 11:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: make a rectangule with a brush
Replies: 10
Views: 486

Pressing many buttons and multiple reservation

... can insert a reservation multiple as an order to one customer and many umbrellas ( each umbrellas have differents services) I'm thinking as a big rectangule bitmap and on each the user can insert many buttons ( services) and each bitmap is as a record on a xbrowse https://s7.postimg.cc/92rwx3sdn/image.png ...
by Silvio.Falconi
Mon May 21, 2018 11:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pressing many buttons and multiple reservation
Replies: 0
Views: 514

Re: TTagEver class for FWH

Dear friends , i made some features I add ltransparent,lanimation and create 3 type tags forms rectangule with shadow effect http://www.eoeo.it/wp-content/uploads/2016/06/rect.jpg roundrect ( of Paco) http://www.eoeo.it/wp-content/uploads/2016/06/round.jpg ...
by Silvio.Falconi
Sat Jun 11, 2016 5:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TTagEver class for FWH
Replies: 13
Views: 4132

Move controls as window size

Hi all, I'm looking for the best way to move the controls in this folder (those in the red rectangule) automatically down based on the window size. Which is in your opinion the best way to do it ? Instead of move any control, could it be possibile to put over the folder ...
by Marco Turco
Fri Feb 13, 2015 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Move controls as window size
Replies: 21
Views: 6228

Re: Outlook Calendar (prototype)

... ..to use it to our applications first. I saw on day view if I click an area I cannot insert a record. I cannot move the mouse and move the black rectangule it create when I click an area Second do you understand how insert a new record ? third we can change the visualization of box and special ...
by Silvio
Fri Jan 28, 2011 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook Calendar (prototype)
Replies: 102
Views: 31759
Next

Return to advanced search