topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday November 29, 2025, 8:51 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 212 213 214 215 216 [217] 218 219 220 221 222 ... 302next
5401
Post New Requests Here / Re: IDEA: toolbar with spec character links
« Last post by Curt on August 30, 2008, 12:14 PM »
I am very pleased to see that it is working for you, Phil, and to some degree also to you, lanux. On my setup there is no toolbar at all, so I never get to test the pasting in the first place.

I have other AHK scripts, and they're are working fine.

Edited:
No error messages, or anything else for that matter.
5402
Post New Requests Here / Re: IDEA: Customizable Unicode character paster
« Last post by Curt on August 30, 2008, 11:52 AM »
This is close to being awesome!  :up:

I might be able to figure out how to transform & transfer the buttons from 1.2, but I am confused about how to calculate the new window size and such. Are you planing to explain this subject in a more clear way in the next Config.ini? Or are you maybe already planing to make up a big brother version with easy "room" for many more buttons / characters? I merely wanted to also add some card and music signs:

My copy of version 1.2:

1.2.gif

5403
Post New Requests Here / Re: IDEA: Customizable Unicode character paster
« Last post by Curt on August 30, 2008, 06:31 AM »
Can Easy Unicode Paster [EUP] be made support signs like  ♠ ♥ ♦ ♣ ♤ ♡ ♢ ♧ ♩ ♪ ♫ ♬ ؟  please? Diacrit includes these signs but will not tell their NCR/XML numbers, and BabelMap will tell all names but does not contain these, so I have not been able to make EUP show them.

" ؟ " is the Arabic Question Mark = 1567 ;  but EUP will not display it.
5404
Post New Requests Here / Re: IDEA: Customizable Unicode character paster
« Last post by Curt on August 30, 2008, 02:55 AM »
I asked for almost the same feature, and received this answer from DC member skrommel:

Try CharsBar!

Add your own characters to a docked, autohiding toolbar.
Change the settings in the top of the script.

Skrommel

;CharsBar.ahk
; Add your own characters to a docked, autohiding toolbar
;Skrommel @ 2008


chars=abcdefghijklmnopqrstuvwxyzæøåß|ðÞ™
font=Arial
weight=1000
color=000000  ;RRGGBB
size=12
buttonw=20
buttonh=20
xspace=0
yspace=0
dock=top      ; top left right bottom


#NoEnv
#SingleInstance,Force
SetBatchLines,-1
SetWinDelay,0
SetControlDelay,0
SendMode,Input
SetWorkingDir,%A_ScriptDir%
CoordMode,Mouse,Screen

Gui,+LastFound
guiid:=WinExist()

DllCall( "RegisterShellHookWindow", UInt,guiid )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )

building=1
Gui,+AlwaysOnTop +ToolWindow -Resize -Border -Caption
Gui,Margin,0,0
Gui,Font,S%size% W%weight% C%color%,%font%
Loop,% StrLen(chars)
{
  char:=SubStr(chars,A_Index,1)
  ascii:=Asc(char)
  Gui,Add,Button,% "GCLICK W" buttonw " H" buttonh,% char
}
Gui,Show
building=0
Gosub,BUILD
SetTimer,MOUSE,100
SetTimer,HIDE,3000
Return


ShellMessage( wParam,lParam )
{
  Global activeid
  Global guiid
 
  If ( wParam = 4 ) ;  HSHELL_WINDOWACTIVATED=4 ;HSHELL_WINDOWCREATED=1
  {
    If (lParam<>guiid And lParam<>0)
    {
      activeid:=lParam
    }
  }
}


MOUSE:
MouseGetPos,mx,my,mid,mctrl

IfWinExist,ahk_id %guiid%
  WinGetPos,guix,guiy,guiw,guih,ahk_id %guiid%
If (mx>=guix And mx<=guix+guiw And my>=guiy And my<=guiy+guih)
{
  If hiding=1
    SetTimer,HIDE,Off
  hiding=0
}
Else
{
  If hiding=0
    SetTimer,HIDE,1000
  hiding=1
}
If ((my<=monitorTop And dock="top") Or (my>=monitorBottom-1 And dock="bottom") Or (mx<=monitorLeft And dock="left") Or (mx>=monitorRight+1 And dock="right"))
{
  SetTimer,HIDE,Off
  WinShow,ahk_id %guiid%
  hiding=0
}
Return


