Folder SAY background-color is still missing ?

Re: Folder SAY background-color is still missing ?

Postby ukoenig » Sat Jan 14, 2017 3:10 pm

Enrico,

Your sample ( button transparent was missing )
I added background-colors to clear the result.

Image

REDEFINE BTNBMP;
ID 101 OF oFld:aDialogs[ 1 ];
FILE "open.bmp";
NOBORDER TRANSPARENT

REDEFINE BTNBMP;
ID 102 OF oDlg;
FILE "open.bmp";
NOBORDER TRANSPARENT

regards
Uwe :D
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: Folder SAY background-color is still missing ?

Postby Enrico Maria Giordano » Sat Jan 14, 2017 3:14 pm

Please try using the theme manifest file.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8315
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Folder SAY background-color is still missing ?

Postby ukoenig » Sat Jan 14, 2017 6:13 pm

Enrico,
works as well

the download ( added some code to Your sample )

http://www.pflegeplus.com/DOWNLOADS/Fldtest1.zip

regards
Uwe :D
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: Folder SAY background-color is still missing ?

Postby Enrico Maria Giordano » Sat Jan 14, 2017 6:29 pm

I repeat: please use my sample "as is". Just add the manifest file.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8315
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Folder SAY background-color is still missing ?

Postby TimStone » Sat Jan 14, 2017 9:51 pm

Antonio, I tested as you asked. Please consider this:

The implemented code ( A segment of it ):
Code: Select all  Expand view

    // Define the workorder button bar
    REDEFINE BUTTONBAR oBar1 ID 101 SIZE 60,60 OF oWdlg1 2015
            oBar1:bClrGrad := aPubGrad
    DEFINE BUTTON oBtn11 OF oBar1 RESOURCE "HRPM" PROMPT "P/M's" TOOLTIP "View P/M Schedule" ;
            ACTION  (   oPMS := tPMStable():New( 1 ), oPMS:Display( oCurrentOrder:vehlic ) )
    DEFINE BUTTON oBtn13 OF oBar1 RESOURCE "HRTODO"  PROMPT "Needs" TOOLTIP "View Pending Recommendations" ;
        ACTION ( oRecommend := TRecommend():New( ):ViewActive( oCurrentOrder, oWorkLabor ) )

    DEFINE BUTTON oBtn12 OF oBar1 RESOURCE "ORDER" PROMPT "History" TOOLTIP "View Service History" ;
        ACTION  tServiceHistory():New( ):ShowDetail( 1, oCurrentOrder:vehlic )

       ....   Follow here with similar code for several more buttons on the top bar

AND THIS IS THE START OF THE LOWER BAR:

    // Define the general button bar
    REDEFINE BUTTONBAR oBar2 ID 102 SIZE 60,60 OF oFld:aDialogs[ 1 ] 2015
            oBar2:bClrGrad := aPubGrad
  // Vehicle
    MENU oPop02 POPUP
        MENUITEM "Select/Edit " + sLbl[1] ACTION ( ::SetUnit( ), oCurrentOrder:load(), ;
         nLbTx := oWOclient:clitxl, nPaTx := oWOclient:clitxr, ;
         oWdlg1:SetText( "Workorder: " + ::wrkord + "   Unit: " + ::ordveh + "   Client: " +  ::ordcom ), ;
         cVehDesc := TRIM( oWOunit:vehlic ) + " " + oWOunit:vehyer + " " + TRIM( oWOunit:Vehmak ) + " " + TRIM( oWOunit:Vehmod ), ;
         IIF( oWOclient:clirat = "HLD", MsgInfo( "URGENT - Check client notes" ), ), ;
         oFld:update( ) )
        MENUITEM "View information" ACTION oWOunit := FunShowSvcUnit( oWOunit )
        IF aPrms[2]
            MENUITEM "View photos" ACTION TPhotos():New( ):ShowPhoto( 2, ::vehlic )
        ENDIF
    ENDMENU
    DEFINE BUTTON oBtn21 OF oBar2 ACTION oBtn21:ShowPopup() ;
        RESOURCE sBMP[1] PROMPT sLbl[1] GROUP ;
        MENU oPop02 TOOLTIP ( sLbl[1] + "information" )
  // Client
    MENU oPop03 POPUP
    MENUITEM "Select/Edit Client" ACTION ( ::SetClient( ), ;
      oWdlg1:SetText( "Workorder: " + ::wrkord + "   Unit: " + ::ordveh + "   Client: " + ::ordcom ), ;
        IIF( aSrvUnt[8] = "HLD", MsgInfo( "URGENT - Check client notes" ), ),;
        oFld:update( ), oFld:refresh() )
    MENUITEM "View information" ACTION  oWOclient := FunShowCustomer( oWOclient )  // oWOclient:ShowCustomer( )
   
...  Plus more buttons

 


When building it with FWH 16.11, using xHarbour ( .com ) or Harbor/VC++ 2015 ( MSFT ), or with 16.12 and xHarbour.com, it displays correctly like this:

Image

When building it with FWH 16.12 Harbour/MSVC 2015, we get this:

Image

IN ALL BUILDS, THE EXACT SAME FILES ARE USED, EXCEPT FWH VERSION, THE EXACT SAME CODE IS COMPILED, AND THE SAME DATA SOURCE IS USED. THE ONLY DIFFERENCE IS THE MICROSOFT / HARBOUR BUILD USING 16.12.

In addition, in other cases, sometimes an xbrowse may not display ... showing only the very first cell with the rest of the space being blank, and at the same time, the text ( prompt ) for the buttons on the bitmap button bar will disappear. Again, these are all problems taking place only in 16.12.
User avatar
TimStone
 
Posts: 2904
Joined: Fri Oct 07, 2005 1:45 pm
Location: Trabuco Canyon, CA USA

Re: Folder SAY background-color is still missing ?

Postby Antonio Linares » Sun Jan 15, 2017 8:06 am

Tim,

Did you use /FORCE:MULTIPLE ?

No difference ?
regards, saludos

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

Re: Folder SAY background-color is still missing ?

Postby TimStone » Mon Jan 16, 2017 8:49 pm

That IS the build using FORCE:MULTIPLE ...
Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
User avatar
TimStone
 
Posts: 2904
Joined: Fri Oct 07, 2005 1:45 pm
Location: Trabuco Canyon, CA USA

Re: Folder SAY background-color is still missing ?

Postby Antonio Linares » Tue Jan 17, 2017 9:50 am

so it keeps failing, right ?
regards, saludos

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

Re: Folder SAY background-color is still missing ?

Postby TimStone » Tue Jan 17, 2017 7:44 pm

Yes ... right now I have put 16.12's xbrowse in my build file, and use 16.11 to actually do the build. That gives me the seek bar in xbrowse, and all else works fine.

Perhaps the 17.01 release will be OK.

Tim
Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
User avatar
TimStone
 
Posts: 2904
Joined: Fri Oct 07, 2005 1:45 pm
Location: Trabuco Canyon, CA USA

Re: Folder SAY background-color is still missing ?

Postby Antonio Linares » Wed Jan 18, 2017 11:32 am

Tim,

I have emailed you modified FWH libs.

Please try it again using them, thanks
regards, saludos

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

Previous

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 90 guests