Search found 383 matches: nrgb

Return to advanced search

Re: How to draw gray box in dialog *Fixed*

... solved it ? I need to define FONT for the message. @ nBottom-50, 0 SAY oSays PROMPT space(1000) OF oDlg SIZE nRight+1, 50 PIXEL COLOR CLR_WHITE, nRGB( 245, 245, 245 ) oSays:lTransparent := .F. Function MsgYesNo( cText, cTitle, lLeftAlign )local oDlg, oSay, oSays, oBtn[3], oImglocal ...
by dutch
Sat Feb 27, 2021 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to draw gray box in dialog *Fixed*
Replies: 7
Views: 571

Re: Evaluate whether a color value is dark or light

... to white row 4 = white, row 5 = black http://www.service-fivewin.de/IMAGES/Cpicker5.jpg 0.3*R+0.6*G+0.1*B black check row 5 = nRGB( 128, 128, 128 ) = white row 6 = RGB( 160, 160, 160 ) = black < 128 = white >= 128 = black test with green ( column 5 ) row 1 nRGB( 0, 51, ...
by ukoenig
Sun Feb 14, 2021 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Evaluate whether a color value is dark or light
Replies: 9
Views: 838

Re: Cambiar el borde a un Get *SOLUCIONADO*

... borde, lo estoy haciendo de está forma: oGet:oWnd:Box ( oGet:nTop - 1,; oGet:nLeft - 1,; oGet:nTop + oGet:nHeight ,; oGet:nLeft + oGet:nWidth ,; { nRgb(255,0,0), 1 } ) oGet:Refresh() Lo quiero poner un borde en rojo, he cambiado varios colores y siempre me sale en negro. Que estoy haciendo mal ...
by hmpaquito
Sun Jan 31, 2021 10:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar el borde a un Get *SOLUCIONADO*
Replies: 22
Views: 2305

Re: Cambiar el borde a un Get *SOLUCIONADO*

... borde, lo estoy haciendo de está forma: oGet:oWnd:Box ( oGet:nTop - 1,; oGet:nLeft - 1,; oGet:nTop + oGet:nHeight ,; oGet:nLeft + oGet:nWidth ,; { nRgb(255,0,0), 1 } ) oGet:Refresh() Lo quiero poner un borde en rojo, he cambiado varios colores y siempre me sale en negro. Que estoy haciendo mal ...
by nageswaragunupudi
Sun Jan 31, 2021 6:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar el borde a un Get *SOLUCIONADO*
Replies: 22
Views: 2305

Re: Cambiar el borde a un Get *SOLUCIONADO*

... borde, lo estoy haciendo de está forma: oGet:oWnd:Box ( oGet:nTop - 1,; oGet:nLeft - 1,; oGet:nTop + oGet:nHeight ,; oGet:nLeft + oGet:nWidth ,; { nRgb(255,0,0), 1 } ) oGet:Refresh() Lo quiero poner un borde en rojo, he cambiado varios colores y siempre me sale en negro. Que estoy haciendo mal ...
by jgabri
Sun Jan 31, 2021 5:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar el borde a un Get *SOLUCIONADO*
Replies: 22
Views: 2305

Re: Cambiar el borde a un Get *SOLUCIONADO*