HIDE:
SetTimer,HIDE,Off
WinHide,ahk_id %guiid%
Return


CLICK:
If A_GuiEvent In Normal,DoubleClick
{
  WinActivate,ahk_id %activeid%
  Send,%A_GuiControl%

;  ControlSendRaw,,%A_GuiControl%,ahk_id %activeid%
}
Return


GuiSize:
If building=1
  Return
If ErrorLevel=1  ;minimized
  Return
Gosub,BUILD
Return


BUILD:
building=1

Sysget,primary,MonitorPrimary
Sysget,monitor,MonitorWorkArea,%primary%

If dock=top
  WinMove,ahk_id %guiid%,,% monitorLeft,% monitorTop,% monitorRight-monitorLeft,% buttonh+yspace
If dock=bottom
  WinMove,ahk_id %guiid%,,% monitorLeft,% monitorBottom-buttonh-yspace,% monitorRight-monitorLeft,% buttonh+yspace ;%
If dock=left
  WinMove,ahk_id %guiid%,,% monitorLeft,% monitorTop,% buttonw+xspace,% monitorBottom-monitorTop
If dock=right
  WinMove,ahk_id %guiid%,,% monitorRight-buttonw-xspace,% monitorTop,% buttonw+xspace,% monitorBottom-monitorTop

