Search found 60 matches: cyan

Return to advanced search

Re: Color a Groupbox Frame

Unfortunately this example did not work https://forums.fivetechsoft.com/viewtopic.php?t=39744 REDEFINE GROUP oGrp1 ID 196 of oPark COLOR CLR_CYAN, CLR_WHITE Font oFontB TRANSPARENT The only thing changed was the color of the text and the text color works fine .. REDEFINE GROUP oGrp1 ID 196 of oPark ...
by Rick Lipkin
Fri Jun 09, 2023 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color a Groupbox Frame
Replies: 23
Views: 1157

Problemas con Menu POPUP.

Buenos dias !!! Quiero cambiar el color de fondo de mi menú. Revisando en el foro ví una solución que propuso CESAR. La quise implementar y me pasa lo siguiente: 1- si coloco la clausula POPUP el menú NO se muestra. 2- las clausulas que sugirió CESAR no las toma. Al compilar da error en clausula BLO...
by José Camilo
Mon Jun 05, 2023 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Menu POPUP.
Replies: 2
Views: 204

Re: IE

... nil function Html() local cHtml TEXT INTO cHtml data:text/html, <html> <head> </head> <body style="background-color:cyan"> <h2>Using WebView from FWH</h2> <button onclick='test( 123, "Hello" )'>Call FWH app from web browser</button> ...
by Natter
Thu May 26, 2022 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1680

Re: MDICHILD No se cierra con METROPANEL.

Joao, no crees que el problema está en que tienes la clausula MDICHILD y MDI en la misma definición?, quizás tu problema vaya por ahi DEFINE WINDOW oWndBrow ; MDICHILD ; FROM 00, 00 TO 36.7, 160.3 ; COLOR CLR_CYAN, CLR_WHITE TITLE cTitle ; MDI ; BORDER NONE NOMAXIMIZE No maestro Navarro el problema...
by karinha
Fri Dec 10, 2021 12:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MDICHILD No se cierra con METROPANEL.
Replies: 3
Views: 463

Re: MDICHILD No se cierra con METROPANEL.

Joao, no crees que el problema está en que tienes la clausula MDICHILD y MDI en la misma definición?, quizás tu problema vaya por ahi DEFINE WINDOW oWndBrow ; MDICHILD ; FROM 00, 00 TO 36.7, 160.3 ; COLOR CLR_CYAN, CLR_WHITE TITLE cTitle ; MDI ; BORDER NONE NOMAXIMIZE
by cnavarro
Thu Dec 09, 2021 10:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MDICHILD No se cierra con METROPANEL.
Replies: 3
Views: 463

Re: Colores en RADIO no funciona?

