FWH 1201 Upgrade Transparent text

FWH 1201 Upgrade Transparent text

Postby Rick Lipkin » Thu Feb 09, 2012 5:27 pm

To All

I am slowly working thru and updating my applications to FWH 1201 and have noticed that my .rc forms Text has lost its transparency.

In FWH 910 I created a .rc form .. defined a brush and did a gradientfill over the dialog and that has worked just fine.

Also notice that the fields are no longer greyed out using COLOR "N/W" READONLY ..

I am sure it there is a new and better way to do this and any help in pointing out what I need to do to modify my code .. I would be most grateful.

Rick

Previous FWH
Image

FWH 1201
Image

Code: Select all  Expand view


xGRAD8 := {{ .50, nRGB( 201, 217, 237 ), nRGB( 231, 242, 255 ) } }

DEFINE BRUSH oBrush FileName (cDefa+"\Icons\GREY.bmp")

DEFINE DIALOG oVND RESOURCE "VENDVIEW" ;
       TITLE cTITLE BRUSH oBrush TRANSPARENT   ;


IF cMODE = "A" .or. cMODE = "E"

   REDEFINE GET oVENDORNO  VAR cVENDORNO  ID 110 of oVND COLOR "N/W" READONLY
   REDEFINE GET oVENDOR    VAR cVENDOR    ID 120 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oADDR1     VAR cADDR1     ID 130 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oADDR2     VAR cADDR2     ID 113 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oCITY      VAR cCITY      ID 140 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oSTATE     VAR cSTATE     ID 150 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oZIP       VAR cZIP       ID 160 of oVND PICTURE "99999-9999" UPDATE
   REDEFINE GET oPHONE1    VAR cPHONE1    ID 170 of oVND PICTURE "(999)999-9999" UPDATE
   REDEFINE GET oPTYPE1    VAR cPTYPE1    ID 114 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oPHONE2    VAR cPHONE2    ID 122 of oVND PICTURE "(999)999-9999" UPDATE
   REDEFINE GET oPTYPE2    VAR cPTYPE2    ID 123 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oFAX       VAR cFAX       ID 124 of oVND PICTURE "(999)999-9999" UPDATE
   REDEFINE GET oCONTACT   VAR cCONTACT   ID 180 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oEMAIL     VAR cEMAIL     ID 125 of oVND UPDATE
   REDEFINE GET oWEBSITE   VAR cWEBSITE   ID 126 of oVND UPDATE

   REDEFINE GET oBVENDOR   VAR cBVENDOR   ID 115 of oVND PICTURE "@!" UPDATE

   REDEFINE GET oBADDR1    VAR cBADDR1    ID 116 of oVND PICTURE "@!" ;
            when cBvendor <> "SAME" UPDATE
   REDEFINE GET oBADDR2    VAR cBADDR2    ID 121 of oVND PICTURE "@!" ;
            when cBvendor <> "SAME" UPDATE
   REDEFINE GET oBCITY     VAR cBCITY     ID 117 of oVND PICTURE "@!" ;
            when cBvendor <> "SAME" UPDATE
   REDEFINE GET oBSTATE    VAR cBSTATE    ID 118 of oVND PICTURE "@!" ;
            when cBvendor <> "SAME" UPDATE
   REDEFINE GET oBZIP      VAR cBZIP      ID 119 of oVND PICTURE "99999-9999" ;
            when cBvendor <> "SAME" UPDATE

   REDEFINE GET oTERMS     VAR cTERMS     ID 128 of oVND PICTURE "@!" UPDATE
   REDEFINE GET oCOMMENTS  VAR cCOMMENTS  ID 127 of oVND UPDATE

   REDEFINE GET oEntryBy   VAR cEntryBy   ID 141 of oVnd COLOR "N/W" READONLY
   REDEFINE GET oEntryDate VAR dEntryDate ID 142 of oVnd COLOR "N/W" READONLY


ELSE     // view

   REDEFINE GET oVENDORNO  VAR cVENDORNO  ID 110 of oVND COLOR "N/W" READONLY
   REDEFINE GET oVENDOR    VAR cVENDOR    ID 120 of oVND COLOR "N/W" READONLY
   REDEFINE GET oADDR1     VAR cADDR1     ID 130 of oVND COLOR "N/W" READONLY
   REDEFINE GET oADDR2     VAR cADDR2     ID 113 of oVND COLOR "N/W" READONLY
   REDEFINE GET oCITY      VAR cCITY      ID 140 of oVND COLOR "N/W" READONLY
   REDEFINE GET oSTATE     VAR cSTATE     ID 150 of oVND COLOR "N/W" READONLY
   REDEFINE GET oZIP       VAR cZIP       ID 160 of oVND COLOR "N/W" READONLY
   REDEFINE GET oPHONE1    VAR cPHONE1    ID 170 of oVND COLOR "N/W" READONLY
   REDEFINE GET oPTYPE1    VAR cPTYPE1    ID 114 of oVND COLOR "N/W" READONLY
   REDEFINE GET oPHONE2    VAR cPHONE2    ID 122 of oVND COLOR "N/W" READONLY
   REDEFINE GET oPTYPE2    VAR cPTYPE2    ID 123 of oVND COLOR "N/W" READONLY
   REDEFINE GET oFAX       VAR cFAX       ID 124 of oVND COLOR "N/W" READONLY
   REDEFINE GET oCONTACT   VAR cCONTACT   ID 180 of oVND COLOR "N/W" READONLY
   REDEFINE GET oEMAIL     VAR cEMAIL     ID 125 of oVND COLOR "N/W" READONLY
   REDEFINE GET oWEBSITE   VAR cWEBSITE   ID 126 of oVND COLOR "N/W" READONLY

   REDEFINE GET oBVENDOR   VAR cBVENDOR   ID 115 of oVND COLOR "N/W" READONLY
   REDEFINE GET oBADDR1    VAR cBADDR1    ID 116 of oVND COLOR "N/W" READONLY
   REDEFINE GET oBADDR2    VAR cBADDR2    ID 121 of oVND COLOR "N/W" READONLY
   REDEFINE GET oBCITY     VAR cBCITY     ID 117 of oVND COLOR "N/W" READONLY
   REDEFINE GET oBSTATE    VAR cBSTATE    ID 118 of oVND COLOR "N/W" READONLY
   REDEFINE GET oBZIP      VAR cBZIP      ID 119 of oVND COLOR "N/W" READONLY

   REDEFINE GET oTERMS     VAR cTERMS     ID 128 of oVND COLOR "N/W" READONLY
   REDEFINE GET oCOMMENTS  VAR cCOMMENTS  ID 127 of oVND COLOR "N/W" READONLY

   REDEFINE GET oEntryBy   VAR cEntryBy   ID 141 of oVnd COLOR "N/W" READONLY
   REDEFINE GET oEntryDate VAR dEntryDate ID 142 of oVnd COLOR "N/W" READONLY

ENDIF

REDEFINE BTNBMP oBUTT1 ID 111 of oVND   ;     // ok
         FileName (cDefa+"\Icons\OK1.bmp"),;
                  (cDefa+"\Icons\DOK1.bmp"),;
                  (cDefa+"\Icons\DOK1.bmp") ;
         PROMPT "  &Ok    " LEFT 2007;
         ACTION ( IF(cMODE = "V",lOK := .T. , lOK := _busrules( cMODE ) ), ;
                  IF(cMODE = "V",lOK := .T. , if(lOK = .T., _doit( cMODE, oRsVend ),)),;
                  IF(lOK = .T., oVND:END(), ) )

REDEFINE BTNBMP oBUTT2 ID 112 of oVND   ;    // cancel
         FileName (cDefa+"\Icons\CANCEL1.bmp"),;
                  (cDefa+"\Icons\DCANCEL1.bmp"),;
                  (cDefa+"\Icons\DCANCEL1.bmp") ;
         PROMPT "&Cancel   " LEFT 2007;
         ACTION ( lOK := .F., oVND:END() )


ACTIVATE DIALOG oVND ;
         ON INIT _Disable() ;
         ON PAINT GradientFill( hDC, 0, 0, oVND:nHeight, oVND:nWidth, xGRAD8, .T.)

lOK1 := lOK

_CLEANUP()

if(empty(oBtn1), ,oBtn1:Enable())
if(empty(oBtn2), ,oBtn2:Enable())
if(empty(oBtn3), ,oBtn3:Enable())
if(empty(Obtn4), ,oBtn4:Enable())
if(empty(oBtn5), ,oBtn5:Enable())
if(empty(oBtn6), ,oBtn6:Enable())

SysReFresh()

RETURN( lOK1 )

//-----------------------------------
Static Func _Disable()

