Search found 27 matches: colorselect

Return to advanced search

Problemas con Menu POPUP.

... ) ) ; FILENAME TablaMnu[i,6] * COLORMENU CLR_RED, CLR_BLUE ; * LEFTCOLOR CLR_WHITE, CLR_YELLOW ; * COLORPNEL CLR_CYAN, CLR_BROWN ; * COLORSELECT CLR_HMAGENTA, CLR_HGREEN else MENUITEM ( AllTrim( oemtoansi(TablaMnu[i,3]) ) ) endif case TablaMnu[i,2] == 2 // separador SEPARATOR case ...
by José Camilo
Mon Jun 05, 2023 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Menu POPUP.
Replies: 2
Views: 219

Re: Change POPMENU background color?

Dear All, How can I change background color (ClrPane) of POPMENU? I try COLORMENU COLORSELECT but it doesn't change. Thanks in advance, To be able to use those clauses, you have to define the 2013 style or simply use the COLORS clause MENU oMnu COLORS .....   ...
by cnavarro
Sat Apr 15, 2023 6:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change POPMENU background color?
Replies: 4
Views: 227

Change POPMENU background color?

Dear All,

How can I change background color (ClrPane) of POPMENU? I try COLORMENU COLORSELECT but it doesn't change.

Thanks in advance,
by dutch
Sat Apr 15, 2023 2:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change POPMENU background color?
Replies: 4
Views: 227

Re: how to use WCOLOR.CH Constant with MENU / COLORSELECT ?

... 1 );      COLORLEFT   RGB( 0, 0, 1 ), CLR_WHITE ; //COLORBMP  CLR_WHITE, RGB( 0, 0, 1 );      COLORSELECT GetSysColor( COLOR_MENUHILIGHT ), GetSysColor( COLOR_MENUHILIGHT ) , GetSysColor( COLOR_MENU ) ;      ...
by cnavarro
Sat Feb 18, 2023 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to use WCOLOR.CH Constant with MENU / COLORSELECT ?
Replies: 2
Views: 180

Re: how to use WCOLOR.CH Constant with MENU / COLORSELECT ?

hi,

got it :D

Code: Select all  Expand view
 COLORSELECT GetSysColor( COLOR_MENUHILIGHT ), GetSysColor( COLOR_MENUHILIGHT ) , GetSysColor( COLOR_MENU )

this will give Original Color of Windows OS for Menu
by Jimmy
Sat Feb 18, 2023 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to use WCOLOR.CH Constant with MENU / COLORSELECT ?
Replies: 2
Views: 180

how to use WCOLOR.CH Constant with MENU / COLORSELECT ?

hi, i try to use COLOR_MENUHILIGHT   COLORSELECT COLOR_MENUHILIGHT , COLOR_MENUHILIGHT , CLR_WHITE this give be WHITE on BLACK :shock:   COLORSELECT NumColor2RGB( COLOR_MENUHILIGHT ), NumColor2RGB( COLOR_MENUHILIGHT ), CLR_WHITEFUNCTION ...
by Jimmy
Fri Feb 17, 2023 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to use WCOLOR.CH Constant with MENU / COLORSELECT ?
Replies: 2
Views: 180

Re: COLORMENU vertical MenuItem

In the COLORSELECT clause the first two parameters are for the background: if they are different it produces a gradient, but if you put the same color then you will get a single background color. Clause 2013 is the one that allows ...
by cnavarro
Tue Dec 27, 2022 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COLORMENU vertical MenuItem
Replies: 4
Views: 450

Re: COLORMENU vertical MenuItem

... is what i use now   MENU oMenu 2013 ;      COLORMENU BGcolor, BFcolor ;      COLORPNEL BFcolor, BGcolor ;      COLORLEFT BFcolor, BGcolor ;      COLORSELECT BFcolor, BGcolor, BFcolor   oMenu:oFont := oFontDefault BGcolor = Background Color BFcolor = Foreground Color Question : which other Style ...
by Jimmy
Tue Dec 27, 2022 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COLORMENU vertical MenuItem
Replies: 4
Views: 450

