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)

Razor12911 03-03-2013 09:57

write {src}\Data1.cab

{src} is for source.

spawniectes 03-03-2013 11:10

Know I got this error

http://img26.imageshack.us/img26/3057/errortlu.jpg

pakrat2k2 03-03-2013 11:22

in setup.ini you need to add
[InstallOptions]
PrecompVer=inside
.
.
.

[ExtractSettings]
FreeArcFile1=Data1.cab;DestDir:{app};Disk:1;
FreeArcFile2=Data2.cab;DestDir:{app};Disk:2;


for example, look to Fabioddq's Devil May Cry topic it uses both. ( look at ISS script & setup.ini. Also in setup.cab you need arc.ini in root.

spawniectes 03-03-2013 15:22

Quote:

Originally Posted by pakrat2k2 (Post 414773)
in setup.ini you need to add
[InstallOptions]
PrecompVer=inside
.
.
.

[ExtractSettings]
FreeArcFile1=Data1.cab;DestDir:{app};Disk:1;
FreeArcFile2=Data2.cab;DestDir:{app};Disk:2;


for example, look to Fabioddq's Devil May Cry topic it uses both. ( look at ISS script & setup.ini. Also in setup.cab you need arc.ini in root.

Thanks once again pakrat2k2, now it's working.

Andre Jesus 04-03-2013 05:37

Quote:

Originally Posted by Andre Jesus (Post 414224)
Hi everybody.

1. I want to avoid my installer run if the same already is running.
Something like the message "Your Setup is Already Running".
How can i make this?

2. Currently i use this option to my border.
Code:

BorderStyle:= bsDialog;
But i want remove only top border like the example picture below.
How can i make this?

3. How can make png button on Inno Setup? Give me a sample example.

Could someone help me with these three questions abouve?
Thanks in advance.

altef_4 08-03-2013 10:33

Quote:

Originally Posted by Andre Jesus (Post 414804)
Could someone help me with these three questions abouve?
Thanks in advance.

1. Use this
Code:

[setup]
AppMutex=UniqueNAME

[_code]
procedure InitializeWizard;
begin
CreateMutex('UniqueNAME');
end;


danswano 09-03-2013 11:35

Hello, how to modify the about message to become like this:
http://i.stack.imgur.com/qfQMy.png

I've tried this code:
Quote:

procedure ShowAboutBox;
begin
MsgBox('Hello, I''m your about box!', mbInformation, MB_OK);
end;
but it's not working.

Andre Jesus 10-03-2013 04:09

Quote:

Originally Posted by altef_4 (Post 415026)
1. Use this
Code:

[setup]
AppMutex=UniqueNAME

[_code]
procedure InitializeWizard;
begin
CreateAppMutex('UniqueNAME');
end;


Thank you for your response, however it return the mesage below:

Unknown identifer 'CreateAppMutex'

Andre Jesus 10-03-2013 12:58

1 Attachment(s)
Quote:

Originally Posted by altef_4 (Post 415137)
sorry, my mistake, change "CreateAppMutex" to "CreateMutex".

Thank you so much for your help.
Work pefectly.

I can modify/customize this message and button size? How?

Attachment 5791

Andre Jesus 10-03-2013 23:49

2 Attachment(s)
How do the buttons do not appear on every screen?
The description of the buttons is not showing up, how to fix this?

Attachment 5795

Attachment 5796

I appreciate the help in advance.

altef_4 11-03-2013 05:39

1 Attachment(s)
Quote:

Originally Posted by Andre Jesus (Post 415207)
How do the buttons do not appear on every screen?
The description of the buttons is not showing up, how to fix this?

Attachment 5795

Attachment 5796

I appreciate the help in advance.

example (your test script with my fix)

Andre Jesus 11-03-2013 09:47

1 Attachment(s)
Quote:

Originally Posted by altef_4 (Post 415226)
example (your test script with my fix)

Thank you for your help altef_4.
Work fine!

Attachment 5801

danswano 11-03-2013 11:51

How to skip the Start Menu Folder dialog please?

altef_4 11-03-2013 12:08

Quote:

Originally Posted by danswano (Post 415248)
How to skip the Start Menu Folder dialog please?

you mean "select program group page"? If yes then
Code:

[setup]
DisableProgramGroupPage=yes

or in code section
Code:

function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID = wpSelectProgramGroup) then result:=true;
end;


danswano 11-03-2013 12:32

Thank you, what about the Ready to Install dialog please? :)


All times are GMT -7. The time now is 08:28.

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