topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
BUTTONBMP Transparente | Hola:
¿Se pueden hacer BUTTONBMP transparentes?. Muchas gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
BUTTONBMP Transparente | No es posible pues la clase TButtonBmp está basada en la clase button propia de Windows que no permite pintarse transparente.
Puedes usar la Clase TBtnBmp de FiveWin. Tienes un ejemplo en FWH\samples\TestBtnB.prg
Tambien puedes usar la nueva Clase TRBtn usada en la nueva RibbonBar de FWH. En FWH\samples\ribbon.prg pu... |
BUTTONBMP Transparente | [url=http://img198.imageshack.us/i/botontransparente.jpg/:1agqib8i][img:1agqib8i]http://img198.imageshack.us/img198/3455/botontransparente.th.jpg[/img:1agqib8i][/url:1agqib8i]
Pequeño ejemplo con BTNBMP, intente ponerlo asi como las de A.L. en grande pero no conseguir como... <!--... |
BUTTONBMP Varios Click | Amigo tengo un Problema con la Clase ButtonBmp a veces el boton le tengo que presionar varios click para q se ejecute. |
BUTTONBMP duda | Saludos a todos,Alguien sabría como colgarle un menupopup sin que en el boton creado salga la flechita?bueno, he colgado el menu popup pero, sale la flechita, lo cual no se me hace muy estético.una imagen dice mas que mil palabras:[img:31odwj60]http://img149.imageshack.us/img149/1470/envioshk0.th.jp... |
BUTTONBMP duda | William,Una solucion rapida es que declares esta funcion en tu PRG principal:function PolyPolygon() ; return nilen el caso de que no uses esa funcion desde otra parte de tu aplicacion. |
BUTTONBMP duda | Antonio,no fue la solución, pues sigue moviendo la imagen del boton y apareciendo la separación donde iria la flechita, aunque la flechita no aparece.La idea es que no aparezca ni la separación ni la flechita, ni mueva la imagen del boton, sino que solamente aparezca el popup.espero haberme explicado.saludos |
BUTTONBMP duda | [quote="wmormar":2azqzq88]La idea es que no aparezca ni la separación ni la flechita, ni mueva la imagen del boton, sino que solamente aparezca el popup.[/quote:2azqzq88]Hola William:Prueba con: oBtn[ 6 ]:oPopup := NilUn abrazo.Manuel Mercado. |
BUTTONBMP duda | Manuel,sorry, no funcionó.sigo esperando comentariosgracias por adelantado |
BUTTONBMP el bmp sale encima del texto | Hola foro,
compile el TextBuBm.prg pero solo viene el bitmap con el botón. Bien,,, pues ya tiene texto.
He logrado hacer lo siguiente
REDEFINE BUTTONBMP oBtn ID 702 OF oDlg ;
BITMAP "Acerca.BMP" ;
Pero el Bitmap aparece encima del texto... ¿Cómo le hago para que el bitmap apareca a la izquierda... |
BUTTONBMP el bmp sale encima del texto | En el método Paint() de la Clase TButtonBmp hay este código:
if ! Empty( ::hBitmap )
nTop = ( ::nHeight() / 2 ) - ( nBmpHeight( ::hBitmap ) / 2 )
nLeft = ( ::nWidth() / 2 ) - ( nBmpWidth( ::hBitmap ) / 2 )
if ::lActive
DrawMasked( ::hDC, ::hBitmap, nTop + If( lPressed, 1, 0 ),;
... |
BUTTONBMP el bmp sale encima del texto | Gracias Antonio |
BUTTONBMP no es completamente compatible con clausula WHEN | Si se usa el boton BUTTONBMP juno con la clausula WHEN, la imagen no se despliega en caso de que esta se cumpla.
Todo funciona bine si no se usa esta condicion o si la condicion no se cumple.
Version 13.05 FivewinH 32 bits
REDEFINE BUTTONBMP ID 500 OF oFld:aDialogs[1] ; //procesa alta
ACTION aux_llama(oDb... |
BUTTONBMP no es completamente compatible con clausula WHEN | Actualización:
Aunque parezca paradójico, no sucede con Windows 8, 7 ni Vista. Sólo con Windows XP. Lo que lo hace aún más extraño. |
BUTTONBMP no es completamente compatible con clausula WHEN | Pudiera ser la resolución del bitmap que sea superior a la que soporta tu XP ?
Has probado con otros bitmaps ? |
BUTTONBMP no es completamente compatible con clausula WHEN | Cuando WHEN es .F., el control se deshabilita y Windows dibuja el bitmap con colores cambiados, tal vez por la resolución no consiga hacer este efecto |
BUTTONBMP no es completamente compatible con clausula WHEN | No era nada de eso, bueno no del todo.
El pintado del bitmap lo hace FWH (no lo pensé antes de responder) y cuando el botón está deshabilitado se llama a la función DrawGray() y esta es la que no esta funcionando correctamente en XP.
Puede tratarse por la resolución que tengas en XP, prueba a aumentarla (me refiero a... |
BUTTONBMP no es completamente compatible con clausula WHEN | Por el código de DrawGray() me reitero en la idea de que es la resolución de colores de XP.
Puedes comprobarla y decirmela ? gracias |
BUTTONBMP no es completamente compatible con clausula WHEN | Pues efectivamente tiene que ver en un juego entre la resolucion, el numero de colores y el tamano de la imagen.
En algunos sistemas y pantallas funciona a la perfeccion mientras que en otros depende de si esta habilitada o no.
(se trata de una imagen de 48x48 pixeles en una profundidad de campo de 8 bits que he dism... |
BUTTONBMP no es completamente compatible con clausula WHEN | Finalmente quedo en una imágen de 38x38 bits 256 colores y el asunto parece arreglado.
Gracias |
BUTTONBMP no es completamente compatible con clausula WHEN | muy bien <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
BUTTONBMP transparency | I'm using REDEFINE BUTTONBMP BITMAP "HROK" ..... to place an alpha bitmap on a dialog. When it first displays, it shows a black background in the area which is supposed to be transparent. If I mouseover the button, it then changes to a transparent background. I would also like to have NOBORDER on the button, but th... |
BUTTONBMP transparency | Hello Tim,
All possible Settings :
There is a transparent-problem, using a Dialog-[color=#FF0000:h27wmeiw]Image-Background [/color:h27wmeiw]( doesn't work ).
Gradient, Color and Brush is OK.
[img:h27wmeiw]http://www.pflegeplus.com/pictures/BButton1.jpg[/img:h27wmeiw]
[code=fw:h27wmeiw]<div class="fw"... |
BUTTONBMP transparency | Are you saying that BTNBMP will not work properly against an image background ?
Thanks for all of the examples. |
BUTTONBMP transparency | Tim
I tested all possible Combinations.
Transparent button on Image-Background didn't work.
It is the same Example from above but with Image.
Maybe a Solution for the Problem ?
The Result with Image-background. Option 2007 works :
[img:1hy0pr4j]http://www.pflegeplus.com/pictures/btntrans.jpg[/img:1hy0... |
BUTTONBMP transparency | I was using BUTTONBMP BITMAP .... and had the problem.
I went to BTNBMP and made it NOBORDER TRANSPARENT and it does work.
I'm using a .BMP image in the resource as a BRUSH and it works.
At least I have it under control now. Thanks. |
BUTTONBMP transparency | >>
There is a transparent-problem, using a Dialog-Image-Background ( doesn't work ).
Gradient, Color and Brush is OK.
>>
This is the reason, I advise converting image as brush and use it as background instead of painting image in the paint method. |
BUTTONBMP y Texto del boton | Estoy pasando mis botones a esta clase y queda muy bien además que toma los themes de XP.
El problema es que el texto siempre sale centrado, y lo que se corre de un lado a otro con la clausula TEXTRIGHT (por ej) es el bitmap.
Hay alguna solución como para que el texto lo ponga a un costado del bitmap?
Gracias |
BUTTONBMP y Texto del boton | Puedes usar una de estas claúsulas:
TEXTTOP | TEXTBOTTOM | TEXTLEFT | TEXTRIGHT
al crearlo bien con @ ó con REDEFINE |
BUTTONBMP y Texto del boton | Si, Antonio uso la cláusula TEXTRIGHT y si bien me pone el bitmap a la izquierda del botón, el texto sigue saliendo centrado y muchas veces queda bajo la imagen (bmp).
Mi FWh es de 03/2006 puede ser que se haya modificado esta clase?
Gracias |
BUTTONBMP y Texto del boton | ivan
Prueba modificar la alineacion del boton en el recurso(pellesC,workshop)
yo he modificado parte de la clase para que salgan los textos
en la misma posicion
[url:3lcyt3as]http://img161.imageshack.us/my.php?image=botonbmpyf2.jpg[/url:3lcyt3as]
[img:3lcyt3as]http://img161.imageshack... |
BUTTONBMP y Texto del boton | Gracias Patricio, anduvo de maravillas. |
BUTTONS ON A WINDOW | I must create in a window 160 buttons
I create this function to create buttons :
[code:rn4uiio2]
STATIC FUNCTION makebuttons(X,y,oCassa,oFont,oGet,oLBX)
LOCAL k
BOTTONI :=40
n := 1
aBtn := Array(BOTTONI)
X = 20
Y = ... |
BUTTONS ON A WINDOW | Silvio,
Please provide a small and self contained sample. A PRG that can be compiled and tested quickly. Its the only way to provide efficient tech support. Thanks, |
BUTTONS ON A WINDOW | ok :
this isthe link
<!-- m --><a class="postlink" href="http://hyperupload.com/download/02ed1fbb65/linares.zip.html">http://hyperupload.com/download/02ed1fb ... s.zip.html</a><!-- m -->
I made this sample to see only 40 buttons but I want to show 160 button at the same positions :
I explain you
Page 1 ->>> from 1 t... |
BUTTONS ON A WINDOW | Silvio,
What screen resolution do you use ? We can't see the full window... |
BUTTONS ON A WINDOW | oopss 1400x1050 now
but I modified the test with screen 1280X1024
the code is :
[code:3gkfsvuz]
#include "fivewin.ch"
#define PAGINA1 "Pag1"
#define PAGINA2 "Pag2"
#define PAGINA3 "Pag3"
#define PAGINA4 "Pag4"
// TO Antonio
// I made this sample WITH 40 buttons but I want TO see 160 buttons !... |
BUTTONS ON A WINDOW | Silvio,
Just a sample:
[code:34h8eo7t]
@ X+2 ,Y BUTTON aPag2 PROMPT PAGINA2 OF oWnd FONT oFont ;
SIZE 140,50 PIXEL ACTION Pagina2( oWnd )
...
function Pagina2( oWnd )
local n
for n = 2 to 41
oWnd:aCon... |
BUTTONS ON A WINDOW | THANKS ANTONIO
BUT i HAVE ON ORIGINAL WINDOW MANY CONTROL
HOW i CAN MAKE TO KNOW THE NUMBER OF CONTROLS TO CHANGE ?
THERE IS A FUNCTION TO GIVE ME A LIST OF ALL CONTROLS OD THE WINDOWS WITH THEIR NUMBERS ?
REGARDS |
BUTTONS ON A WINDOW | Silvio,
You may use their DATA cargo to store an identifier, or check its position in oWnd:aControls, its nID, etc. |
BUTTONS ON A WINDOW | thank i resolve it |
BUTTONS ON A WINDOW | Dear Antonio,
Now I use STYLE nOr( WS_POPUP, WS_VISIBLE ) to show the window but i wanted create a window (child of mainwindow)
when I shrink the window or increase the window the procedure must repaint all the controls (lbx and buttons) :
there is a sample as it ? |
BUTTONS ON A WINDOW | Silvio,
Windows may do it automatically. In case you want to force it you may do a oWnd:Refresh() |
BUUUUU ya no puedo poner colores condicionados en Txbrowse?? | HolaYo tenia una rutinita que funcionaba muy bien en Txbrowse pero ahora ya no funciona <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> ahora es diferente o ya no se puede:?: asi lo tenia antes con un fivewin 6 ahora uso el 7 <!-- s:? --><img src="{SMIL... |
Back after 10 years due to illness [ Javier Lloris ] | Good morning:
Antes que nada quiero expresar mi gratitud a Antonio, por ser una persona maravillosa, empática, educada, entre otros miles de calificativos positivos y no puedo faltar, como genio de la programación. Gracias por todo Antonio.
[b:8r23cuc5]First of all, I want to express my gratitude to Antonio, for bein... |
Back after 10 years due to illness [ Javier Lloris ] | Buenas Javier. TBarBRW.prg - tiene un ejemplo de uso?
Gracias.
Regards, saludos. |
Back after 10 years due to illness [ Javier Lloris ] | Javier:
Es un excelente trabajo, felicidades al "chef"
Saludos |
Back in Spain :-) | Dear friends,
We are already back in Spain. Development in Korea has been really great and we are so satisfied with the results <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Now we will continue our FiveTech development as usual, and expect more support from me in the ... |
Back in Spain :-) | Dear Antonio,
>>We are already back in Spain. Development in Korea has been really great and we are so satisfied with the results
Congratulations.
>>And a real big and nice surprise for all:
>>Daniel Garcia Gil has joined FiveTech in Spain So expect lots of new features and great things for next FiveWin versions.... |
Back in Spain :-) | Hi Antonio,
congratulations and compliments.
But you're back to Spain for working when a lot of people is coming to Spain for holydays <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Back in Spain :-) | Dear Massimo,
Working with computers is real holydays for me <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
BackGround Painting (SOLVED) | Hi all,
I have the following problem when using tFolderX:
Check Boxes & Group Boxes:
[img:2l8ftso2]http://www.mayapos.com/FiveWin/setdlg.png[/img:2l8ftso2]
I use SetDlgGradient()...
Anyone knows of a way to fix this...??? |
BackGround Painting (SOLVED) | Hello Bayron,
using a folder is different. You can download a working sample.
Folder-Brush, Color, Gradient and image.
Please remember : changing the radio- and Checkbox-textcolor from black to defined,
only works [b:2pccu0ud]without[/b:2pccu0ud] XPMANIFEST
Download ( different backgrounds ) :
<!-- m --><a class="po... |
BackGround Painting (SOLVED) | Hi Uwe,
Your sample works perfectly...
But for some reason It does not work for me in my main program...
I have done everything from:
changing the manifest file
changing my code
Saving my .res file to .rc and check that everything is the same
Tomorrow I will reconstruct everything from scratch using your sample as ba... |
BackGround Painting (SOLVED) | Hello Bayron,
It is the reason, I show complete working samples, not just a few lines,
to get a overview, how it works together.
There are 2 !!! samples.
One sample uses my functions WITH XPManifest but NOT using => SetDlgGradient( {...
The second works as well without my functions.
XPManifest only belongs to the Radi... |
BackGround Painting (SOLVED) | Thanks Uwe,
I really appreciate the effort you made to provide me with this sample...
I'm sure I will solve the problem with this samples...
But right now I am doing a complete rewrite of my application, and it will take me some time...
Thank you again... |
BackGround Painting (SOLVED) | Remember SetDlgGradient is GLOBAL !!!
Define a extra dialog-style using global [color=#FF0000:3omay5ve][b:3omay5ve]SetDlgGradient[/b:3omay5ve][/color:3omay5ve]
[img:3omay5ve]http://www.pflegeplus.com/pictures/dlgstyle1.jpg[/img:3omay5ve]
FUNCTION MAIN()
local oDlg1, oBtn1, oBtn2
[color=#FF0000:3o... |
BackGround Painting (SOLVED) | Uwe thanks for all your explanations...
Right now I am thinking on going back to individual painting of dialogs, because of the problems I have with SetDlgGradient(), specifically with folders...
I'll see what I come up with.... |
BackGround Painting (SOLVED) | this problem is old...
We have allready modified this error (Tgroup class) two year ago but perhaps Linares not included the modifications on future package |
BackGround Painting (SOLVED) | Silvio,
Have a look at this:
[url:38x66n79]http://community.artofmanliness.com/forum/topics/etiquette-question-last-name-only[/url:38x66n79]
Best regards,
Otto |
BackGround Painting (SOLVED) | Otto, BRAVO! |
BackGround Painting (SOLVED) | Otto,
Ich kann nicht lachen, ich habe zahnschmerzen !!!!!!!!
so viele Fabeln sechs Fall eine Frau? Nur Frauen erzählen viele Geschichten |
BackGround Painting (SOLVED) | Your teeth? It 's all your head that does not "run ok". |
BackGround Painting (SOLVED) | Dear Otto,
Why are you always trying to write nonsense?
You are always trying to offend me constantly ...
The problem with this class (tgroup) has been corrected by Emg long time ago
but as so often mistakes are not saved and we have to recompile the object classes along
with those changed as was the case for so l... |
BackGround Painting (SOLVED) | Bayron,
have a look at these changes in TGroup.prg.
[url:wp3qmf1w]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=22940&hilit=tgroup[/url:wp3qmf1w]
For me everything is working fine, even the transparent groupheader. |
BackGround Painting (SOLVED) | Thanks Stefan,
This way the problem with the painting of the groups was fixed for me...
I also solved the problem with the checkboxes removing this function from my project:
[code=fw:3rbe27xx]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//FUNCTION IsAppThemed()</span><br />... |
BackStage de Ribbon | Buenas tardes
No se si el funcionamiento del BackStage del Ribbon es el correcto ya que es la primera vez que lo utilizo.
En el siguiente enlace describo los problemas que he encontrado (Fwh 12.03)
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=22&t=26409&start=15#p146651">... |
BackStage nType | Hello Daniel,
If I use nType 1 action is not fired.
oBackStage:AddOption( "Exit",,, 2,,,,, ,,, ,{|Self, oOpt, nLastSelect |Msginfo( oOpt:cPrompt )} )
Best regrads,
Otto |
BackStage nType | Hello Daniel,
Maybe I am missing something but for me it seems as the only nType
in METHOD LButtonDown of CLASS TBackStage is: BCKTYPE_SELECT
Best regards,
Otto |
BackStage nType | Otto...
several change to launch action in backstage button.
implemented xcommand in ribbon.ch
is little sample
[code=fw:28zfqnaa]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">DEFINE</span> BACKSTAGE oBackStage <br /> <br /> <span style="color: #0000ff;">DEFINE<... |
BackStage nType | Hello Daniel,
thank you.
But I don't have BSBUTTON in ribbon.ch.
Do I need to download a new FWH-version?
My libs are from 26.6.2010.
Best regards,
Otto |
BackStage nType | Daniel, thank you.
Best regards,
Otto
[img:37c7qde8]http://www.atzwanger-software.com/fw/ribbon5.jpg[/img:37c7qde8] |
Backgrd.-Tests for Wind. Dialog a Alpha-BMP's ( download ) | Hello,
After spending some hours with testing,
I think, it might be useful, to show a overview of the functions,
to show the different backgrounds with combinations
( Gradient, Brushes, Images and combinations with Alpha-BMP's )
from inside a MDI or MODAL-window and Dialog.
I'm still busy with testing and it is not fi... |
Backgrd.-Tests for Wind. Dialog a Alpha-BMP's ( download ) | Hello,
all tests are done. Here is the final result :
All combinations are tested ( 20 are possible )
It is a nice overview, how to use the different functions.
If You like, You can download the complete working-directory ( everything is included )
Download Version 1.0 / Jan 2009 :
<!-- m --><a class="postlink" href=... |
Background Color | Good morning guys, Saturday morning here and I curled up with a background color. How do I change this color to the same color of blue ribbon?
NOTE: I use RIBBONBAR
[img:1bmpdeu8]http://img812.imageshack.us/img812/1358/8pp5.png[/img:1bmpdeu8] |
Background Color | Up |
Background Color | Arthur,
Look for this code in tribbon.prg:
[code=fw:19kj8v3p]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">IF</span> l2013<br /> nTopMargin := <span style="color: #000000;">25</span><br /> nClrPaneRB :=... |
Background Color | thank you antonio, got it. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
Background Processor | My update system runs every 3 hours. In Windows, I use this to control the intervals without a lot of CPU demand:
DEFINE TIMER oTmr INTERVAL 900000 OF oWnd ;
ACTION IF( ElapTime( cStart, Time()) >= "03:00:00", RunUpdater(), )
ACTIVATE TIMER oTmr
Defining a timer requires a Window, so I simply replace it wi... |
Background Processor | how about HB_idleSleep( <nTime> ) |
Background Processor | Is it specific to the application or generic to the os ? |
Background Processor | [url:6q8cngcb]http://www.harbourdoc.com.br/show.asp?seek=t&key=hb_idleSleep()[/url:6q8cngcb] |
Background Processor | You are satisfied with the functionality of Timer but the only objection to use is that it requires a Window to be activated. Probably because you want this in a program which does not do any screen i/o, eg: Service or a Scheduled Task.
You can still use a window but activate it hidden,
DEFINE WINDOW oWnd
<other code>... |
Background Processor | OK ... so I built the .exe and it will execute.
However, when I try to activate it as a service I get the error:
[i:2ej9429r]Error 1053 Service did not respond in a timely fashion[/i:2ej9429r]
So ... this brings us back to the request for a sample of code on how to build a program that acts as a service. What do I... |
Background checkboxes on xBrowse!? (Solved!) | Dear Antonio,
When I use a column with the method setCheck, the image of the "checkbox" and the cursor of xBrowse are the same color!
The background of the image of "checkbox" used must be always white. In version 8.04, I managed to fix that! In this version (8.10), I do can't! How do I fix it?
[img:12eq9g8i]http:... |
Background checkboxes on xBrowse!? (Solved!) | Dear friends!
Nobody can help me? |
Background checkboxes on xBrowse!? (Solved!) | Better explanation:
Every time when I use checkboxes bitmaps, the fund (background area) them are the color of the cursor xBrowse and not white!
The fund is the area inside the contour of the square to "draw" the checkbox
If the color of cursor into my xbrowse is blue... the fund (background area) of my checkboxes bit... |
Background checkboxes on xBrowse!? (Solved!) | Special thanks to Daniel Garcia!!
Solved with this:
This method:
[code:27bb1yuh]
METHOD PaintData( nRow, nCol, nHeight, lHighLite, lSelected, nOrder, nPaintRow ) CLASS TXBrwColumn
...
if nBmpNo > 0 .and. nBmpNo <= Len( ::aBitmaps )
...
if lStretch
n... |
Background color of TSay | I noticed, that the background color of a say not to change!? |
Background color of TSay | Günther,
my test
@ 22, 20 SAY oCSay[1] PROMPT "Window" SIZE 28,12 FONT oFontSys PIXEL
oCSay[1]:SetColor( 0, 255 ) // original
@ 20, 50 GET oCGet[1] VAR cGet[1] SIZE 80, 18 OF oDlg2 COLOR 0, nWColorB UPDATE ;
BITMAP c_Path1 + "Help.bmp" PIXEL ;
ACTION ( nWColorB := ChooseColor( nWColorB ), oCGet[1]:SetColor( ,... |
Background color of TSay | Uwe, i have used
[code=fw:25mm75j8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">SAY</span> <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"xyz"</span> <span style="color: #0000ff;">ID</span> <span style=... |
Background color of TSay | Günther,
if the dialog is defined < transparent >
the background-color of the say will be ignored
if You need a mixture of color [b:1pdq524h]and[/b:1pdq524h] transparent use a normal dialog
[quote:1pdq524h]REDEFINE SAY PROMPT "xyz" ID 100 OF oDlg COLOR 0,255[/quote:1pdq524h]
REDEFINE SAY [color=#0000FF:1pdq524h][b:... |
Background color of TSay | Thanks Uwe. I use [code=fw:fxpj5s40]<div class="fw" id="{CB}" style="font-family: monospace;">GRADIENT <span style="color: #000000;">{</span><span style="color: #000000;">{</span><span style="color: #000000;">1</span>,color1, color2<span style="color: #000000;">]</span><span style="color: #000000;">}... |
Background color of TSay | [code=fw:2nc5s6oi]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg GRADIENT aGrad<br /> oDlg:<span style="color: #000000;">lTransparent</span> := .f.<br /> </div>[/code:2nc5s6oi] |
Background color of the GET | Hi
I need to change the background color of the GET field when hovering the mouse cursor. Is it possible to do this ? |
Background color of the GET | Example?
Regards, saludos. |
Background color of the GET | Please try this:
SetGetColorFocus( CLR_RED )
oGet:bMMoved := { || oGet:SetFocus() } |
Background color of the GET | Thanks, it works! |
Backgroundcolor header listbox | Hello,How can I define the backgroundcolor of the header in a listbox ?Thanks.Regards. |
Backgroundcolor header listbox | oBrw:nClrBackHead := nColor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.