I made some changes to my popup.aca file and now it has a new size...how can I figure out what this new size is so that I can report it correctly to VPLST000.XPL...
the line in VPLST000.XPL looks like this
<ApplicationResource src="file:///dvddisc/ADV_OBJ/popup.aca" priority="1" multiplexed="false" size="1165284" description="archive"/>
Since I made changes I know the new size is greater than this...and I believe this discrepency is causing my errors on play. Usually I would just watch my debugger while I emulate to see what the new reported size should be...debugger is nice as it tells you there is an error and what size the offending file is.
Its wierd cause the size of the popup.aca as reported by windows is 920K...this translates to 1165284
So I need a conversion on the new popup.aca wich windows reports as 944k

Size of .aca files...as seen by VPLST000.XPL
Kartit
Find the line that looks like: Size: 64.5 KB (66,048 bytes)
The number you want is in the parenthesis - 66,048 bytes
Remove the comma, and byte text and you're left with:
66048
Now your Application Resource line should read:
<ApplicationResource src="file:///dvddisc/ADV_OBJ/popup.aca" priority="1" multiplexed="false" size="66048" description="archive"/>
Hasan9552
bhavu