If cBVendor = "SAME"


   oBADDR1:lDisColors    := .f.
   oBADDR1:nClrTextDis   := CLR_BLACK // Color text disable status
   oBADDR1:nClrPaneDis   := CLR_HGRAY // Color Pane disable status
   oBaddr1:ReFresh()

   oBADDR2:lDisColors    := .f.
   oBADDR2:nClrTextDis   := CLR_BLACK // Color text disable status
   oBADDR2:nClrPaneDis   := CLR_HGRAY // Color Pane disable status
   oBaddr2:ReFresh()

   oBCITY:lDisColors    := .f.
   oBCITY:nClrTextDis   := CLR_BLACK // Color text disable status
   oBCITY:nClrPaneDis   := CLR_HGRAY // Color Pane disable status
   oBcity:ReFresh()

   oBSTATE:lDisColors    := .f.
   oBSTATE:nClrTextDis   := CLR_BLACK // Color text disable status
   oBSTATE:nClrPaneDis   := CLR_HGRAY // Color Pane disable status
   oBstate:ReFresh()

   oBZIP:lDisColors    := .f.
   oBZIP:nClrTextDis   := CLR_BLACK // Color text disable status
   oBZIP:nClrPaneDis   := CLR_HGRAY // Color Pane disable status
   oBzip:ReFresh()

ENDIF

SysReFresh()

RETURN(.T.)
 


.RC
Code: Select all  Expand view

VENDVIEW DIALOG 148, 57, 442, 331
STYLE WS_POPUP | WS_CAPTION
FONT 6, "MS Sans Serif"
{
 LTEXT "VendorNo                         ", -1, 10, 15, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 110, 64, 15, 65, 12, ES_AUTOHSCROLL | NOT WS_TABSTOP | WS_BORDER
 LTEXT "Vendor                                   ", -1, 10, 30, 49, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 120, 64, 29, 134, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Address 1                             ", -1, 10, 43, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 130, 64, 43, 134, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Address 2                            ", -1, 10, 58, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 113, 64, 58, 134, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "City\\St\\Zip", -1, 10, 73, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 140, 64, 73, 65, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 EDITTEXT 150, 132, 73, 17, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 EDITTEXT 160, 152, 73, 46, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Phone 1", -1, 10, 112, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 170, 64, 112, 66, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 CTEXT "Ext", -1, 133, 112, 17, 12, SS_CENTER | SS_NOPREFIX | WS_GROUP
 EDITTEXT 114, 152, 112, 47, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Phone 2", -1, 10, 127, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 122, 64, 127, 66, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 CTEXT "Ext", -1, 133, 127, 17, 12, SS_CENTER | SS_NOPREFIX | WS_GROUP
 EDITTEXT 123, 152, 127, 47, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Fax Number", -1, 10, 141, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 124, 64, 141, 66, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Contact                                       ", -1, 10, 176, 41, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 180, 10, 187, 210, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "E-Mail", -1, 10, 205, 41, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 125, 10, 216, 210, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Web Site", -1, 10, 235, 41, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 126, 10, 246, 210, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP
 LTEXT "Pay To", -1, 237, 29, 49, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 115, 291, 28, 134, 12
 LTEXT "Address 1                             ", -1, 237, 42, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 116, 291, 42, 134, 12
 LTEXT "Address 2                            ", -1, 237, 57, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 121, 291, 57, 134, 12
 LTEXT "City\\St\\Zip", -1, 237, 72, 49, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 117, 291, 72, 65, 12
 EDITTEXT 118, 359, 72, 17, 12
 EDITTEXT 119, 380, 72, 45, 12
 LTEXT "Payment Terms", -1, 232, 112, 53, 12, SS_NOPREFIX | WS_GROUP
 EDITTEXT 128, 291, 112, 65, 12
 LTEXT "Comments", -1, 232, 139, 41, 11, SS_NOPREFIX | WS_GROUP
 EDITTEXT 127, 232, 151, 202, 107, ES_MULTILINE | ES_AUTOVSCROLL | WS_BORDER | WS_TABSTOP
 CONTROL "&Ok", 111, "TBtnBmp", 32 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 347, 284, 41, 25
 CONTROL "&Cancel", 112, "TBtnBmp", 32 | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 390, 284, 41, 25
 GROUPBOX "Payment Address ( if not SAME ) ", 631, 232, 6, 203, 97, BS_GROUPBOX
 EDITTEXT 141, 58, 281, 57, 12, ES_AUTOHSCROLL | NOT WS_TABSTOP | WS_BORDER
 EDITTEXT 142, 58, 295, 57, 12, ES_AUTOHSCROLL | NOT WS_TABSTOP | WS_BORDER
 LTEXT "Last Update", -1, 11, 283, 37, 24
}

 
User avatar
Rick Lipkin
 
