Quote:
Originally Posted by sirshi007
however, thx for help.
the installer started extracting.
but it says "It is not found any file specified for ISArcExtract"
plzz help!!
|
You have to configure Archives.ini
Change the filename and also enter progress value
example
if you want to extract data1.bin and data2.bin then u have to configure like this
if not ArcExtract(60,'data1.bin') then break;
if not ArcExtract(40,'data2.bin') then break;
so totally ArcExtract is 100
so i just set 60 for data1.bin and 40 for data2.bin so till 60 percent it extract data1.bin and after 60 its extract data2.bin till the end
if u want to extrcat 3 files then configure like this
if not ArcExtract(60,'data1.bin') then break;
if not ArcExtract(20,'data2.bin') then break;
if not ArcExtract(20,'data2.bin') then break;