clausole When...Hide a size of Dialog - strange - RESOLVED

Re: clausole When...Hide a size of Dialog - strange

Postby Silvio.Falconi » Wed Oct 12, 2022 7:50 am

I'm using the Winxp rmanifest ( folder fwh ) on Windows Seven and Windows 10

xplook.rc
Code: Select all  Expand view
1 24 "WindowsXP.Manifest"


WindowsXP.Manifest
Code: Select all  Expand view
<?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="X86"
    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="X86"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>
 

Image
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
Silvio.Falconi
 
Posts: 6772
Joined: Thu Oct 18, 2012 7:17 pm

Re: clausole When...Hide a size of Dialog - strange

Postby karinha » Wed Oct 12, 2022 12:33 pm

Dear Silvio, you are really right, they are reporting on FiveWin Brasil that they have problems with MANIFEST with Windows 10 and Windows 11, and that Fivetech has not yet positioned itself on the matter. Please test this MANIFEST modified by Giovanny Vecchy and let us know what happens.

Estimado Silvio, tienes mucha razón, están informando en FiveWin Brasil que tienen problemas con MANIFEST con Windows 10 y Windows 11, y que Fivetech aún no se ha posicionado al respecto. Pruebe este MANIFEST modificado por Giovanny Vecchy y háganos saber qué sucede.

http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34483

http://fivewin.com.br/index.php?/topic/27210-arquivo-manifest-para-windows-10/

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange

Postby Silvio.Falconi » Thu Oct 13, 2022 8:31 am

karinha wrote:Dear Silvio, you are really right, they are reporting on FiveWin Brasil that they have problems with MANIFEST with Windows 10 and Windows 11, and that Fivetech has not yet positioned itself on the matter. Please test this MANIFEST modified by Giovanny Vecchy and let us know what happens.

Estimado Silvio, tienes mucha razón, están informando en FiveWin Brasil que tienen problemas con MANIFEST con Windows 10 y Windows 11, y que Fivetech aún no se ha posicionado al respecto. Pruebe este MANIFEST modificado por Giovanny Vecchy y háganos saber qué sucede.

http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34483

http://fivewin.com.br/index.php?/topic/27210-arquivo-manifest-para-windows-10/

Regards, saludos.



with
Code: Select all  Expand view
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">

  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
      <application>
        <!--This Id value indicates the application supports Windows 10 functionality-->
          <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
        <!--This Id value indicates the application supports Windows Vista functionality -->
          <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
        <!--This Id value indicates the application supports Windows 7 functionality-->
          <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
        <!--This Id value indicates the application supports Windows 8 functionality-->
          <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
        <!--This Id value indicates the application supports Windows 8.1 functionality-->
          <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
      </application>
  </compatibility>

  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
    <security>
      <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
        <requestedExecutionLevel  level="highestAvailable" uiAccess="false" />  
       </requestedPrivileges>
    </security>
  </trustInfo>

<assemblyIdentity
    version="1.0.0.0"
    processorArchitecture="X86"
    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="X86"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>
 


the error is the same
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
Silvio.Falconi
 
Posts: 6772
Joined: Thu Oct 18, 2012 7:17 pm

Re: clausole When...Hide a size of Dialog - strange

Postby Silvio.Falconi » Thu Oct 13, 2022 8:50 am

this morning I not see the theme on Button class and i use windows 10
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
Silvio.Falconi
 
Posts: 6772
Joined: Thu Oct 18, 2012 7:17 pm

Re: clausole When...Hide a size of Dialog - strange

Postby karinha » Thu Oct 13, 2022 1:45 pm

Dear Silvio, the same problem was reported by FiveWin Brasil staff. Talk to Mister Navarro to see if he can find a solution. Now, if it's a defect of Windows 10 and 11, I don't see a way out.

Estimado Silvo, el mismo problema fue informado por el personal de FiveWin Brasil. Habla con el señor Navarro para ver si puede encontrar una solución. Ahora bien, si es un defecto de Windows 10 y 11, no le veo salida.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange

Postby karinha » Thu Oct 13, 2022 4:43 pm

WINDOWS.MANIFEST

Silvio, Please: test with this model and report if anything changes:

Silvio, por favor: prueba con este modelo e informa si algo cambia:

