FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Themes support on FWH 64
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Themes support on FWH 64
Posted: Thu May 29, 2014 06:10 AM
Suposedly this change inside WindowsXP.Manifest is enough to support both 32 and 64 bits:

Code (fw): Select all Collapse
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="1.0.0.0"
    processorArchitecture="*"
    name="FiveTech Software.FiveWin.32bits"
    type="win32"
/>
<description>Your application description here.</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.Windows.Common-Controls"
            version="6.0.0.0"
            processorArchitecture="*"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>


Please notice:

processorArchitecture="*"

instead of (modified in two lines):

processorArchitecture="x86"

The above is as per Microsoft instructions:
http://msdn.microsoft.com/en-us/library/windows/desktop/bb773175(v=vs.85).aspx

Anyhow, it does not seem to work properly. Robb, have you been able to make it work ? thanks :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: Themes support on FWH 64
Posted: Fri May 30, 2014 09:50 AM

Antonio,
it run also with fwh 32 bit on pc windows seven 64 bit or only with fwh64 ?

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Themes support on FWH 64
Posted: Fri May 30, 2014 09:54 AM

Silvio,

Using "*" should work fine with both FWH 32 and 64.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Themes support on FWH 64
Posted: Fri May 30, 2014 11:42 AM

I can confirm it: it works fine on both 32 and 64 bits using "*"

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion