|
Post by Macaos on Jul 13, 2004 5:56:17 GMT -5
Hi , How to I make My own stub , with company logo and so on ...
regards Kim Pedersen Macaos/elprint Development
|
|
|
Post by Kevin on Jul 18, 2004 11:25:16 GMT -5
Sorry for the delay, I've been out this week...
The easiest way, using VCL is to just create your application such that it accesses a zip file normally. Once you have the application working like you want it to, just change the code that opens the zip file, to open Application.ExeName instead. Now compile it and attach your zip file to the exe file. You can use VCLZip.MakeSFX or VCLZip.MakeNewSFX, or you can use VCLZip's Zip Utility Example to attach it for you.
Once you have the zip file attached to the exe file, it will open itself up as a zip file.
|
|
|
Post by Macaos on Jul 19, 2004 5:34:57 GMT -5
Sorry , I did explain myself bad .
I want to take a windows stub + a zip file -> and merge them to a sfx on a linux pc. (because all our download servers are linux) result is a sfx file which can be opened in windows enviroment...
I did made a compare of a file where I just did make the copy/b and a real sfx made with your makesfx command. I seem to be only the header , that u are adjusting with the size of the stub . Is that not something which are easy to extract out of the source and make kylix compatible ?
regards kim
|
|
|
Post by Tony Caduto on Nov 16, 2005 16:11:10 GMT -5
You can do this on linux with the linux supplied zip program like so:
cat unzipsfx.exe yourzip.zip > yourDOSzip.exe // create the SFX archive zip -A yourDOSzip.exe
You can do this with Kylix by using the libc.system command.
|
|