Code: Select all  Expand view

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">

  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
      <application>
        <!--This Id value indicates the application supports Windows Vista functionality -->
          <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
        <!--This Id value indicates the application supports Windows 7 functionality-->
          <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
        <!--This Id value indicates the application supports Windows 8 functionality-->
          <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
        <!--This Id value indicates the application supports Windows 8.1 functionality-->
          <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
      </application>
  </compatibility>

  <assemblyIdentity type="win32"/>
                    name="FiveTech Software.FiveWin.32bits"
                    version="6.0.0.0"
                    processorArchitecture="x86"
                    publicKeyToken="6595b64144ccf1df"
  />
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32"/>
                        name="Microsoft.Windows.Common-Controls"
                        version="6.0.0.0"
                        processorArchitecture="X86"
                        publicKeyToken="6595b64144ccf1df"
                        language="*"
      />
    </dependentAssembly>
  </dependency>
</assembly>
 


OR IF IT IS A AMD PROCESSOR:

O SI ES UN PROCESADOR AMD:

processorArchitecture="amd64"


Gracias, thanks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange

Postby karinha » Thu Oct 13, 2022 5:52 pm

Silvio, please ADD:

Code: Select all  Expand view

        <!-- Windows 10 -->
        <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
 


look this:

https://github.com/eladkarako/manifest/tree/master/example_manifests

WOW!!

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange

Postby karinha » Thu Oct 13, 2022 7:21 pm

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange

Postby Silvio.Falconi » Fri Oct 14, 2022 6:31 am

FOUND THE PROBLEM


DEFINE DIALOG oDlg ;
SIZE nWidth, nHeight PIXEL ;
TITLE cTitle ;
COLOR CLR_BLACK,CLR_WHITE

instead of

DEFINE DIALOG oDlg ;
SIZE nWidth, nHeight PIXEL ;
TITLE cTitle ;
COLOR CLR_BLACK,CLR_WHITE TRANSPARENT


it seems TRANSPARENT give problem


the resource I used that of Fwh folder ( my realease December 2021 to March 2022)

Image



I put TRANSPARENT ONLY on SAY CONTROLS and run ok
Image
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
Silvio.Falconi
 
Posts: 6772
Joined: Thu Oct 18, 2012 7:17 pm

Re: clausole When...Hide a size of Dialog - strange - RESOLVED

Postby Silvio.Falconi » Fri Oct 14, 2022 8:15 am

Now run ok

Image
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 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
User avatar
Silvio.Falconi
 
Posts: 6772
Joined: Thu Oct 18, 2012 7:17 pm

Re: clausole When...Hide a size of Dialog - strange - RESOLVED

Postby karinha » Fri Oct 14, 2022 1:22 pm

Dear Silvio, Congratulations. Even so, please test with this MANIFEST model using COLORS in the controls, please.

Estimado Silvio, Felicitaciones. Aun así, prueba con este modelo MANIFEST usando COLORES en los controles, por favor.


WINDOWS10.MANIFEST

Code: Select all  Expand view

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <dependency optional="yes">
    <dependentAssembly>
      <assemblyIdentity name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0" publicKeyToken="6595b64144ccf1df"
        type="win32" processorArchitecture="*" language="*" />
    </dependentAssembly>
  </dependency>
  <application xmlns="urn:schemas-microsoft-com:asm.v3">
     <windowsSettings> <dpiAware      xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>                     </windowsSettings>
     <windowsSettings> <dpiAwareness  xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2,PerMonitor</dpiAwareness> </windowsSettings>
     <windowsSettings> <longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>                   </windowsSettings>
     <windowsSettings> <heapType      xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>                 </windowsSettings>
  </application>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="asInvoker" uiAccess="false" />
      </requestedPrivileges>
    </security>
  </trustInfo>
  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
    <application>
      <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
      <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
      <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
      <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
      <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
    </application>
  </compatibility>
</assembly>
 


Gracias, thanks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: clausole When...Hide a size of Dialog - strange - RESOLVED

Postby karinha » Fri Oct 14, 2022 2:11 pm

Dear Silvio, complete download using WINDOWS10.MANIFEST. Test please.

Estimado Silvio, descarga completa usando WINDOWS10.MANIFEST. prueba por favor.

Link:

https://mega.nz/file/cMkFwAQa#km42FPaVgu3ko93BuYTsdX9aJFtxkyWVGPmsQ4aSd38

Gracias, thanks.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7214
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Previous

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Rick Lipkin and 85 guests