Joao, Tienes que hacerlo desde la claúsula ON INIT del diálogo: ACTIVATE DIALOG oDlgInd ON INIT ChangeColors( oRadMenu ) ... function ChangeColors( oRadMenu ) oRadMenu:aItems[1]:SetColor( CLR_CYAN, CLR_WHITE ) oRadMenu:aItems[2]:SetColor( CLR_CYAN, CLR_WHITE ) oRadMenu:aItems[3]:SetColor( CLR_CYAN, ...
by Antonio Linares
Mon Sep 28, 2020 10:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Colores en RADIO no funciona?
Replies: 7
Views: 616

Re: Colorize a dialog two colors

Antonio, I use it for a Panel I made oApp:oSpiaggia:bPainted:= {|hDC, cPS| ; SetDlgGradient( { { 0.1, CLR_CYAN, CLR_CYAN }, { 0.9, COLORE_SABBIA, COLORE_SABBIA } } ); } then on this tPanel I use btnbmp and ( on top ) the objects Ximage the colors are bpainted but there is something not run ok becaus...
by Silvio.Falconi
Wed Apr 01, 2020 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorize a dialog two colors
Replies: 3
Views: 705

Re: Colorize a dialog two colors

Silvio,

You may use:

SetDlgGradient( { { 0.3, CLR_CYAN, CLR_CYAN }, { 0.7, CLR_YELLOW, CLR_YELLOW } } )
by Antonio Linares
Tue Mar 31, 2020 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorize a dialog two colors
Replies: 3
Views: 705

Re: How make it?

Silvio, You can connect a dialog to the button on action. Dialog-top = button-bottom, dialog-left = button-left. There You can include what ever You want. If needed You can paint a colored border around the dialog. The logic can be used on any other object. In xBrowse it is connected to a cell. http...
by ukoenig
Mon Nov 11, 2019 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How make it?
Replies: 6
Views: 1202

Re: conflicto con database

Hola bueno logré hacerlo funcionar lo que hice funcionar DEFINE ICON surge resource "icoprog" DEFINE DIALOG oDlg resource "lisbus_1" ICON surge odlg:cCaption:= "Clientes" REDEFINE LISTBOX olbm FIELDS (oDbf:calias) ->NAPE ID 101; ON DBLCLICK (lacepto:= .t.,odlg:end())...
by surGom
Thu Oct 24, 2019 1:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: conflicto con database
Replies: 4
Views: 917

Re: FW_SayText error

Uwe, I made oBtn[1]:bPainted := { |hDC| FW_DrawImage( hDC, ".\bitmaps\ombrellone.bmp", { 2, 1, 124, 62 } ), ; FW_SayText( hDC, str(nOmbrellone1), { 7, 45, 98, 75 },,oBold2, CLR_BLACK, CLR_BLUE),; FW_SayText( hDC, cPrice, { 117, 91, 95, 155 },,oBold, CLR_HRED, CLR_YELLOW),; FW_SayText( hDC,...
by Silvio.Falconi
Wed Jul 17, 2019 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 505

Re: FW_SayText error

Silvio, oBtn[1]:bPainted := { |hDC| FW_DrawImage( hDC, ".\bitmaps\ombrellone.bmp", { 2, 1, 124, 62 } ), ; FW_SayText( hDC, str(nOmbrellone1), { 7, 45, 98, 75 },,oBold2, CLR_BLUE, CLR_BLUE),; FW_SayText( hDC, cPrice, { 117, 91, 95, 155 },,oBold, CLR_HRED, CLR_YELLOW),; FW_SayText( hDC, ggio...
by ukoenig
Wed Jul 17, 2019 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 505

FW_SayText error

Compiling a procedure with the fwh release April/May 2019 I have an error with FW_SayText https://i.postimg.cc/7P9GBTBF/errore-fw-txt.png in fact, a number was printed in the blue spot on source I made : //FW_SayText( ::hDCOut, cText, aRect, cAlign, oFont, nClrText, nClrBack ) oBtn[1...
by Silvio.Falconi
Tue Jul 16, 2019 4:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SayText error
Replies: 2
Views: 505

TGraph valores y titulos en negrita

Hola Foro: Solicito una ayuda con la clase Tgraph. 1) Necesito poder destacar los montos de los valores de las barras, que aparezcan en negrita, lo ideal poner un color de fondo, para una facil visualizacion. Pues la persona que mira los graficos tiene muy mala vista. Como aumento o cambio el FONT y...
by carito
Wed May 29, 2019 2:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGraph valores y titulos en negrita
Replies: 1
Views: 630

Re: FLAT BUTTON does NOT executes its action by Pressing Alt Key

Hello Shridhar,
switch to
BTNBMP PROMPT "test" SIZE 80, 32 PIXEL OF oDlg FLAT COLOR CLR_WHITE,METRO_CYAN;

FLATBTN is not well supported and you get the same look with BTNBMP FLAT.
Best regards
Otto
by Otto
Sun Feb 24, 2019 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FLAT BUTTON does NOT executes its action by Pressing Alt Key
Replies: 3
Views: 751
Next

Return to advanced search