FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Windows Phone Installer (WPI) (https://fileforums.com/showthread.php?t=96242)

Razor12911 07-12-2017 11:51

Well you have to use compatible unarc.dll
These protected archives are created using a modified version of arc.exe, for decompression. it's imperative you use a modified version of unarc.dll else you'll keep getting these errors.

bunti_o4u 07-12-2017 12:06

Quote:

Originally Posted by Razor12911 (Post 464695)
Well you have to use compatible unarc.dll
These protected archives are created using a modified version of arc.exe, for decompression. it's imperative you use a modified version of unarc.dll else you'll keep getting these errors.

Pl share the coding for custom scrollbar!

Razor12911 07-12-2017 13:23

What custom scrollbar?

bunti_o4u 08-12-2017 09:03

Quote:

Originally Posted by Razor12911 (Post 464700)
What custom scrollbar?

Scrollbar but like buttons you have created in WPI installer (first post of this thread).

MARCUS HOLLOWAY 08-12-2017 09:48

Quote:

Originally Posted by bunti_o4u (Post 464723)
Scrollbar but like buttons you have created in WPI installer (first post of this thread).

That's based on fmx not inno
For inno setup use
Tscrollbox

heihuanlanhun 18-12-2017 10:09

the Script is error,PLEASE help
 
1 Attachment(s)
If user cancels the installation, setup will roll back changes.but the installed folder is not delete PLEASE help


Here is the Script
Attachment 20414

heihuanlanhun 18-12-2017 10:11

Quote:

Originally Posted by bunti_o4u (Post 464821)
can u provide d script?

can u provide d script?my English is bad,sorry

bunti_o4u 19-12-2017 10:26

Quote:

Originally Posted by heihuanlanhun (Post 465023)
can u provide d script?my English is bad,sorry

This is a bug in the installer though installer deletes all files from the app folder so why are you worried about empty folder. ;)

MMBDON 23-12-2017 11:13

Please provide this suggested file. i.e unarc.dll

Quote:

Originally Posted by Razor12911 (Post 464695)
Well you have to use compatible unarc.dll
These protected archives are created using a modified version of arc.exe, for decompression. it's imperative you use a modified version of unarc.dll else you'll keep getting these errors.

Razor sir, please provide suitable unarc.dll file to decompress FreeArc protected
archievs.

Thank you in advance!

Next time EDIT your post rather then double post

rinaldo 29-12-2017 03:00

fap
 
1 Attachment(s)
Quote:

Originally Posted by MMBDON (Post 465134)
Please provide this suggested file. i.e unarc.dll



Razor sir, please provide suitable unarc.dll file to decompress FreeArc protected
archievs.

Thank you in advance!

Next time EDIT your post rather then double post

--->

omrsaeedfoad 16-01-2018 22:04

How To Use Other Compressors With This Installer Without Freearc, 7Zip And WinRar. Example (Masked Data Compression)

EzzEldin16 18-01-2018 04:49

Explain your question
 
Quote:

Originally Posted by omrsaeedfoad (Post 466008)
How To Use Other Compressors With This Installer Without Freearc, 7Zip And WinRar. Example (Masked Data Compression)

you don't actually use the compressors with script the you just add them so they work together with the script libraries to unpack the archive
And the "mask data compression" is just a batch script not a compressor
it's a script with written lines to work with freearc console application

Sebazz 08-02-2018 13:45

Please i need help. How to add Minimize and Exit Buttons ?. Thanks

rinaldo 09-02-2018 00:45

Code:

//---> Directive
#define ExitButtonLeft = "765"
#define ExitButtonTop = "10"
#define MinimizeButtonLeft = "735"

//End

//---> Files
Source: Resources\MinimizePng.png; DestDir: {tmp}; Flags: dontcopy;
Source: Resources\ExitPng.png; DestDir: {tmp}; Flags: dontcopy;
//End

//---> Code
var
  ExitBtn,MinimizeBtn: HWND;
//End

//---> InitializeSetup
ExtractTemporaryFile('MinimizePng.png');
ExtractTemporaryFile('ExitPng.png');
//End

procedure MinimizeBtnClick(hBtn:HWND);
begin
  SendMessage(WizardForm.Handle,$112,61472,0);
end;

procedure CloseBtnClick(hBtn:HWND);
begin
  WizardForm.CancelButton.Click;
end;

//---> InitializeWizard
ExitBtn:=BtnCreate(WizardForm.Handle,{#ExitButtonLeft},{#ExitButtonTop},23,23,ExpandConstant('{tmp}')+'\ExitPng.png',0,False);
BtnSetEvent(ExitBtn,BtnClickEventID,WrapBtnCallback(@CloseBtnClick,1));
BtnSetCursor(ExitBtn,GetSysCursorHandle(32649));

MinimizeBtn:=BtnCreate(WizardForm.Handle,{#MinimizeButtonLeft},{#ExitButtonTop},23,23,ExpandConstant('{tmp}')+'\MinimizePng.png',0,False);
BtnSetEvent(MinimizeBtn,BtnClickEventID,WrapBtnCallback(@MinimizeBtnClick,1));
BtnSetCursor(MinimizeBtn,GetSysCursorHandle(32649));
//End


MMBDON 16-02-2018 21:42

Quote:

Originally Posted by rinaldo (Post 465329)
--->

Thank you very much Rinaldo sir. I'll include this basic script in WPI.


All times are GMT -7. The time now is 23:44.

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