#1291
|
|||
|
|||
Is there any way to use CallBackCtrl.dll instead of InnoCallBack.dll? I always ger an error saying cannot import file.
|
Sponsored Links |
#1292
|
|||
|
|||
![]()
Any method to protect my setup.exe from decompile by inno unpackers/decompilers ?
![]() |
#1293
|
|||
|
|||
Quote:
It's probably a good solution, but not the best solution though ![]()
__________________
NOT AVAILABLE |
#1294
|
|||
|
|||
Any better way.? simpliest..?
|
#1295
|
|||
|
|||
This is a strong way. There are no more better way than this to use with inno setup ee2
__________________
NOT AVAILABLE |
The Following User Says Thank You to 78372 For This Useful Post: | ||
Razor12911 (10-05-2017) |
#1296
|
|||
|
|||
Excuse me.
I want to ask. I make simple installer a game with inno setup 5.5.9. The installation work perfect. But the problem is i want install another game, but i cant't change the installation folder. Installation folder will follow first game installation. What's worng with my scrip? Or version of inno setup? First before i change my hardware from intel to amd i can choose the installation folder. Now at amd i can't change the installation folder. Sorry for my bad english ![]() Thank you before ![]() |
#1297
|
|||
|
|||
Add this line to your [Setup] section
Usepreviousappdir=no
__________________
NOT AVAILABLE |
#1298
|
|||
|
|||
Make surre you have extracted Callbackctrl.dll before initialising the wizard
__________________
XD |
#1299
|
||||
|
||||
Help with the code...
Advanced users, I need help ...
I need help with with an adaptation of the code below to work inside the inno setup. Code:
function ConvertLanguageName(Const Value: String): String; var L: Integer; WideCharCode: Word; C: Char; begin Result := ''; L := 1; while L <= Length(Value) do begin if Value[L] = '<' then begin //WideCharCode := Ord( StrToInt('$' + Copy(Value, L + 1, 4))); WideCharCode := StrToInt('$' + Copy(Value, L + 1, 4)); L := L + 6; end else begin WideCharCode := Ord(Value[L]); L := L + 1; end; C := Chr(WideCharCode); SetLength(Result, Length(Result) + 1); Result[Length(Result)] := C; end; end; function InitializeSetup(): Boolean; begin MsgBox(ConvertLanguageName2('<0420><0443><0441><0441><043a><0438><0439>'), mbInformation, MB_OK); //Pусский end; ![]() Delphi code to compare https://mega.nz/#!sZYGWTJJ!WnaRzdNsz...c9XM9AqdwF60aA Is there a way that works? Thanks! |
#1300
|
|||
|
|||
Anyone can give me the download links of all of the old versions of ISDone.dll with scripts?
|
#1301
|
|||
|
|||
Is it possible to change the position (top) of one of the status messages of the installation? (only one)
Code:
; *** Installation status messages StatusClosingApplications=Closing applications... StatusCreateDirs=Creating directories... StatusExtractFiles=Completing the installation... StatusCreateIcons=Creating shortcuts... StatusCreateIniEntries=Creating INI entries... StatusCreateRegistryEntries=Creating registry entries... StatusRegisterFiles=Registering files... StatusSavingUninstall=Saving uninstall information... StatusRunProgram=Finishing installation... StatusRestartingApplications=Restarting applications... StatusRollback=Rolling back changes... |
#1302
|
|||
|
|||
How to use facompress?
|
#1303
|
|||
|
|||
run fazip w/o parameters - it will show cmdline syntax
![]() |
#1304
|
|||
|
|||
Could you explain me better how to use facompress? I do not understand this. Thanks!!!
|
#1305
|
||||
|
||||
run cmd.exe , navigate to where fazip is & type in fazip.exe name, should give list of commands.
|
![]() |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |