FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

Viper645 07-05-2017 10:39

Is there any way to use CallBackCtrl.dll instead of InnoCallBack.dll? I always ger an error saying cannot import file.

ATL4NTYS 08-05-2017 05:28

Protect from decompile
 
Any method to protect my setup.exe from decompile by inno unpackers/decompilers ? :) thx in advance..

78372 08-05-2017 07:11

Quote:

Originally Posted by ATL4NTYS (Post 458656)
Any method to protect my setup.exe from decompile by inno unpackers/decompilers ? :) thx in advance..

http://fileforums.com/showpost.php?p...8&postcount=10

It's probably a good solution, but not the best solution though :)

ATL4NTYS 10-05-2017 03:23

Any better way.? simpliest..?

78372 10-05-2017 04:10

This is a strong way. There are no more better way than this to use with inno setup ee2

Danziel123 14-05-2017 23:38

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 :)

78372 15-05-2017 01:47

Add this line to your [Setup] section

Usepreviousappdir=no

Gupta 19-05-2017 06:32

Quote:

Originally Posted by Viper645 (Post 458652)
Is there any way to use CallBackCtrl.dll instead of InnoCallBack.dll? I always ger an error saying cannot import file.

Make surre you have extracted Callbackctrl.dll before initialising the wizard

Cesar82 26-05-2017 06:48

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;

This code compiled in Dephi 2009 Lite works perfectly, but if compiled in delphi 7 does not work. So far I've noticed that the Chr or Char function does not work correctly for unicode characters if compiled in Inno Setup or in Delphi 7. Compiling in Delphi 2009 works fine.
http://i.imgur.com/RZ1y0dV.jpg
Delphi code to compare
https://mega.nz/#!sZYGWTJJ!WnaRzdNsz...c9XM9AqdwF60aA

Is there a way that works?
Thanks!

Viper645 29-05-2017 07:07

Anyone can give me the download links of all of the old versions of ISDone.dll with scripts?

nizcoz 02-06-2017 14:24

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...


nizcoz 10-06-2017 06:54

How to use facompress?

Bulat 10-06-2017 08:06

run fazip w/o parameters - it will show cmdline syntax :)

nizcoz 10-06-2017 11:13

Quote:

Originally Posted by Bulat (Post 459635)
run fazip w/o parameters - it will show cmdline syntax :)

Could you explain me better how to use facompress? I do not understand this. Thanks!!!

pakrat2k2 10-06-2017 11:32

Quote:

Originally Posted by nizcoz (Post 459646)
Could you explain me better how to use facompress? I do not understand this. Thanks!!!

run cmd.exe , navigate to where fazip is & type in fazip.exe name, should give list of commands.


All times are GMT -7. The time now is 15:11.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com