Posts: 2633
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FWH 1201 Upgrade Transparent text

Postby ukoenig » Thu Feb 09, 2012 6:28 pm

Hello Rick,

testing FWH 12.01 with my new Update.
Transparent Says, Radios, Checkboxes, Groups and Tfolderex with Groups.
As well I added a Readonly-get without any Problem.
I'm testing the same from CODE and RESOURCE.
Still have to add some Tests.
Some Painting-problems I noticed with older FWH-version, are fixed with this Release.
As soon I'm finished with testing, I will place the complete Source in the Forum.

Image

Best Regards
Uwe :lol:
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
ukoenig
 
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany

Re: FWH 1201 Upgrade Transparent text

Postby Antonio Linares » Thu Feb 09, 2012 7:43 pm

Rick,

Lately we have implemented automatic gradients support in FWH and the way we have designed it requires some little changes in your code:

You are using a BRUSH on a dialog and at the same time you are painting a Gradient from the ON PAINT clause of the dialog. This brings a conflict. The right way to do it now is:

a) In case that you are going to use the same gradient for all your dialogs, you can use new function SetDlgGradient( aGradColors ). You cal, this function just once and it works for all your dialogs:

SetDlgGradient( { { .50, nRGB( 201, 217, 237 ), nRGB( 231, 242, 255 ) } } )

b) Remove the call to GradientFill() from the ON PAINT clause. In fact, you can remove the ON PAINT clause entirely.

c) There is no need to specify TRANSPARENT for the dialog when you use SetDlgGradient().

Here you have a little example:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   local oDlg
   
   SetDlgGradient( { { .50, nRGB( 201, 217, 237 ), nRGB( 231, 242, 255 ) } } )
   
   DEFINE DIALOG oDlg RESOURCE "Test"

   ACTIVATE DIALOG oDlg CENTERED

return nil


This is how it looks using a portion of your RC:
Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FWH 1201 Upgrade Transparent text

Postby ukoenig » Thu Feb 09, 2012 8:21 pm

Antonio,

it seems, the Gradfunction detroys the Brush of TFolderEx ?
It is impossible, to define a different Brush ( uses the Gradient from Dialog ).

Image

I tested the Gradient-function like :
Code: Select all  Expand view

IF nDStyle = 2 // Gradient
    SetDlgGradient( { { .20, 14853684, 16312263 } } )
    DEFINE DIALOG oDlg1 OF oWnd FROM 30, 30 TO 500, 700  PIXEL ;
    FONT  oBrwFont TITLE "CODETEST  / Release 3.1 / 02. 2012"      
ELSE // Color, Brush, Image
    SetDlgGradient()
    DEFINE DIALOG oDlg1 OF oWnd FROM 30, 30 TO 500, 700  PIXEL ;
    FONT  oBrwFont TITLE "CODETEST  / Release 3.1 / 02. 2012"   TRANSPARENT 
    D_BACKGRD( oDlg1, nDStyle, lDDirect, nDColorF, nDColorB, nDGradPos, cDBrush, cDImage )
ENDIF
 


Best regards
Uwe :?:
Last edited by ukoenig on Thu Feb 09, 2012 8:44 pm, edited 1 time in total.
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
ukoenig
 
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany

Re: FWH 1201 Upgrade Transparent text

Postby Rick Lipkin » Thu Feb 09, 2012 8:39 pm

Antonio

Thank you ! ..

1) If I want to switch gradients within the program .. does the last call to SetDlgGradient() become the global default ?

2) If I choose to use SetDlgGradient() for different modules .. do I need to :end() the current SetDlgGradient() or does the one I immediately define just take control ?

Rick
User avatar
Rick Lipkin
 
Posts: 2633
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FWH 1201 Upgrade Transparent text

Postby Rick Lipkin » Thu Feb 09, 2012 8:49 pm

Uwe

Using a resource form as posted above .. is there a way to make the static text 'bold' or different colors??

Thanks
Rick
User avatar
Rick Lipkin
 
Posts: 2633
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FWH 1201 Upgrade Transparent text

Postby ukoenig » Thu Feb 09, 2012 8:57 pm

Rick,

Your Question about Text ( changing Color and Font at Runtime ):

Code: Select all  Expand view

@ 175, 215 SAY oSay3 PROMPT "Transparent Text-test"  OF oDlg1 PIXEL ;
FONT oFootFont ;
SIZE 100, 12 COLOR 0 // Black

@ 200, 140 BTNBMP oBtn2 OF oDlg1 ;
SIZE 105, 30 PIXEL;
NOBORDER ;
PROMPT "&Change Text" ;
ACTION ( oSay3:SetColor( 128, ), ; // change to Red
         oSay3:SetFont( oHeadFont ), ; // change Font
         oSay3:Refresh() ) ;
FILENAME c_path + "\Images\Save.Bmp" ;
FONT oBrwFont 2007 ;
LEFT
oBtn2:lTransparent := .t.  
oBtn2:cToolTip =  { "Change Text" + CRLF + "Color and Font","Change", 1, CLR_BLACK, 14089979 }
oBtn2:SetColor( 0, )
 


About the new Gradient-function I tested :

Dialog 1 ( Blue / White ):
SetDlgGradient( { { .20, 14853684, 16312263 } } )

Dialog 2 ( Red / White ) :
SetDlgGradient( { { .20, 128, 16312263 } } )

Switching from Dialog 2 back to Dialog 1
Dialog 1 still shows the defined Blue / White Gradient.

Best Regards
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
ukoenig
 
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany

Re: FWH 1201 Upgrade Transparent text

Postby Rick Lipkin » Thu Feb 09, 2012 9:37 pm

Uwe

The text is created in the .rc .. not from code .. I don't know if it can be modified at run-time unless I use a field in the rc for text .. then plug in the text like a say ?

Rick
User avatar
Rick Lipkin
 
Posts: 2633
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FWH 1201 Upgrade Transparent text

Postby ukoenig » Thu Feb 09, 2012 9:50 pm

Rick,

it doesn't matter Code or Resource, it is the same.
The Text inside the Resource needs a ID and could be defined like :

Uses the Text defined inside the Resource :

REDEFINE SAY oSay3 ID 271 OF oDlg1
oSay3:SetColor( 128, )
oSay3:SetFont( oFootFont )


Overwrites the Text, defined inside the Resource :

REDEFINE SAY oSay3 PROMPT "Static Text" ID 271 OF oDlg1
oSay3:SetColor( 128, ) // Red
oSay3:SetFont( oFootFont )


Changing the Text :

cText3 := "Static Text"
REDEFINE SAY oSay3 VAR cText3 ID 271 OF oDlg1
oSay3:SetColor( 128, )
oSay3:SetFont( oFootFont )


@ 200, 140 BTNBMP oBtn2 OF oDlg1 ;
SIZE 105, 30 PIXEL;
NOBORDER ;
PROMPT "&Change Text" ;
ACTION ( oSay3:SetColor( 128, ), ; // change to Red
cText3 := "New text", ;
oSay3:SetFont( oHeadFont ), ; // change Font
oSay3:Refresh() ) ;
FILENAME c_path + "\Images\Save.Bmp" ;
FONT oBrwFont 2007 ;
LEFT
oBtn2:lTransparent := .t.
oBtn2:cToolTip = { "Change Text" + CRLF + "Color and Font","Change", 1, CLR_BLACK, 14089979 }
oBtn2:SetColor( 0, )


Best Regards
Uwe :lol:
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
ukoenig
 
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany

Re: FWH 1201 Upgrade Transparent text

Postby Rick Lipkin » Thu Feb 09, 2012 10:49 pm

Uwe

I will look at that .. by default text is generally treated as a value of -1 .. I will see if I can assign the text a unique id in the resource editor .. then assign it to a Say and use your code.

Thanks
Rick
User avatar
Rick Lipkin
 
Posts: 2633
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FWH 1201 Upgrade Transparent text

Postby ukoenig » Thu Feb 09, 2012 11:03 pm

Rick,

YES, just replace with a valid ID.

Image

Best Regards
Uwe :lol:
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
ukoenig
 
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany

Re: FWH 1201 Upgrade Transparent text

Postby Antonio Linares » Thu Feb 09, 2012 11:26 pm

Rick,

Rick Lipkin wrote:1) If I want to switch gradients within the program .. does the last call to SetDlgGradient() become the global default ?

2) If I choose to use SetDlgGradient() for different modules .. do I need to :end() the current SetDlgGradient() or does the one I immediately define just take control ?


1) Yes

2) The immediately define takes control, but meanwhile a dialog is in use it will use the gradient that was active when the dialog was created
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 35 guests