Page 1 of 1

.

Posted: Thu Jun 12, 2003 7:31 pm
by Rolands
removed

Posted: Thu Jun 12, 2003 7:40 pm
by Berikco
you must also copy the manifest file to the other XP machine
there is a YourProgrameName.manifest file where you compile the program

.

Posted: Thu Jun 12, 2003 7:55 pm
by Rolands
removed

Posted: Thu Jun 12, 2003 8:09 pm
by tkruk
I had the same problem, but with BlitzBasic. I think the solution is
the same in this case...

The best way to do this is to use a program like Resource Hack.
<a href="http://delphi.icm.edu.pl/ftp/tools/ResHack.zip" target="_blank">Download it from here</a><BR><BR>
Then make a text file in notepad (or whatever). Call it manifest.txt
Enter this text into it:

Code: Select all

<?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="Divination" type="win32" />
<description>Divination</description>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" language="*" processorArchitecture="*" publicKeyToken="6595b64144ccf1df"/>
    </dependentAssembly>
</dependency>
</assembly>
Then you do the following with ResourceHacker:<BR>

Use Resource Hack open your exe and add a new resource, open the manifest.txt...

Resource Type : 24
Resource Name : 1
Resource Language : 1033

Save your exe and have fun you just made your embedded XP Manifest....

.

Posted: Thu Jun 12, 2003 8:57 pm
by Rolands
removed

Posted: Thu Jun 12, 2003 9:17 pm
by darklordz
The PureBasic Compiler creates an additional hidden file named filename.exe.manifest include this in your distro. Of use reshack to embed this file into ur project....

File > add new resource > Select manifest > 24 : 1 : 1036

Posted: Fri Jun 13, 2003 10:23 am
by dige
@Rolands: If you able to read german language, you can use the tool: STupX => http://www.sunset-team.de/download

There are a lot of features:
- compiles any .pb - source
- scan for header tags to generate a fileinfo
- compiles the XP-style ressource into the exe ( you dont need any longer the boring manifest file )
- compress the executable with upx
- protect the executable with upxs

.. but at this time only in german ... sorry!

cya dige

Posted: Fri Jun 13, 2003 7:33 pm
by ricardo
dige wrote:@Rolands: If you able to read german language, you can use the tool: STupX => http://www.sunset-team.de/download
Ops! I don't speak german :( Sounds very interesting!!

.

Posted: Sat Jun 14, 2003 10:52 am
by Rolands
removed