View Full Version : Presenting Xtreme Zipper!
mz241508
01-12-2007, 10:23 AM
i have created a project that allows you to create a zip file and extract a zip file.
so check it out and help me improve my project.
thanks for looking!
Here is the link:
Download:) (http://www.freewebs.com/psp-x/Xtreme%20Zipper%21.exe)
Right Click - Save target as
RizlaUK
01-12-2007, 11:26 AM
mmm, i seem to be having some trouble downloading, even with save as
anyone else have trouble downloading ?
TristanD
01-12-2007, 01:46 PM
mz21..... get rid of th ! in the filename.....
TristanD
01-12-2007, 01:50 PM
uhhm,, would you like to share the .apz with us.. id like to give it a fancy gui ;)
i like it, i've made a similar program:yes :D :yes
mmm, i seem to be having some trouble downloading, even with save as
anyone else have trouble downloading ?
Yes i have
bobbie
01-12-2007, 02:52 PM
Mirror:
http://rapidshare.com/files/11419310/Xtreme_Zipper.zip.html
RizlaUK
01-13-2007, 10:43 AM
mmm, i seem to be having trouble connecting to rapidshare.com, wich is a pain in the but as i have a account with them, guess thay are having the same probs as rapidshare.de used to get,
i will get to try your Xtreme Zipper sooner or later, lol
bobbie
01-13-2007, 12:30 PM
better link for you maybe?
http://www.mytempdir.com/1165015
RizlaUK
01-13-2007, 01:12 PM
Now i got it
hey thats a nice tool, well done
mz241508
01-13-2007, 06:35 PM
Im really sorry about the download issue, i will upload it in a zip file on Sendspace!
I have updated my project by adding:
* file browser in
* background
* few action changes
If anyone have ideas to improve it, please free to ask.
Here is the download link:
Download (http://www.sendspace.com/file/e5y9gg) :yes
RizlaUK
01-13-2007, 07:32 PM
Looking good :yes
no real comments apart from, well done, its shapeing up to be a nice little zip app
mz241508
01-14-2007, 05:13 PM
Another Update, includes:
* view file function
* vista style button
* replace the input with combobox in main page
* added menu bar
here is the download link:
Download :yes (http://www.sendspace.com/file/fu0z3s)
TristanD
01-14-2007, 11:58 PM
can u please drop the apz here?
bobbie
01-15-2007, 02:02 AM
I guess if he wants to give out the program he will .
It doesn't look good asking for something like that I think.
mz241508
01-15-2007, 10:37 AM
if you guys didnt notice, but there is an bug on the listbox that contains the folders in it.
The problem is, a error message comes up when you enter folder that contains no folders.:huh
can anyone please help fix this function, this is the current function i use:
lc = ListBox.GetCount("ListBox3");
if lc == 0 then
Dialog.Message("", "There are no folders in this directory.", MB_OK, MB_ICONSTOP, MB_DEFBUTTON1);
else
selected = ListBox.GetSelected("ListBox3");
for j,k in selected do
result = ListBox.GetItemData("ListBox3", k)
folder = result
fu() -- updates the files
uio() -- updates the folders
end
end
AlexSugar
01-15-2007, 11:19 AM
My suggest to all :
Please use the Key Events to control the application with a keyboard. This will make the application much quicker!
Think about :
CREATE
DELETE
and
EXTRACT
Buttons! Give for every of them a special key!
RizlaUK
01-17-2007, 08:12 AM
change this bit
if lc == 0 then
Dialog.Message("", "There are no folders in this directory.", MB_OK, MB_ICONSTOP, MB_DEFBUTTON1);
else
to this
if lc == 0 then
Dialog.Message("", "There are no folders in this directory.", MB_OK, MB_ICONSTOP, MB_DEFBUTTON1);
Application.ExitScript();
else
and it should fix the error
mz241508
01-17-2007, 10:37 AM
thanks for the help but that didnt fix it because posted the wrong function, sorry for that...Silly me :p
the function is(gets the folders into a listbox):
function uio()
--Clear Listbox
ListBox.DeleteItem("ListBox3", -1);
--Search for folders
file = Folder.Find(_DesktopFolder, "**", false);
for j,file_path in file do
--get the file name
file_path2 = String.Right(file_path, (String.Length(file_path) - String.ReverseFind(file_path, "\\", true)));
--add folders to listbox
ListBox.AddItem("ListBox3", file_path2, file_path);
ListBox.SelectItem("ListBox3", 1);
end
ListBox.SetUpdate("ListBox3", true);
end
i think the way to fix it is to have a ELSE function type...mightbe
RizlaUK
01-17-2007, 10:48 AM
here, try this, i havent tested it but it looks right to me
function uio()
--Clear Listbox
ListBox.DeleteItem("ListBox3", -1);
--Search for folders
file = Folder.Find(_DesktopFolder, "**", false);
if file then
for j,file_path in file do
--get the file name
file_path2 = String.Right(file_path, (String.Length(file_path) - String.ReverseFind(file_path, "\\", true)));
--add folders to listbox
ListBox.AddItem("ListBox3", file_path2, file_path);
end
ListBox.SelectItem("ListBox3", 1);
end
ListBox.SetUpdate("ListBox3", true);
end
i added a "if" statment and moved the ListBox.SelectItem("ListBox3", 1); out of the loop
mz241508
01-18-2007, 09:54 AM
thanks rizlaUK
PROPHET07
04-23-2007, 05:49 PM
Could you add to it a bit were you can choose to split the zip file up as most places wont allow a single file to be uploaded......say
Option1)[checkbox] 15,000,000 Bytes = 15 megs
Option2)[checkbox] 50,000,000 Bytes = 50 megs
Option3)[checkbox] 100,000,000 Bytes = 100 megs
Just an idea....Would be great for me Using Rapidshare....
Or would it be possible to release your source files so others can try learning from it
I wanted to do something similar to this but using WinRAR instead as i prefer the compression methods used to WinZIP...any pointers, help or source code from yours would be massively welcome
PROPHET07
03-05-2008, 07:44 AM
Could you please post the Apz file for your project..:) I would really like to get it to work with the Rar.dll that is free or something else if possible..
RizlaUK
03-06-2008, 07:55 AM
you can not use the rar.dll directly with AMS, you will need to make a wrapper dll......same for 7zip.dll
PROPHET07
03-07-2008, 03:20 AM
Is it still possible for the original maker of the file to upload the Source files please..Its a great bit of work & I would like to learn from it..If they ever do decide to add Rar that would be a bonus..You never know it may happen one day..:rolleyes
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.