... 0xbbggrr does this conversion. But when using FWH1712 or later, there is no need to use any external function to do this. FWH built-in function nRGB( "#rrggbb" ) --> 0xbbggrr does the same. Also, we can use this format when using in oWnd:SetColor Eg: oWnd:SetColor( "#0000ff", ...
by nageswaragunupudi
Sat Jan 30, 2021 12:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar el borde a un Get *SOLUCIONADO*
Replies: 22
Views: 2305

Re: How to change color of line in Header and Footer? *Work Now*

Dear Master Rao,

Thanks a lot.
nageswaragunupudi wrote:
oBrw:bClrHeader := { ||{ CLR_GRAY, nRGB( 242, 242, 242 ), CLR_HGRAY } }


Right.
by dutch
Fri Dec 25, 2020 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change color of line in Header and Footer? *Work Now*
Replies: 10
Views: 1148

Re: How to change color of line in Header and Footer? *Work Now*

oBrw:bClrHeader := { ||{ CLR_GRAY, nRGB( 242, 242, 242 ), CLR_HGRAY } }


Right.
by nageswaragunupudi
Fri Dec 25, 2020 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change color of line in Header and Footer? *Work Now*
Replies: 10
Views: 1148

Re: How to change color of line in Header and Footer?

Dear Uwe & Navarro,

It works now, I use 3rd parameter of bClrHeader as below

oBrw:bClrHeader := { ||{ CLR_GRAY, nRGB( 242, 242, 242 ), CLR_HGRAY } }
Imagerestaurants near carolina beach
Thank you both of you.
by dutch
Thu Dec 24, 2020 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to change color of line in Header and Footer? *Work Now*
Replies: 10
Views: 1148

Re: Buttonbar color

DEFINE BUTTONBAR oBar OF oTabella SIZE 70,70 BOTTOM NOBORDER 2010

oBar:bClrGrad := { | lPressed | If( ! lPressed,;
{ { 1, nRgb(233,229,206),nRgb(233,229,206) } },;
{ { 1, nRgb( 245,244,234), nRgb( 245,244,234) } } ) }
by Silvio.Falconi
Wed Nov 25, 2020 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Buttonbar color
Replies: 5
Views: 497

Re: say with a line

@ 99, 115 SAY oSay[4] Prompt "Colore Bordo" SIZE 80,14 PIXEL OF oDlg TRANSPARENT INCLRLINE nRgb(238,236,219) but make error It makes an error because the clause INCRLINE is not included in the SAY command. Please refer to fivewin.ch. yes, of course but in future ...
by Silvio.Falconi
Sun Nov 01, 2020 10:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: say with a line
Replies: 4
Views: 932

Re: say with a line

@ 99, 115 SAY oSay[4] Prompt "Colore Bordo" SIZE 80,14 PIXEL OF oDlg TRANSPARENT INCLRLINE nRgb(238,236,219)

but make error


It makes an error because the clause INCRLINE is not included in the SAY command.
Please refer to fivewin.ch.
by nageswaragunupudi
Sat Oct 31, 2020 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: say with a line
Replies: 4
Views: 932

say with a line

How make this ?

Image

a say with a line on bottom

I try with

@ 99, 115 SAY oSay[4] Prompt "Colore Bordo" SIZE 80,14 PIXEL OF oDlg TRANSPARENT INCLRLINE nRgb(238,236,219)

but make error
by Silvio.Falconi
Thu Oct 29, 2020 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: say with a line
Replies: 4
Views: 932

Tget change size on line

... UPDATE @ 24, 312 BTNBMP oBtn1 RESOURCE "folderpiu.bmp" FLAT SIZE 15, 15 OF oDlg PIXEL ACTION NIL WHEN nData_To_Print=1 COLOR nRgb(238,236,219),nRgb(238,236,219) @ 24, 328 BTNBMP oBtn2 RESOURCE "foldermeno.bmp" FLAT SIZE 15, 15 OF oDlg PIXEL ACTION NIL WHEN nData_To_Print=1 ...
by Silvio.Falconi
Wed Oct 28, 2020 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tget change size on line
Replies: 0
Views: 237

Re: To Mister Nages - xBrowser

... CLR_WHITE } } :bClrGrad := { || { CLR_WHITE, CLR_WHITE } } :lDrawBorder := .T. :nStretchCol := STRETCHCOL_WIDEST :bClrSel := { || { CLR_BLACK, nRGB( 235, 235, 235 ) } } :bClrSelFocus := { || { CLR_BLACK, nRGB( 235, 235, 235 ) } } :SetBackGround( cLocal_sistema + '\imagens\fundo.bmp', BCK_FILL ...
by oliveiros junior
Mon Aug 17, 2020 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mister Nages - xBrowser
Replies: 21
Views: 2271
PreviousNext

Return to advanced search