Page 1 of 1
Manifest for Windows Vista?
Posted: Wed Aug 20, 2008 6:35 pm
by m4u
hi
Is need Manifest files also for applications that must run on Win Vista?
bye
Manifest for Windows Vista?
Posted: Wed Aug 20, 2008 8:00 pm
by Marco
Hi found this at the internet:
<?xml version="1.0" encoding="utf-8" ?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0"
processorArchitecture="X86"
name="Vista UAC Compat.Application"
type="win32" />
<description>WindowsVistaReadiness Application</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
I hope you can do something with it.
Manifest for Windows Vista?
Posted: Thu Aug 21, 2008 7:24 am
by m4u
Sorry, but what can i do with this code? :o
I`m very newbie :P
Manifest for Windows Vista?
Posted: Thu Aug 21, 2008 11:24 am
by Marco
You can copy the code into a txt file (notepad) and then rename that file
ie your application is called myapp.exe
then rename the txt file to myapp.exe.manifest.
Put this file into the same folder as the application is.
WHY?
Under xp and vista fnxbasic will work but do not use the themes of the os to do that you will need a manifest file to tell windows the fnxbasic must use the themes.
But you do not really need it to run your application.
best regards marco
Manifest for Windows Vista?
Posted: Thu Aug 21, 2008 2:34 pm
by m4u
thanks Marco, i understand!