MENU COLOR

hi, i have look into CLASS TMenu() and MENU.CH there are so many Option which are not in Help File so how to use it :?: COLORMENU COLORSELECT COLORBMP, COLORLEFT, LEFTCOLOR COLORPNEL, COLORRIGHT, RIGHTCOLOR COLORSEPARATOR COLORBOX COLORLINEBOTTOM COLORLINETOP can i use it for "Dark-Mode"
by Jimmy
Sun Nov 06, 2022 6:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENU COLOR
Replies: 0
Views: 169

Re: image on menu

... RGB( 185, 158, 106 ) local nClrPCheck := RGB( 225, 230, 232 ) local nClrBCheck := RGB( 49, 106, 197 ) MENU oMenu ; COLORMENU nClrPane, nClrText ; COLORSELECT nClrPSel, nClrPSel2, nClrBPSel ; COLORLEFT nClrPMgn1 ; COLORRIGHT nClrPMgn2; COLORSEPARATOR nClrSepar ; logomenu "medical.BMP" ...
by Silvio.Falconi
Tue Oct 23, 2018 6:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: image on menu RESOLVED
Replies: 33
Views: 3670

Re: image on menu

... NAME "Tahoma" SIZE 0, -10              // oMenu:SetStyle( 14 )   MENU oMenu 2015 ;            COLORMENU nClrPane, nClrText ;            COLORSELECT nClrPSel, nClrPSel2, nClrBPSel ;            COLORLEFT nClrPMgn1 ;            COLORRIGHT nClrPMgn2;            COLORSEPARATOR nClrSepar ;  ...
by Silvio.Falconi
Mon Oct 22, 2018 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: image on menu RESOLVED
Replies: 33
Views: 3670

Re: TMenuItem():New changed

... <nClrToBa> [, <nClrBkBa>] ] ; [ <right: COLORPNEL, COLORRIGHT, RIGHTCOLOR> <nClrToBr> [, <nClrBkBr> ] ] ; [ COLORSELECT <nClrHiLi>, <nClrHiLf>[, <nClrHitx>] ] ; [ COLORSEPARATOR <nClrHiBr> ] ; [ <lVert: LINESVERT> ] ; [ <lColors: ...
by cnavarro
Tue Feb 13, 2018 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TMenuItem():New changed
Replies: 5
Views: 1014

Re: funciones de FWH y Harbour en un archivo .txt

... CMonth(<dDate>)->cMonth Col()->nCol ColorRepl([<xNewColor>],[<xOldColor>])->cNull ColorSelect(<nColorIndex>)->Nil ColorToN(<cColor>)->nColorAttribute ColorWin([<nTop>],[<nLeft>],[<nBottom>],[<nRight>],[<xNewColor>],[<xOldColor>])->cNull ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5795

Re: funciones de FWH y Harbour en un archivo .txt

... CharSort CharSpread CharSub CharSwap CharUnpack CharWin CharXOR CheckSum Chr ClearBit ClearEol ClearSlow ClearWin ClEol ClWin CMonth Col ColorRepl ColorSelect ColorToN ColorWin CompressString ConvToAnsiCP ConvToOemCP Cos CosH Cot CountLeft CountRight CreateObject Crypt CSetAtMuPa CSetCent CSetCurs ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5795

Re: FiveWin 17.07 menu problems

... ; // UPPERMNU ; LOGOMENU aTrayData[ TRAY_PATH ] + "images\acessosoftv.png" ; COLORSEPARATOR CLR_RED ; COLORMENU CLR_WHITE, CLR_BLACK ; COLORSELECT CLR_WHITE, CLR_WHITE, CLR_RED ; COLORBOX CLR_RED ; COLORLEFT CLR_WHITE ; COLORRIGHT CLR_HGRAY ; NOINHERIT ; FACTOR 4 ; ROUND 5 ; //5 // ...
by shark
Mon Oct 16, 2017 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin 17.07 menu problems
Replies: 5
Views: 1191
Next

Return to advanced search