Search found 137 matches: setdlggradient

Return to advanced search

Re: Dialog Color / Gradient

Darrell

You are VERY welcome .. another side-effect of using SetDlgGradient() is that it globally sets the Transparent attribute of your Dialogs to .T. which allows your text to blend in nicely with the gradient.

Rick Lipkin
by Rick Lipkin
Tue Jan 10, 2017 5:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog Color / Gradient
Replies: 20
Views: 5982

Re: Dialog Color / Gradient

Darrell I have created some wrappers that use SetDlgGradient() function .. Some ideas here for your consideration .. Rick Lipkin //---------------------------Func BlueGreenGrad()Local xGrad4 :=  {{ 1.00,14671839,   7419904 ...
by Rick Lipkin
Tue Dec 20, 2016 2:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog Color / Gradient
Replies: 20
Views: 5982

Re: Cambiar Color de Fondo de un SAY en un TFolderEx

Puedes modificar el color de todos los diálogos de esta forma: (una sola llamada para toda la aplicación)

SetDlgGradient( { { 1, RGB( 199, 216, 237 ), RGB( 237, 242, 248 ) } } )

puedes usar otros colores, cambiando los números de esos colores en RGB
by Antonio Linares
Sun Apr 03, 2016 8:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar Color de Fondo de un SAY en un TFolderEx
Replies: 33
Views: 7551

Re: Resize gradient with Dialog Resize

Uwe, Rao I looked back on some old code where I used gradients before SetDlgGradient() .. here is my solution, note the ON PAINT ..thank you both for your inspiration ! Rick Lipkin xGrad := { { 0.01,8440801,16777215 },{ 0.75,16777215,8440801 ...
by Rick Lipkin
Fri Oct 09, 2015 12:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize gradient with Dialog Resize
Replies: 9
Views: 2106

Re: How to set TSAY with Default TRANSPARENT

Dear Rick, Thank you so much for your idea, it is good choice and work as expectation. Dutch Have a look at the SetDlgGradient() function.. you can create many different gradient backgrounds and this is a system wide setting which sets the transparent global flag as well. Just ...
by dutch
Fri Jul 03, 2015 5:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set TSAY with Default TRANSPARENT
Replies: 9
Views: 1955

Re: How to set TSAY with Default TRANSPARENT

Dutch Have a look at the SetDlgGradient() function.. you can create many different gradient backgrounds and this is a system wide setting which sets the transparent global flag as well. Just call your User Defined Gradient at the top ...
by Rick Lipkin
Thu Jul 02, 2015 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set TSAY with Default TRANSPARENT
Replies: 9
Views: 1955

Re: Add Color to a Group Frame

...    oGrp1:nClrText := nRgb( 7,7,224 )     // blue             oGrp1:nClrPane := nRgb( 255,255,255 ) // white  ps .. I am also using SetDlgGradient(), which automatically sets the TransParent logical.
by Rick Lipkin
Tue Apr 07, 2015 1:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add Color to a Group Frame
Replies: 19
Views: 4828

Re: Ribbon with transparent say

SetDlgGradient() globally defines the transparent flag in your program as well as creating a nice color scheme for your program. You can define multiple color schemes with this function. I did not know about these global ...
by reinaldocrespo
Mon Feb 16, 2015 6:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon with transparent say
Replies: 3
Views: 637

Re: Ribbon with transparent say

Reinaldo I have never used a Ribbon bar but here is how I define my transparent Says .. I usually define a SetDlgGradient at the top of my program. SetDlgGradient() globally defines the transparent flag in your program as well as creating a nice color scheme for your program. ...
by Rick Lipkin
Mon Feb 16, 2015 2:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon with transparent say
Replies: 3
Views: 637

Re: Pequeño problema con transparencias

Joaquín You can define SetDlgGradient() at the top of your program and all your forms, says and gets will be transparent without you having to add the Transparent clause. You can set your gradient colors to be any colors you like .. ...
by Rick Lipkin
Wed Oct 22, 2014 1:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pequeño problema con transparencias
Replies: 5
Views: 702

Re: Revisando por alto el treeview

Tenemos 2 problemas localizados con los treeview de fwh ... 1.- Si usamos SetDlgGradient() los items no se refrescan correctamente al hacer scroll . 2.- En el treeview de easyreport se usas checks pero solo en algunos de los items . Si activamos los checks para ...
by mastintin
Fri Aug 22, 2014 3:16 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Revisando por alto el treeview
Replies: 5
Views: 2091

Re: Los Says que muestran los colores no funcionan

Se resuelve comentando la linea :

// SetDlgGradient( { { 1, RGB( 199, 216, 237 ), RGB( 237, 242, 248 ) } } )

en la function main() al principio del programa.
by mastintin
Sun Aug 17, 2014 9:07 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Los Says que muestran los colores no funcionan (solucionado)
Replies: 9
Views: 3456

Re: Help for extextout

Silvo I use Global SetDlgGradient() function which tells all your Dialogs to use the Transparent clause and then I use .rc to create a text field to be displayed on the form .. then a Redefine SAY with any PROMPT value I wish and you ...
by Rick Lipkin
Thu Jun 05, 2014 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for extextout
Replies: 8
Views: 2144

Re: Color texto estático en Folder usando SetDlgGradient

Solucionado y funcionando correctamente, finalmente no era un bug de codigo sino de sincronización con el repositorio de FWH :-)

De todas formas si varios quereis probarla, y que tengais la 14.02, se agradece :-)
by Antonio Linares
Thu May 15, 2014 3:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color texto estático en Folder usando SetDlgGradient
Replies: 9
Views: 1446
PreviousNext

Return to advanced search