WinGet,controls,ControlList
x:=xspace
y:=yspace
Loop,Parse,controls,`n
{
  GuiControl,MoveDraw,%A_LoopField%,X%x% Y%y%
  x:=x+buttonw+xspace-1
  If (x>A_GuiWidth-buttonw-xspace)
  {
    x:=xspace
    y:=y+buttonh+yspace-1
  }
}
building=0
Return
Wow, skrommel. Thanks a lot! I only have one question: What on earth do I do with such a code?  :tellme:
/an IT-analphabetic  :-[
Just go to Autohotkey.com, download and install autohotkey. Then, open notepad, copy-paste that code there and save it as "CharsBar.ahk".
Then just double-click charsbar.ahk :)

Important:
I tried it once but couldn't make it work
- I don't know if the error was on my side, or if anything is wrong with this script.
5405
I wonder if NovaPDF will do this (process/change existing pdfs) printing an existing pdf from a pdf reader...?

I found an old link to PDFcamp Printer Pro (PDF Writer)
- and realized it is "only" $38:

http://www.verypdf.c.../pdfcamp/pdfcamp.htm

PDFcamp(pdf writer) Pro Features
PDFcamp(pdf writer) Pro includes all of the features in PDFcamp(pdf writer), plus:

(...many features listed...)

Option to merge or append to an existing PDF file (insert before the first page or append to the last page)

Supports Text Extraction
The newest version of PDFcamp(pdf writer) supports text extraction from printable documents (excluding graphics and PDF files) while keeping the original page layout. The extracted text can be used to re-construct the document, independent of the software that created the original document, and/or it can be posted to a searchable text database. Text Extract is ideal for archiving form documents, like invoices, statements and reports.

Integrate with Microsoft Office application, Create toolbar and icon in Microsoft Office 97, Office 2000, Office XP, Office 2003 and Office 2007, include Microsoft Excel, FrontPage, PowerPoint, Word, Outlook applications.

They also have a very fine editor @ $90 - http://www.verypdf.c...df-editor/index.html

But it seems in general to be impossible to edit a pdf file at the printing stage.   :(
Edited: I mean, in general I will use a virtual pdf printer when I am at some homepage and read some article. I will click print article, but will very often like to add some info about the page and the author, or a picture not already included. It is seldom that I want to edit an article that I already have saved as a pdf file. So, in most cases my wish is to edit the pdf file already before it is saved from the Internet the first time. This feature seems to be rare or not existing.
 :tellme:
5406
if you have Microsoft Office, you can use JOCR (freeware).

- thanks, lanux, for reminding me. I have JOCR, but had forgotten about it.  :-[

@ Darwin, your question caused a minor panic around here, because I couldn't remember that novaPdf comes from the company Softland (also the maker of Backup4All), so I couldn't find the (censored) folder... So finally I went to Revo_Uninstaller to ask, and realized that I actually have two (almost) identical programs:

softland.gif


- but they are both merely virtual printers, not editors, so I don't know anything about the more expensive version's features. But you can do more with PDF-XChange Viewer, than with novaPdf virtual printer. "I don't know why I have it, I guess it was on sale" is of course much too hard to put it, but my next print-to-pdf -purchase will be of another one:

Searchable.
Aloaha PDF files could be searched for  text-parts.

No special PS or PDF-printerdriver is needed.

http://www.aloaha.co...ware-en/versions.php
-Aloha
- maybe
5407
General Software Discussion / Re: Can someone help me restore my sound?
« Last post by Curt on August 29, 2008, 04:09 PM »
Congrats!!  :up:  :D

- but, ehh..., "uninstall", not "un- and re-install"???
5408
General Software Discussion / Re: Music files 101
« Last post by Curt on August 29, 2008, 03:55 PM »
It should also be noted that the problems you experienced with lack of informations, not are due to the media player itself, but to the place where the media player gather such informations. Gracenote CDDB has more info on old / classical music, than "the others". RealPlayer 11 and iTunes are to my understanding both using Gracenote. But I don't remember where Windows Media Player will go collecting. Maybe you could try installing RealPlayer or iTunes (!!) and record the same CDs that were causing problems the first time, just to see if there are any differences?

Gracenote Customers
  • iTunes uses Gracenote’s CD track identification services.[3]

In addition, Gracenote provides its products to a number of other services including

    * Online services including Yahoo! Music Jukebox, AOL Winamp;
    * Home and Automotive products from Alpine, Bose, Panasonic, Phillips, and Sony;
    * Mobile music applications from Samsung[4], Sony Ericsson (TrackID), KDDI (Japan), KTF (Korea), Musicwave (Europe).
-Wikipedia

In which country are you situated, Sarah? The biggest telephone company in Denmark, YouSee, gives free access to several million tracks, to their customers. Music can be free, it only depends on the circumstances. In this situation the trick for YouSee is to encode the music files with a key which the user can only unlock when connecting to the telephone company's homepage. This way the music is not ours, and not really free, but freely available anyway, when we are online. I am not telling you to upload your new collection, such coding is difficult, but I am merely pointing out that it is too easy to say that it surely must be illegal to upload music.
5409
Found Deals and Discounts / Re: Gizmo gives us Titan Backup for free
« Last post by Curt on August 29, 2008, 03:12 PM »
I forgot to tell about this yesterday:

We've just launched the Titan Backup Community, a place where you can learn new things, share your experience about data security and meet new interesting people:
http://www.titanbackup.com/community/

As the Community is still in Beta, please send us your comments, suggestions, or any bugs you discover. We're inviting you to join us and submit an article and you will receive a $80 gift ( 1 license of a-squared Anti-Malware 3.5 + 1 license of Titan Backup 2.3).

This offer is for the first 200 persons who will register and submit an article in one of the following categories: Titan Backup (with a special subcategory Titan Backup Stories where you can talk about your data backup scenario), Backup&Recovery, Firewalls, Antivirus, Malware, Hardware Security or Mobile Security.

The way you'll be getting your prize will be by sending us an email at info[at]titanbackup[dot]com that will contain the URL of the article, and the subject "Titan Backup Community Prize".

Titan Backup Team,
Neobyte Solutions,
Boerderijstraat 30, 8500 Kortrijk, Belgium
http://www.neobytesolutions.com
http://www.titanbackup.com
-
5410
General Software Discussion / Re: Can someone help me restore my sound?
« Last post by Curt on August 29, 2008, 02:54 PM »
If it was me, my next move would be to re-install the last known stable version  of the "video chat software" (what name is it?).
5411
General Software Discussion / WakeUP, coders: Smart Install Maker is free today!
« Last post by Curt on August 29, 2008, 07:48 AM »
Today's giveaway is Smart Install Maker, and I would guess at least some of you should be interested.

http://www.giveawayo...t-install-maker-502/

Smart Install Maker

SIM Installer - Welcome page At last! There is now a much smoother and faster way to create setup files for easy installation of applications. As a developer, you will no longer be bogged down learning complex installation programs or yet another awkward scripting language. This guarantees hassle-free programming, quicker market delivery and ultimately a faster turnaround with more satisfied users. Smart Install Maker enables the creation of a professional-looking, custom-made setup file in just a few mouse clicks. The simplicity of Smart Install Maker means:

    * No Scripts
    * No brain twisters
    * No unreasonable charges

Smart Install Maker - Features:

Easy, customizable and expert-level setup files:

    * Create smaller setup files with built-in Ñab compression. Smaller size distributives are quicker to download and give users a better installation experience.
    * Control installation and uninstallation – decide the method, time and contents of installation, modification or removal (including registry, .ini and config files).
    * Check system requirements automatically. If the current system does not comply with the minimum requirements, the installer can notify the user of the problem or automatically abort installation.
    * Customize the installation environment and appearance of wizard screens (eg add gradients or images to the window background, add header image, logo image, etc).
    * Customize screens for display during installation (eg license agreements, readme files, etc).
    * Use the OS native language: automatically identify the language of the target operating system and adjust the screen and message language settings accordingly.
    * Execute custom commands, operate with installer variables, verify passwords, customize uninstall, manage uninstall feedback.
    * Ensure a clean uninstall with no leftovers or orphan files, folders, services or registry records.
    * Create silent installations that do not display installation dialogs and messages.
    * Cut development time. Avoid learning new languages or complex software – get hold of the intuitive GUI and enjoy the speedy setup creation process.
    * Don't just pay for a brand name without power or quality! Although Smart Install Maker is low cost, it does not offer useless features like many other supposedly superior products.

http://www.giveawayo...t-install-maker-502/
5412
General Software Discussion / Re: Can someone help me restore my sound?
« Last post by Curt on August 29, 2008, 05:20 AM »
Internet sound, only ??!!   :o
So a CD/DVD/MP3-whatever local file is played back in the normal way?

Indeed an interesting problem! Of course more annoying to you, than interesting, though....

Please start out by installing another internet browser, just to check who is causing the error.
5413
Searching/Indexing Documents

The Search tool helps to locate information in PDF documents by looking phrases in the current document, a specified folder, or an indexed archive:

    * Search current document.
    * Search all files in specified folder.
    * Search against pre-build index files.

"PDF Gold" (including PDF Plus Professional) is capable to create indexes across gigabytes of PDF documents. This Unicode based index engine allows searching both the contents and pre-defined custom fields.
-Zeon PDF Doc Gold

Zeon is $99
http://www.pdfwizard.../product/pdfgold.asp
5414
Developer's Corner / Re: Keyboard Sounds
« Last post by Curt on August 28, 2008, 08:01 PM »
Would be easier to install the free Jingle Keyboard
http://www.bestfreew...eeware-kdflhwed.html
http://jinglekeys.com/jinglekeys/

- or to purchase it's more advanced replacement, Talking Keyboard - but I haven't tried this one.
http://jinglekeys.com/talkingkeys/
5415
Word Processor Roundup / Re: Textmaker (Softmaker/Ashampoo Office) 2008
« Last post by Curt on August 28, 2008, 03:12 PM »
Service Pack 494 for SoftMaker Office 2008 for Windows
Can also be used to update Ashampoo Office 2008. Cannot be used to update trial versions.

 List of changes in this Service Pack:

All applications:
The Swiss German spell-checker now suggests words with "ss" when a "ß" was entered.

TextMaker 2008:
Improved RTF import

Improved Word-Export
Word 6.0 files created by TextMaker can now be opened by itself again (this bug was introduced in revision 493).

 
PlanMaker 2008:
PlanMaker now correctly releases memory that was allocated during editing and scrolling through worksheets (this bug was introduced in revision 493). This led to very slow response times after some working with a worksheet.

Improved display of 3D charts
The OLE Automation property Sheet.Name now allows renaming a sheet to its already used name.

SoftMaker Presentations 2008:
Pictures can now be pasted with Edit/Paste (previously, you had to use Edit/Paste Special)
-SoftMaker
http://www.softmaker...lish/servofw8_en.htm
5416
Living Room / Re: My Taskbar Notification Area Competition
« Last post by Curt on August 27, 2008, 08:20 PM »
- thanks for telling, Darwin.
I guess the CPU usage is because the icons are real-life updated.
PS TF is not causing any speculations when it is 'resting' - only right after I hide or unhide an icon.

Resting:

1.gif
2.gif

5417
Living Room / Re: My Taskbar Notification Area Competition
« Last post by Curt on August 27, 2008, 03:36 PM »
So, Carl, did you keep PS Tray Factory? (I see a lot of guys in this thread could make use of it...) - I think it is a little hard on my XP, causing short but max' use of CPU, when it has been used, but I don't know if the reason is Tray Fact' or the fact (some pune intended) that my XP still is unstable.

Here is my notification area:

tray.gif

- the cogwheel is PS Tray Factory. Next is Process Explorer, M8 Spartan clipboard, AIMP2, and Beta Clock.

What is hidden inside PS Tray Factory

click thumb:
pstray.gif


Edited:
"1 ny meddelelse" is "one new message" = Thunderbird.
5418
Living Room / samer offering to pay you to do reviews
« Last post by Curt on August 27, 2008, 08:45 AM »
http://www.freewareg...com/2008/08/25/back/ :
You might have noticed that I’ve not been able to post for a few days. The company I work for flew everyone in the office from Seattle to NYC for a company function on Thursday, and it was an opportunity to take my wife and kids along for a long weekend in the big city.

I figured since I already had a couple of half-written reviews, that I might be able to steal the time here or there (on the 5 hour flight for example, when my two kids might be asleep) to post a couple of reviews. Needless to say it didn’t happen. I didn’t even have the time to check my email. I’m realizing that it takes quite a bit of time effort to find interesting software, test it out, and write about it, etc.

Can you write these reviews? if you think you can write reviews in the format you see here on Freewaregenius, and if you would like to do it, send me an email and let me know. Not only will you become, um.. famous, but I could also offer a monetary compensation and/or link to your site if you have one.
-freewaregenius
#
Samer on August 26th, 2008

@Rarst,
I guess I meant guest-posts with editorial input on my part.

Thanks guys for all of your kind sentiments.
-comments
5419
General Software Discussion / Re: New Super-PikyBasket Suite is shareware
« Last post by Curt on August 27, 2008, 06:09 AM »
However, as an existing user, you can purchase the product for only $19.95 (30% discount on original price).
Competitive upgrade 30% off*, Students 50% off*, Educators - 30% off*,
-ConceptWorld
We would like to give PikySuite also at 30% discount to all donationcoder members, like our other products NoteZilla and RecentX

So, being a supporting DC member, AND being an existing user of PikyBasket AND of both NoteZilla and RecentX, AND being a registered user of both TrueLaunch and FileBox eXtender and many other competitors, AND being a retired educator, can I then have the suite for almost nothing?   :P

- I was just kidding. However, when I look at the features, I realize that I already have most of them implemented. I will have to take a close look at what will be best.

But one of my very first thoughts was that many people will ask for option to purchase only one of the three, for maybe $12, rather than the $30 package. What will ConceptWorld's answer be to such requests?


Piky Folders
Anyone tried it?

I think it really is so new that no-one have tried it out, yet.
5420
General Software Discussion / New Super-PikyBasket Suite is shareware
« Last post by Curt on August 26, 2008, 04:51 PM »
PikySuite is a set of three products:
PikyBasket, PikyFolders & PikyTools.


  • PikyBasket, the enhanced way of copying files in Windows XP & Vista.
PikyBasket is part of PikySuite.

  • PikyFolders, Solution to the clumsy & tedious way of accessing your folders.
PikyFolders is part of PikySuite

  • PikyTools, a set of handy tools for Windows Explorer and other file managers.
PikyTools is part of PikySuite.


PikyBasket: Copy files/folders faster, Conveniently and quickly organize your documents, videos, pictures and music files (MP3 etc), Take simple file backups, Compress files from different locations into one .zip file, Save files list so that you can copy once and paste multiple times, Very useful when burining a CD/DVD containing files/folders from different locations, Keep a list of best pictures & music you have so that you can share them easily (USB flash drive, CD etc) anytime and any number of times with just couple of clicks, Filter files to be copied/compressed based on file name, extension, size and date, Very easy to share only the changed files inside multiple sub-directories, Eliminate temporary and big files using the filter option, Easily rename source or destination file instead of overwriting, Replacement for copy/xcopy commands, Copy files to multiple destination directories, all at once.


PikyFolders: Access favorite folders with just 2 clicks from where ever you are, Access it from Windows taskbar's Quick Launch toolbar, Save tedious navigation of network folders, Direct folders access from file open/save dialog, Works from Microsoft Office (Word, Excel, PowerPoint, Access, FrontPage, Outlook) file open/save windows, Works from Vista style file open/save window as part of Favorite Links.


PikyTools: Launch selected folder in another copy of Windows Explorer using 'Open In New Window'. Very useful when organizing/moving files to sibling folders which we often do, 'Command Prompt Here' launches cmd.exe or your favorite command prompt replacement program from within Windows Explorer, Supports Command Prompt in elevation mode (Administrator rights) on Vista, 'Copy Paths' to clipboard, Supports UNC paths, Create folders and sub-folders in bulk, Mass folder creator, Create a complete path quickly, Change folder icons, Mark folders with different color for quick identification, Useful and reduces strain when browsing folders, Choose custom folder icon.


Asking normal price is $30 - single user, two computers
We realized that we must sell this product in order to support it with newer, frequent updates. PikySuite is priced at $29.95. However, as an existing user, you can purchase the product for only $19.95 (30% discount on original price).
Competitive upgrade 30% off*, Students 50% off*, Educators - 30% off*, *=Maximum of 2 licenses only
Educational & Non-Profit Organization - Upto 40% off*

http://www.conceptwo...ky/piky_features.asp
-ConceptWorld
5421
General Software Discussion / Re: Power Desk 7
« Last post by Curt on August 25, 2008, 11:53 AM »
You can find a 50% discount ($40 discounted to $20) using this link:

http://www.shop.avan...Q_US_EM_PD7_SUP_0408

I was hoping that the AFFPD7 or NEWVC35 promo codes would give an additional discount, but they don't seem to work for me when I use the above link.

Edit:  if the above link stops working, the discount code UPGPD7 seems to give a $20 discount, too.

If anyone likes to pay top prices they may do so "tomorrow", Tuesday August 26, at Bits du Jour...
http://www.bitsdujou...are/powerdesk-pro-7/

2008-08-26.gif
5422
General Software Discussion / Re: HowTo get back 'Image Dimensions' in Explorer?
« Last post by Curt on August 25, 2008, 04:56 AM »
Thanks a lot for your efforts, Phil  :up:

However, it seems there must be something different wrong. First, the shimgvw.dll did register okay, but made no difference. Secondly, PerceivedType is now showing up nicely, but made no difference, either.



I might go and see if I can find yet another program to intall...
5423
General Software Discussion / Re: HowTo get back 'Image Dimensions' in Explorer?
« Last post by Curt on August 24, 2008, 04:33 PM »
- yes.  dimen.gif
5424
General Software Discussion / HowTo get back 'Image Dimensions' in Explorer?
« Last post by Curt on August 24, 2008, 11:55 AM »
Having removed a couple of dozen programs yesterday I suddenly realize that the Explorer > folder view > details > column 'Image Dimensions' have stopped working. It is there, the column, but is not showing any image dimensions, no matter the extension.

The only solution that I know of is  to make sure that HKEY_CLASSES_ROOT > .jpg >  Value: 'PerceivedType' > String Data: image is checked (for each file type) - and this is a problem, because while the brother .JPEG have this listed okay, all of my images are .JPG, and for .JPG there is at the moment no 'Perceived Type' at all. I have absolutely no idea about how to both create a new AND tell the string data to be 'image' - the default seems to always be four zeros.

Do you know HowTo fix it and give me back my 'Image Dimensions' in XP's Explorer?
Or do you know of some (freeware) program that will (also) solve this problem of mine?

--- JPEG is listing "PerceivedType" but is not showing any image dimensions, either:
jpeg.gif

--- JPG is not even showing the "PerceivedType":
jpg.gif

--- How it should be:
TEG.jpg

--- and how it is:
dimen.gif

 :tellme:
5425
General Software Discussion / Re: Name The Best UNZIPPER!
« Last post by Curt on August 24, 2008, 08:56 AM »
Another one that was new to me is Mass Extract from Joseph Cox (87 software projects!). First version launched March 4, 2008, so it could be new to all of you:

Product:          Mass Extract
Version:         0.91 Alpha
License:         Freeware
Last Worked On:       3rd May, 2008.
Development Status:      Active
Requires:         Microsoft .NET Framework 2.0
[change log] [pad]

Description
Mass Extract is a drag and drop extractor that is typically used with many archives; files or directories can be dropped on the main window and ME will intelligently parse the files list to find multi-part and standard archives for extraction. All found file extensions appear in a list and each type can be selected or excluded from extraction; the archives can also all be extracted to the same directory or in their own respective archive locations.

ME comes with a pre-defined list of built-in extractors which can easily be expanded if desired. PAR and PAR2 are also supported.
massextract_main.png

The setting options are still quite limited.
http://software.boot...o.uk/?id=massextract
Pages: prev1 ... 212 213 214 215 216 [217] 218 219 220 221 222 ... 302next