Monday, August 31, 2009

Multi-Language Add-In for VB 6.02.0107

Provides a general solution for creating and maintaining Visual-Basic projects with support for multiple languages.

The Multi-Language Add-In for Visual Basic 6 was designed to provide a general solution for creating and maintaining Visual-Basic projects with support for multiple languages.

The product is an Add-In for Visual Basic 6, which means that it is tightly integrated into development environment.

Here are some key features of "Multi Language Add In for VB":

Add localization support late in development

All localization experts recommend planning localization right from the beginning of your software development project. Most software developers do not follow this advise. Often, the requirement to localize a project is not even raised before the development has been completed.

Controls database to specify localizable properties

The Add-In detects the localizable texts in the controls on your Forms, UserControls and UserDocuments based on information in a controls database. This database indicates exactly which properties require translation. It can easily be extended to handle additional controls which you use in your projects.

Detect strings in your source code

The Add-In scans the source code and detects all strings.

Select texts for localization

Not all texts in a project require translation. In fact, Visual Basic program often contain a lot of text strings which must not be translated. With the Multi-Language Add-In, the programmer can select exactly those texts which require translation.

Hide lines which do not require translation

Strings in the source code which do not require translation can be hidden, by adding the comment 'MLHIDE to the end of the line. This can be added via the Add-In, or using the code editor.

It is good practice either to select or to hide each individual string in your project. This makes it easy to locate new strings which are added to the source code at some later stage.

· Filter using regular expressions
A significant job for the programmer (and not the translator) is to identify exactly which texts in the source code require translation. Often you can use simple rules to select texts, or alternatively to hide them.

Using this feature, you can specify a regular expression, which is used to match either:
- a text string or
- the complete code line containing a text string.

By matching the complete code line, you can easily detect where strings are used in specific function calls, or for example, in a select case statement.

· Excel export and import
If you are not able to translate the texts yourself, you will have to pass them on to a translator. The easiest way to do this is to export the texts to an Excel file, let the translator enter translations using Excel and then import the translations back into the Add-Ins's project database.

The Add-In supports two different Excel formats:
- a simple format using a single worksheet and no macros
- a three worksheet format which provides more context information and uses Excel macros to ensure consistency between the worksheets and to provide additional features

· Global translations database and translation memory
Aside from the individual project databases, the Add-In stores all translations in a global translations database, where they are indexed according to the words contained in the texts.

When the Add-In detects an exact match with a string in the global database, then it will use the stored translation automatically. This is well suited to handling common terms such as OK and Cancel.

When you edit a translation, you can use the translation memory feature to view previous translations of texts containing one or more of the same words. If you are able to translate the texts yourself, then this is a great help. In particular, it helps you to use technical terms in a consistent manner.

· Generation of single or multiple language versions
Generate multiple versions of your application, each for a single language or
Generate a single version supporting multiple languages

· Language switching
Add support to your project to switch the language of the user interface when the program is running.

· Read resource strings in different languages
The VB function LoadResString only reads resource strings in the current system language. The Add-In provides an alternative function, to read resource strings in a specified language.

· Switch language in separately compiled components
· The Add-In uses an event mechanism to indicate that the language has been changed. Even if your application is made up of separately compiled modules (.exe, .ocx or .dll), the event will still be received by all active components (Forms, UserControls or UserDocuments).

The events are generated via the module MLRuntime.dll, which you can distribute freely with your application.

· Language selection form
The Add-In provides a simple form to select the language in your application. The Add-In can add this form to your project and generate code to show the form the application starts.

· Preview mode
Switch the language used in the form designer window, to preview your Forms, UserControls and UserDocuments in a given language.

· Import projects which already use resources
The Add-In detects existing calls to the VB function LoadResString and imports the associated resource strings.
· Support for far eastern languages
The Add-In provides full support for far eastern languages. The grid editor works with an Input Method Editor (IME).
· Font switching
The Add-In provides support for switching the font used in controls when the language is switched.
· Search function
The Add-In contains a flexible search function to find texts in the original language and in the translations.
· Exclude modules from translation
Modules which contain no localizable texts can be excluded from the source code scan.

Requirements:
· Microsoft Visual Basic 6.0
· MDAC 2.5 and Jet 4.0

Limitations:
· Using an unlicensed version, you can enter a maximum of 100 translations into your project. Not more than 50 of these will be added automatically from the translation memory

What's New in This Release:
· Modification to the format of the global database, for compatibility with the Add-In version for .NET. Specifically, a new field IetfLanguageTag has been added to the Languages table.
· Check box added to the (Program) Error dialog to suppress further errors during a scan. The errors are now written to the errors grid.
· Large list box to select languages in the Add-Language and Original-Language dialogs (instead of a drop down list).
· New field in the Translation Memory dialog to enter additional words to search for in the global database.


VB 6 Pure Code Lines Calculator 1.00

Calculates the PURE code lines (writing manually) for VB 6 project/group.

VB 6 Pure Code Lines Calculator (VB6PCLC) is designed to calculate the PURE code lines (writing manually) for VB 6 project/group, and it can record the version history for code lines automatically.
VB 6 Pure Code Lines Calculator also calculates comment lines, file lines, etc.


Learn Visual Basic 6 2


Learn Visual Basic 6 is a 10-week, self-paced overview of the new Microsoft Visual Basic 6.0 programming language and environment. This course aims to teach an understanding of the benefits of using Microsoft Visual Basic 6.0 as an application development tool, as well as how to understand Visual Basic event-driven programming concepts, terminology, and available tools. You can also learn the fundamentals of designing, implementing, and distributing a wide variety of Visual Basic applications. Learn Visual Basic 6 is presented using a combination of course notes (written in Microsoft Word format) and more than 60 Visual Basic examples and applications. This updated version adds e-mail and Web access examples.
  1. Start Visual Basic. Usually, 'Start > Programs > Microsoft Visual Studio > Microsoft Visual Basic 6.0'. You should see a window similar.
  2. Click the default "Standard EXE" icon and then click the "Open" button.
  3. Drag a 'Command Button' from the 'Toolbox' to the form and drop it. Drag another one to the form and drop it.
  4. Click the first 'Command Button' to select it. Open the property window and change the 'Name' property to 'CommandA'.
  5. Select the second 'Command Button' from the drop down window at the top of the property window and then change the 'Name' property to 'CommandB'.
  6. Double click the first 'Command Button' object in the form to open the code window for that button.
  7. Enter the code, Msgbox "You clicked Button A" after the automatically entered code Private Sub CommandA_Click()
  8. Double click the second 'Command Button' object in the form to open the code window for that button.
  9. Enter the code, Msgbox "You clicked Button B" after the automatically entered code Private Sub CommandA_Click()
  10. Click the 'Run' button in the toolbar at the top of the VB 6 development environment window to execute the program.
  11. Click either button A or button B and observe the fruits of your labor!

Sunday, August 30, 2009

A-squared Free 4.5

A-Squared Free 4 is one of the better free malware removers, but it's not flawless and some users question its efficacy.

The program starts off with a sluggish detection file update that also requires a program restart. This took about 10 minutes. Normally, though, it opens to the Security Status page. From there, you can run scans, update the program, access the A-Squared knowledge base, and choose from among 20 display languages. Program options are arranged on the left nav, and they are Security Status, Scan PC, Quarantine, Logs, and Configuration tabs. Scan PC contains four scanning options: Quick, Smart, Deep, and Custom. Quick Scan is the fastest and most superficial, while the Deep Scan can take several hours.

If you choose a scan that examines your cookies, the app will recommend closing your Web browser. Custom not only lets you choose which folders to scan, but also lets you opt out of heuristic, tracking-cookie, and spyware-remnant scans. There is also a whitelist, from where you can add folders or files, which is accessible at the bottom of the main Scan tab panel. The Quarantine tab uses a spreadsheet-style layout to manage isolated files, and the Configuration tab has options for Context menu scans, Update behavior, and Permissions settings. The Quarantine tab has a neat option to rescan quarantined objects after a definition file update.

There's one annoying design quirk: important options like the whitelist are placed in the bottom left of the active panel, making them accessible only by a text link. For a standalone antimalware program that lacks a built-in scheduler and antivirus features, A-Squared Free 4 is a secure choice.

Scans your computer for malicious software (Malware), including Trojan Horses, Dialers, Worms, Spyware, and Adware. A-squared Free is specialized in finding and removing them securely. The disk scan checks all files on your system disks for Malware. The scanner scans for Spyware Traces.


Click here to download

Real Player SP 1.0


One of the dinosaurs of media playback, RealPlayer has been on the scene since 1995. Sometimes it feels like it hasn't been updated since then, no matter what the version number says. Still, RealPlayer 11 beta introduces a major new function and takes care of some frustrating bugs, making it respectable once again.

The player runs smoother than ever, which to some might not be saying much, but if you haven't used it in years, the differences are dramatic. Now the free version of the player has the ability to download videos from the Internet, including Flash-based videos like those on YouTube. Once installed, mousing over an embedded video will provide a pop-up that not only lets you download the vid, but also change its name, the save-to directory, and other options.

The update sees a major face-lift, as well, removing much of the clutter from the downloadable music store. Though not groundbreaking, the RealPlayer music store gets a thumbs up for being easy to use and offering a flexible DRM policy. The new jukebox features let you make playlists, rip CDs, burn custom mixes, and listen to hundreds of online radio stations. The program still suffers from an intrusive installation, but file-type hijacking and upgrade harassment are mostly gone.

The positive steps begun with Version 10 continue, and users of earlier versions should upgrade.

RealPlayer 11 is the perfect media player for audio, video, and flash. With it, you can rip, mix, and burn CDs and MP3s fast. It plays all major audio and video formats, so you can build your own playlists and video libraries. And RealPlayer 11 lets you download your favorite videos from thousands of sites and watch them anytime, anywhere you want.


Media Monkey 3.1.1.1261


MediaMonkey is a music manager and jukebox for serious music collectors and iPod users. It catalogs your CDs, OGG, WMA, MPC, FLAC, APE, WAV and MP3 audio files. It offers an intelligent tag editor which looks up missing Album Art and track information via Freedb and the web, and an automated file and directory renamer to organize your music library.

  • Organize music and edit tags in your audio library with a powerful, intuitive interface
  • Automatically lookup and tag Album Art and other metadata
  • Manage 50,000+ files in your music collection without bogging down
  • Play MP3s and other audio formats, and never again worry about varying volume
  • Record CDs into OGG, MP3, FLAC and WMA files
  • Convert MP3s, OGG, FLAC and WMA files into other formats with the Audio Converter
  • Create playlists and music mixes quickly and easily to suit any occasion
  • Synchronize with iPods / MP3 players effortlessly and convert tracks on-the-fly
  • Download audio content using the new integrated Podcatcher.
  • Use MediaMonkey for Parties or other public places with Party Mode
  • Create Statistics and other Reports of your music collection as Excel, html, or xml files.
  • Customize MediaMonkey with Skins, visualizations, plug-ins and scripts to make it do what you want it to.
  • Plus much more...

Saturday, August 29, 2009

RemoveWGA 1.2


A small utility that enables you to remove the Microsoft Windows Genuine Advantage Notifications tool

RemoveWGA will enable you to easily remove the Microsoft "Windows Genuine Advantage Notifications" tool, which is calling home and connect to MS servers every time you boot. Futures updates of this notification tool will (officialy) setup the connection rate to once every two weeks.

Once the WGA Notification tool has checked your OS and has confirmed you had a legit copy, there is no decent point or reason to check it again and again every boot.

Moreover, connecting to Microsoft brings security issue for corporate networks, and privacy issues for everyone. It is also unclear which information are transmitted (Microsoft published an official answer, but an individual study brought some questions).

All of that, along the fact that Microsoft used deceptive ways to make you install this tool (it was told you it was an urgent security update, whereas it is a new installation giving you no extra security) makes me calling this tool a spyware.

Also, Windows Genuine Advantage Notifications is different than Windows Genuine Advantage Validation. RemoveWGA only removes the notification part, phoning home, and does not touch the Validation part.

Here are some key features of "RemoveWGA":

· Tell you if the WGA notification tool is active on your system

· Allows you to remove the WGA notification tool from your system

· Accept the "-silent" command line parameter to silently check if the WGA notification tool is active on your system, and popup only if it is found (usefull for checking automatically at startup for instance)

Note: Some antivirus and antispyware programs flag RemoveWGA as being infected/malware, although the application is perfectly safe and does not pose a threat to your system. This is called a 'false positive'. The term false positive is used when antivirus software wrongly classifies an innocuous ( inoffensive ) file as a virus. The incorrect detection may be due to heuristics or to an incorrect virus signature in a database. [Similar problems can occur with antitrojan or antispyware software.]


Click here to download

Net Shred X 4.2

Clear Cache, erase History permanently with NetShred X, the easy-to-use internet track eraser for Mac OS X that securely erases cached files your browser and email programs leave behind. NetShred X is the internet privacy software that is easy, fast and cleaner. Easy because it runs automatically - you don't have to remember to use it. Fast because it runs in the background - you don't have to wait for it. Cleaner because it will erase, not just delete all internet tracks for almost every browser and email program on Mac OS X.

Your web browser stores copies of the images and text that you see when on the internet. This information can be recovered by anyone with access to your computer. These internet tracks - browser cache, history, download cache, quicktime cache, favicons, cookies and email cache, trash, spam and junk mail - not only potentially compromise your privacy, they also take up a lot of disk space. Clearing your cache, throwing these files in the trash, or deleting them will not remove the file contents from the hard drive - it just removes the file name from the directory, leaving the data intact and recoverable. To dispose of these internet tracks, you need an internet track eraser to erase them so they can't be recovered.

Mil Shield 7.1


Mil Shield protects your privacy by removing all tracks from your online or offline PC activities (it also shreds the content of the infamous INDEX.DAT files).

Some features:

* Supports Windows 7 and Vista 3264. Cleans all Firefox, Opera, Apple Safari, Google Chrome and Avant tracks.

* SELECTIVE CLEANING. Many of the Internet Explorer tracks come from features that are good and convenient: Internet cache speeds up the browsing, cookies protect you from entering your user information over and over again, etc. Mil Shield selectively preserves temporary Internet files, history and/or cookies for chosen by you safe Internet sites. Another good reason to keep some of the tracks is to avoid being suspicious when others notice that your history, cookies and cache are always empty.

* AUTOMATIC CLEANING. You can schedule background cleaning at each startup or shutdown, or when the Internet Explorer is closed. While running in background, Mil Shield is completely invisible.

* PANIC KEY COMBINATION (a.k.a. boss key). Every now and then there are situations where you need to clean the tracks very fast. In such cases all you need to do is to press certain keys together and all open Internet Explorer, Media Player, MSN Messenger, Yahoo Messenger and ICQ windows are closed and an invisible background cleanup is started.

Mil Shield cleans more tracks:
AutoComplete forms and passwords, all Index.dat files, temporary Internet files, all Firefox, Opera, Safari and Chrome tracks, cookies, UserData records, typed URL history, browse history records, most recently used download folder, recent documents history, most recently used folders records of the Windows shell, common file dialogs history, file and computer search history of the Windows shell, Start menu Run history and list of frequently used programs, Recycle Bin at low level, Windows temporary files, and restores your home page if it is hijacked.

Incredi Flash Website Template 1.01


Build a Flash website from selection of professionally designed template without the need to use Adobe Flash.

Not everyone is a professional web developer who are able to use a complicated software such as Adobe Flash to customize their templates. IncrediFlash Website Template comes with a free Editor to customize your template. It is designed with ease of use in mind. You do not need any previous multimedia/website development skill to use it.

A standard customization process only takes approximately 5 minutes.

IncrediFlash Website Template can be publish into a Flash and HTML file, exectuable file and an autorun CD-ROM (electronic business card). No other flash website template offer this many publishing possibilities.

Change text, photos and page titles. Change text font settings (bold/italic/font name, size, color, alignment). Delete unwanted objects. Add, remove and reorder pages. Add a new text and photos. Change website's music. Adding a sub pages. Add click action to a text and a photo object to open a bigger photo/other website. Cropping photo and applying photo effect. And many more...

Flash Particle Studio 1.22

Create Flash particle effect easily without Flash or scripting knowledge in a few clicks. Select from tons of particle effect such as fire, electric, water drip, corona, aurora, light, plasma, fairy dust, smoke, etc. Easily shape particle effects to any shape within an image file. Create a unique particle effects by adjusting parameters such as density, speed, life-span, size, etc. Create a looping effect suitable for background/looping animation. A looping animation will play seamlessly in a loop. Export into a flash SWF or FLV file importable into Adobe Flash. Export into an AVI video with or without transparency importable into Adobe Flash or any video editing software such as Adobe Premiere. Export into a series of images with or without transparency (PNG/BMP/JPEG). It has been tested and works on Windows Vista.

Select from tons of particle effects such as fire, electric, water drip, corona, aurora, light, plasma, fairy dust, smoke, etc. Easily change particle effects to any shape within an image file. Create unique particle effects by adjusting parameters such as density, speed, life span, and size. Create looping effect suitable for background/looping animation, which plays seamlessly in a loop. Export into flash SWF or FLV files importable into Adobe Flash. Export into AVI video with or without transparency importable into Adobe Flash or any video editing software such as Adobe Premiere. Export into series of images with or without transparency (PNG/BMP/JPEG).

Debrief 2.3

Debrief offers users a fast way to take down notes and stay on top of their ideas. With its simple layout and directions, this tool will find many fans.

The program's interface may initially worry some, but they will soon discover most of the icons crowding the top of this program are unnecessary. A few minutes of experimenting and clicking around will serve the user much better than a trip to the Help file, though it's available. The program functions primarily as a note-taker. Users click on an icon to write a note and treat it like a word processor (the program is complete with options to change font, color and other text options). The program's biggest asset is its ability to catalog these notes with simple files. Organized like a file tree, users create and save their notes in Personal, Business, or customized folders. The second component of the program is a calendar, which shows what notes are happening on each day. While we would have liked to see an alarm system, this is still a fairly good way to get a glimpse of your daily life. The program's best special feature is its ability to run off reports. Users can see all their personal or business notes run off, or can have specific days filtered into the report.

While the program initially appears cluttered, we found this freeware program to be an excellent tool for those trying to keep their lives simple and organized.


Click here to download


Trog Bar 2009.08.12


Stress can be alleviated, say the gurus at TROG Bar, if we understand that it isn't the result of being too busy, but instead from trying to manage (and actively remember) all of our tasks all at once. With that in mind, the TROG Bar presents a flexible system to keep your tasks organized and offers you help getting the most from the program.

TROG Bar (which, by the way, is short for Total, Relaxed Organization Guru) integrates nicely with Microsoft Outlook and can work in conjunction with several popular task management systems such as Franklin Covey and Getting Things Done (although these additional systems are not necessary). Just plug in what you need to remember in TROG Bar (or Microsoft Outlook, once you have installed TROG Bar), the priority you place on that particular task, and the corresponding dates, and TROG Bar will remember, remind and prioritize via the handy TROG Bar sidebars. The sidebars give you at-a-glance information for completed and open tasks and are easy to follow.

Much like the animated assistant Microsoft offers, TROG Bar has a Neolithic cartoon coach to help you. Even if you aren't enamored of this approach, we suggest you permit this feature to get the most from the program.

TROG Bar is moderately priced, and offers the standard 30-day trial period for evaluation. If you need help staying on top of everyday tasks, this flexible tool can help.

PIMEX 1.22


This attractive and easy-to-use organizer & PIM will keep track of your contacts, addresses, distribution lists, manage your schedule, remind about appointments, and keep your daily notes in order. The slick user interface makes it a snap to find addresses and phone numbers, enter reminders, send e-mails, launch web pages, print mailing labels, envelopes or letters. Version 1.22 is a bug fixing release.

PIMEX MailExpress is a free bulk e-mail software that gives you a powerful and efficient way to reach your customers and contacts via e-mail. It's perfect for individuals or businesses sending out newsletters, business notices and other essential information in text or HTML format. Each message can be personalized using a simple template, so all addressees will receive letters intended for them only. Messages can be previewed and edited before they are sent out. Every e-mail job can be interrupted and restarted at any time. If there are any delivery failures, the program will resend messages simply with one mouse click. The program imports lists of e-mail addresses with optional parameters in text or CSV format, and requires a SMTP Server (hosted by most Internet Service Providers).

Perfect Diet Tracker 3.0.9

The Perfect Diet Tracker is an easy to use application for Apple Mac OS X computers that helps you lose weight, and keep it of.

The Perfect Diet Tracker has been designed to be VERY easy to use.

Using recognised scientific equations to calculate your ideal daily calorie level and a daily diary to monitor your calories you can easily find out which foods you should eat more of, and which you should cut back on. Carbohydrates, proteins and fats are also logged and monitored, so you can ensure you are eating a balanced diet.

The Perfect Diet Tracker makes it easier to diet as you can eat the foods you choose. As long as you stick to the calorie guidelines and try to balance your diet, you should find your perfect diet

The Perfect Diet Tracker is based on scientific research, primarily using the Harris Benedict Equation to calculate your 'basal metabolic rate' or BMR.

When you first set up a user in the software it will ask you for certain information, including your age, height, weight sex, and current activity levels.

The software then calculates your basal metabolic rate and the number of calories you need in order to maintain your current body weight.

Using your target weekly weight loss, the Perfect Diet Tracker will then suggest a daily calorie intake figure per day in order to lose, maintain or gain weight.

NOTE: The Perfect Diet Tracker is not to be used by pregnant or nursing mothers, or those under the age of 18. All users of this software should consult their doctor prior to starting a new diet or exercise routine.

Here are some key features of "Perfect Diet Tracker":

· Create a personal diet plan for each user.
· Select your own target weight loss or gain.
· Monitor your calorific intake.
· Monitor your nutritional profile
· Track an unlimited number of users.
· Use the suggested nutritional profile or add your own.
· Use the extensive food database to add foods.
· Easily add new foods using the add food wizard.
· Track your progress with a weekly 'weigh in'.
· Track your sodium intake
· Available for Microsoft Windows and Mac OS X.
· International food database.
· Specify weights in lbs, kilos or stones and lbs.
· Password protect your details.
· Full report printing.
· Low purchase cost.
· No repeat subscriptions or 'extras' needed to make full use of the software.


Friday, August 28, 2009

PacketTrap TFTP Server 1.1.3301


The PacketTrap pt360 Tool Suite FREE edition consolidates the PacketTrap free network management tools into an integrated tool suite and replaces disparate IT tools from multiple vendors. Why use individual point tools when you can exploit the value of these utilities in a consolidated suite that allows you to flow results between tools, save network settings and favorites. The powerful, yet easy to use pt360 helps you tame your network.

PacketTrap TFTP Server is a FREE multi-threaded file transfer utility. It supports simultaneous transfers and offers option negotiation between client and server, including clock size, transfer size, and timeout. It may be used to move configurations between routers, switches, hubs, and XTerminals. It has been extensively tested with Cisco routers and switches.

FileMetadata .NET 1.0


Element-IT FileMetadata .NET control provides methods to add and modify metadata for any files and folders at NTFS file system. Control uses Alternate Data Streams technology to work with metadata. The data moves with the file and independent of the file name. Metadata don't uses any extra databases or file body- it stores with file at NTFS hidden stream. Control allows to modify standard metadata like Title, Subject, Category, Keywords, Comments, Author or unlimited count of custom metadata of any type: String, numeric, binary data. The original file date modified is not affected on metadata modifications.

Element-IT FileMetadata .NET control provides methods to add and modify metadata for any files and folders at NTFS file system. Control uses Alternate Data Streams technology to work with metadata. The data moves with the file and independent of the file name. Metadata don't uses any extra databases or file body- it stores with file at NTFS hidden stream. Control allows to modify standard metadata like Title, Subject, Category, Keywords, Comments, Author or unlimited count of custom metadata of any type: String, numeric, binary data. The original file date modified is not affected on metadata modifications.

FileMetadata.NET advanced features:
  • Includes methods to read and write metadata value as FileStream.
  • High permomance methods to copy metadata.
  • Supports to read and write metadata value as string in any encoding.

Wednesday, August 26, 2009

Astound Stereo Expander 1.2

AstoundStereo: The next dimension in the evolution of audio. With AstoundStereo, sounds appear to emanate from all around you. It elevates and widens the stereo image for a truly immersive listening experience. AstoundStereo Expander produces a richer and more expansive stereo image while playing music, a DVD, a video game or any application that produces audio. Any audio playback on your Mac can be an ASTOUNDING audio experience with the simple download of AstoundStereo Expander! AstoundStereo is a 4D sound experience through two audio channels, such as headphones or laptop speakers. It processes all digital audio on your laptop or desktop computer in real-time utilizing AstoundSound technology to enhance the audio in your existing music, movie and game collections. No special hardware or decoding devices are required, making it compatible with most audio playback devices.

ShopNCook Menu - Meal Planning Software 3.4.3


You love to cook...you just don't like all the administrative hassle that's involved! Editing and formatting the recipes you download...matching your menus to your grocery lists...and then figuring out how your favorite entree stacks up against your diet! Sometimes you think you need a full-time organizer just to keep track of it all.

Well, congratulations - you've found your organizer! Shop'NCook Menu is your kitchen manager in a box - ready to handle all the administrivia so that you can get back to creating culinary magic!

With Shop'NCook Menu, the Internet is your cookbook. Grow your personal recipe collection by typing, pasting or dragging & dropping whole recipes directly from the internet...no tedious editing or formatting. Plan your meals by dropping recipes on the calendar for as many menus per day and as many days in advance as you want. You start with a built-in, customizable ingredient database offering 2000 grocery items with nutritional data for more than 40 nutrients. You can add new ingredients and categories for your family's dietary needs or restrictions, and organize them according to your supermarket aisles. The Shop'NCook wizard automatically interprets your recipes, adds the ingredients of your meal plans to your grocery list with a single click, and gives you an accurate nutritional analysis seamlessly.

Best of all, Shop'NCook can travel with you. You can organize your favorite recipes in cookbooks and share them with your friends using the free Reader software. Export your recipes and shopping lists in HTML or SplashShopper formats to your PDA, send them to friends by email, or share them with other users in an online database.


Server Observer Network Monitor 4.1


ServerObserver Network Monitor is a monitoring tool to observe various internet protocols and databases. It can measure CPU/Disk/Memory/Network usage, detect the file size and the vitality of any process, and search event logs. Monitor something by running VB script file. It informs you of error situations by sending various notifications. You can create various reports. It lets you view the current status on the web.

Visifire 1.1.1

Visifire is a set of open source data visualization components - powered by Microsoft Silverlight. With Visifire you can create and embed visually stunning animated Silverlight Charts within minutes. Visifire is easy to use and independent of the server side technology. It can be used with ASP, ASP.Net, PHP, JSP, ColdFusion, Ruby on Rails or just simple HTML.

Visifire's unique features are:-

* Visually Stunning Animated Charts
* Embed into any web page in minutes
* Open Source / Free license
* Tiny footprint (140 KB)
* Enterprise grade features

WinX DVD to Zune Ripper 4.0.1


Converts DVD movies to your Zune video formats

WinX DVD to Zune Ripper is a useful DVD ripper tool that will enable you to make Zune compatible videos from your preferred movies.

Here are some key features of "WinX DVD to Zune Ripper":

· Easy convert DVD movies to Zune format, fully compatible with PDA(PCC) video format.
· Easy video splitting, full control the output video quality and image size.
· Easy to add or remove DVD subtitle to output video file.
· Full control other audio and video parameters.
· Support all commercial DVD and remove all the restrictions.
· Excellent picture quality and high sound quality like original DVD.
· Fastest converting, speed up to 300% real time.


Click here to download

Monday, August 24, 2009

CCleaner 2.22.968


Although it lacks a few of the bells and whistles found in other PC-cleaning applications, this free program offers more than enough features to make it a worthy download. CCleaner's interface is logically designed and makes it easy to wipe away your tracks from Internet Explorer, Firefox, Opera, and Google Chrome from various Windows system areas, and from some third-party applications.

CCleaner doesn't support the large number of extraneous programs that some competitors do, but it can erase traces from such popular programs as Spybot - Search & Destroy and WinZip. CCleaner now offers secure file erasing along with a Registry-cleaning utility that quickly scans for invalid entries before removing them. CCleaner can even back up your Registry before removal, in case it accidentally removes a crucial component, and the download includes a rudimentary feature for uninstalling any program on your machine.

Since this free application handles the majority of PC-cleaning chores and offers a nice extra, we strongly recommend CCleaner to all users, except those who need robust tools to remove supersensitive data.

CCleaner is a freeware system optimization, privacy and cleaning tool. It removes unused files from your system - allowing Windows to run faster and freeing up valuable hard disk space. It also cleans traces of your online activities such as your Internet history. Additionally it contains a fully featured registry cleaner.

Version 2.22.968 has added support for Opera 10 Beta and also added support for Safari 4.0.


QuickMenu 7.3


QuickMenu is a new and unique solution for generating fast and feature rich drop down menus. An extensive visual interface produces lightning fast pure CSS list based menus capable of functioning in browsers with their JavaScript disabled. QuickMenu is in a class of it's own with over 400 customizable settings, dozens of exclusive visual features, and more than 20 add-ons. The customizable options are virtually limitless in this intuitive, eay to use visual design interface. Build horizontal, vertical, or even vertically expanding (accordion) tree style menus all of which can dislpay sub menus on click, or on hover. We now offer free access to unlimited core menu design! QuickMenu is the internet's only visual interface capable of generating pure CSS menus (menus capable of running without JavaScript). The visual design interface is now fully comaptible with IE8 and Google Chrome. Menus created with QuickMenu are always search engine friendly by default; no additional mark up is required. QuickMenu's pure CSS save option uses UL / LI list tags which are always set visible in the CSS by default for 100% 508 complaincy. QuickMenu uses fully valid markup regardless of add-ons, styles, and extended features applied to the menu. QuickMenu automatically scales sub menu containers and items to fit the size of your text and the browsers font settings, regardless of features and add-ons employed. QuickMenu is driven by a mere 3K (size may vary depending on license type and save options) of JavaScript, the smallest core menu code in the industry. A handful of CSS add-ons create rounded corners, angled corners, drop shadows, tab effects, arrow bullets, and more without a single image required. QuickMenu does not use any behind the scenes hidden links or attempt to contact other servers to validate the purchased license. Copyright notices and text descriptions about OpenCube are not saved to your pages when publishing menus. Drop by opencube.com today!

RSS Feed Creator PRO 5.5

RSS Wizard 3.4

Description of RSS Wizard program at SoftwareGeek: RSS Wizard is an HTML to RSS converter than can generate the RSS feed out of virtually any web page without having to edit it first. RSS Wizard generates RSS 2.0 feeds and allows you to create, edit and publish an unlimited number of RSS feeds.

Do you want to create RSS feeds dynamically with ease? RSS Wizard makes it possible!RSS Wizard is an HTML to RSS converter than can generate the RSS feed out of virtually any web page without having to edit it first. RSS Wizard generates RSS 2.0 feeds and allows you to create, edit and publish an unlimited number of RSS channels. The program has a great collection of features such as the built-in scheduler, autodetecting of RSS tags, command line support, XML editor and built-in FTP client.The program has been especially developed to meet the needs of both novice and advanced users. Now the RSS Wizard features a built-in scheduler so that now it can function in a 100% automatic mode creating excellent RSS feeds without any user assistance.

MAGIX Website Maker 3


MAGIX Website Maker makes it possible for every beginner without previous knowledge or introductory times to create and publish professional Flash websites online in no time. Up to 10,000 MB disk space is available for photos, videos, music, text and other documents, as well as an individual web address and more than 100 high-quality design templates are included. The online software run on the Internet for website editing enables a quick learning process thanks to the drag-and-drop function and intuitive step-by-step instructions from the website wizard. Profit from the huge multimedia library with effects, animations, fonts, images, sounds, backgrounds, extras like guest books, counters, etc.

In just 3 easy steps, following a time-tested MAGIX building block principle, anyone can create their own Internet page:

1.A useful website assistant will open after the program start, offering helpful step-by-step instructions. The user can select a professional web design template with effects, animations, sounds and predefined text blocks, etc..
2.With just a few clicks, your own text, photos, videos, animations and text effects can be inserted into these templates and freely positioned on the screen.
3.In just a few minutes, a personalized, high-quality Flash website can be accessed with one click on the web address included in the Website Maker package (including disk space) with just one click.

Driver Genius Professional Edition 2005 6.0.1882


Driver Genius Professional is a professional driver management tool features both driver management and hardware diagnostics. Driver Genius provides such practical functions as driver backup, restoration, update and removal for computer users. If you often reinstall your operating system, you may not forget such painful experiences of searching all around for all kinds of drivers. If unfortunately you have lost your driver CD, the search will be more troublesome and time-consuming. Now with the driver backup function of Driver Genius, you can backup all drivers in your computer before reinstalling, and restore them with the driver restoration function after system reinstallation has been completed. This will dramatically save your time for driver installation during the system installation procedure, and you will no longer worry about where to find a driver. Besides, you can create an automatic installation package for all drivers in your system by Driver Genius. After you have reinstalled your operating system, you can restore all your drivers in just a click by this automatic restoration program. It's really convenient. Driver Genius can automatically find driver for a device that the system can't find a driver for it. It can recognize the name and vendor's information of the device, and directly provide download URL for the required driver. Driver Genius also supports online updates (by LiveUpdate) for drivers of existing hardware devices. There are more than 30,000 most recent drivers for such hardware devices as motherboards, video cards, sound cards, network cards, modems, monitors, mice, keyboards, digital cameras, video capture cards, etc. on Driver Genius web site. Besides, there are daily updates for many drivers on our site. Our customers can obtain information for latest drivers by Driver Genius's LiveUpdate program, which can synchronize to the database on our site.

Quick Slide Show 2.33 Description


"Quick Slide Show" is an indispensable tool for:

- web-developers in making flash movies
Specialists will be able to sensitively lessen web-site development time taking advantage of "Quick Slide Show". Due to its flexible settings You can easily create flash movies for different demand characteristics. This makes our program a universal product for a specialist as well as for a beginner in web design. Main advantage of the program is a possibility of quick creating high-quality slide-shows of a small size.

- sales managers in making presentations of goods and services
It is a high-quality method to inform Your clients and counterparties by showing them not a static image, but a slide show of many pictures with individual text comments and sound arrangement for each image. This will increase the efficiency of the offer of Your goods and services. Besides you will be able to send to your client a CD with auto-run slide show.

- teachers and educational specialists in preparing interactive teaching material for their lessons and lectures
Based on upper mentioned form of presentation of information the teaching process becomes more vivid, and students more easily understand information. You can add Your recorded voice comments to Your presentation and the program can demonstrate needed teaching material even when You are absent.

This product is useful not only in business but also for individual purposes. For example, "Quick Slide Show" enables creating personal picture albums, family files, interactive cards, screen savers (splash screens) etc.

You can place slide shows created by You on your personal web-site www.your_name.sssuper.com (e.g. www.andrew.sssuper.com) that is in any time can be visited by your friends where they will feel with You're your impressions of holidays, family vacations on the seaside or in the mountains and many other unforgettable events of Your life.

Disk Drive Administrator 3.21

Disk Password Protection 4.9: a comprehensive suite of hard-drive protection / access restriction tools. Protect your disk / partitions with a password, ban all reading / writing activity, limit launch of specified files to authorized personnel only, etc.
Disk Password Protection 4.9 offers users the option to choose what kind of protection they need.
First is the Boot Protection. When chosen, any unauthorized person will not be able to boot a computer without entering the correct password. The program also offers Partition Protection. Any person can chose to have one or several partitions where all confidential information is stored.
When protection is activated, the partition will be invisible to the operating system and the disk space taken up by sensitive data will appear as free disk space. The Low-Level Protection option allows users to blocks all attempts to read / write to / from the protected disk. The drive itself will appear as if it were just manufactured and is not formatted to perform any operations. This protection works only for ATA-compatible disks and must be activated in MS-DOS.

Advanced Archive Password Recovery 3.01


Advanced Archive Password Recovery is a program to recover lost or forgotten passwords for ZIP/PKZip/WinZip, ARJ/WinARJ, RAR/WinRAR and ACE/WinACE archives. Supports the customizable brute-force attack, effectively optimized for speed (for ZIP, up to 15 million passwords per second on Pentium 4), dictionary-based attack, and very fast and effective known-plaintext attack. Supports strong WinZip encryption (AES). Multilangual user interface.

IP Strip 1.0


IP Strip is a utility that instantly extracts all of the IP addresses from a file. In certain cases, especially in the life of the administrator, you might have a file which contains IP addresses you would like seperate from all other miscellaneous data. This application makes that a very easy task to accomplish.

To use IP Strip, you simply give the program an input file that holds the IP addresses you want seperated, and specify an...

Click here to download

MP3 Sound Cutter 1.1


Power MP3 Cutter(MP3 Sound Cutter) can cut mp3 or wav sound piece from big mp3 or wav format files directly. You can add fade-in and fade-out effect to the exported audio easily. You can also choose to cut selected audio or unselected audio. Another powerful function is that it can do batch cut job, give it a cut job list, it will do the job one by one automatically. By using high quality decoder and encoder, the sound quality loss will be minimized.

What can MP3 Sound Cutter cut?
1. Cut mp3 from big mp3 sound file
2. Cut mp3 from big wav sound file
3. Cut wav from big mp3 sound file
4. Cut wav from big wav sound file
5. Convert wav to mp3
6. Convert mp3 to wav
7. Recompress mp3 with different bit rate

Main Features of Power MP3 Cutter:

* Real time MP3 and WAV encoding and decoding support
By using real time MP3 and WAV encoding and decoding, Power MP3 Cutter(MP3 Sound Cutter) can cut out a 3-minute-length music in about 10 seconds. And when it cutting MP3 files, no disk space will be used. Because the cutter can cut MP3 format files directly without converting it into WAV format first. This will greatly consume your disk space. For one minute WAV format audio file costs about 10M bytes disk space.
* MP3 to WAV and WAV to MP3 converting support
By using Power MP3 Cutter(MP3 Sound Cutter), you can convert MP3 format files to WAV or WAV to MP3.
* Batch cutting support
Power MP3 Cutter(MP3 Sound Cutter) supports batch cutting. This is greatly useful for you to cut many files at one time.
* MPEG I/II Layer I/II/III audio format support
By supporting MPEG I/II Layer I/II/III audio format, Power MP3 Cutter(MP3 Sound Cutter) supports almost all kinds of MP3 audio files.
* Wide-range bitrate support
Power MP3 Cutter(MP3 Sound Cutter) supports a wide-range bitrate of the output file. You can set the bitrate for a target file from 32 kbps to 320 kbps as you need. This can preserve your audio file’s quality farthest.
* Millisecond/second time-display modes and millisecond precision support
For different length of audio files, you can choose different time-display modes of Power MP3 Cutter(MP3 Sound Cutter). By supporting millisecond time-precision, the cutter can fulfill much more professional needs.
* Direct fade-in and fade-out functions support
Fade-in and fade-out functions built in Power MP3 Cutter(MP3 Sound Cutter) make it easy to do some simple effects to your output audio segment.
* Unselected segment output support
Power MP3 Cutter(MP3 Sound Cutter) can export the unselected segments of a music file as the target file.
* Spectrum analyzer support
While playback audio files, the spectrum analyzer of Power MP3 Cutter(MP3 Sound Cutter) can help you find the right audio segment position.
* Simple and easy user interface
The interface of Power MP3 Cutter(MP3 Sound Cutter) is simple, you can know how to use it within 5 minutes.


Click here to download

Nidesoft 3GP Video Converter 2.0.18

Nidesoft 3GP Video Converter is powerful video converter software to convert almost all video formats to 3GP video. It could support so many video file formats,including AVI,MPEG,WMV,MOV,DivX,ASF, etc.
The 3GP movie converter software not only supports convert 3GP video, but also supports convert audio files including WAV,MP2, AC3,OGG to MP3, M4A, AAC.
With variable settings and fast converting speed to convert 3GP movie, Nidesoft 3GP...

Actual Installer 3.2


Actual Installer simplifiers the job of the software developer and makes distributing programs more cost effective and convenient even for those just getting into the industry. The program was created to help developers of any skill and experience level easily put together distributives that can be packaged with their software for distribution. These distributives are necessary so end users can install the software on their systems.

File unpacking, component checking, uninstall support, file association setting, and writing to the registry are all part of what these distributives do and what can easily be created with the Actual Installer. Additionally, the software can package auto updaters, feedback support for when users uninstall the program, multiple language installations, and more to provide even greater usefulness to software developers. This program has an easier to use interface, as well as a more affordable price. The created distributives can be used on both CD and downloadable versions of software so developers have a wide-range of distribution options available.

Regardless of the type of software being developed, the Actual Installer makes distributing it to end users less difficult while ensuring that end user receives everything needed to properly install and run the finished program.

Silver Key 3.71 Description


Every day unencrypted information sent over the Internet lands in crooks hands. Are you at risk?

Transferring sensitive information in the unencrypted form is just as “smart” as leaving a car and house unlocked all-night or walking through a high-crime area with money hanging out of pockets. Every day new stories about security holes and exploits come out and it’s not going to stop any time soon. How can one protect private data from crooks? Simply do what FBI, CIA and US Department of Defense do - always encrypt data!

Silvery Key is an affordable solution for a very costly data protection problem. Silver Key can encrypt any document using advanced encryption standard algorithms approved by the US Government. The process of encryption is a very simple one - select file, right-click it and set the password. That’s it. Only the password barer will be able to decrypt protected data. Importantly, because advanced encryption algorithms are used, the password can’t be picked easily as in case with password-protected ZIP, DOC, XLS and MDB files.

The encrypted data can then be transferred over non-secure networks, like Internet or moved via CDs, DVDs and flash drives. Importantly, Silver Key can compress data, so it takes less space. The process of decryption is even simpler than encryption. One can either enter a password or use a key file. A key file is an ordinary looking file, a JPEG image for example, that is used to unlock data. Plus all encryption and decryption can be done through the command line.

Silver Key is a great security product for home use, but businesses use it as well especially if the business must comply to the HIPAA privacy regulations for health organizations. Silver Key is probably the most affordable corporate security solution that is 100% HIPAA-compliant.


5DFly Photo Design 2.21 Description


5DFly Photo Design enables you to create photo books, calendars, greeting cards, baby announcements and other artwork from your digital photos. It offers a variety of template designs to get you started, and you can also create your own templates from scratch. The program offers a WYSIWYG editing interface with support for image layers and drag drop positioning. If you want additional control over your pictures, you can also apply image adjustments, frames, drop shadows, color conversions and other effects. The result can be saved as high-resolution images for printing or exported as Flash slideshow or PowerPoint presentation.

5DFly is free to use without time limit. Under free license, you have full functions and unlimited access to 5DFly free photo templates, but the output of your design has slight watermarks. To remove the watermark, please purchase the full version.

Key Features:

* Intelligent automatic photo template rendering - By using 5DFly Photo Design, photo template automatic rendering to your photos is automatically generated. You can design over 10 amazing photos by 3-5 mouse clicks.

* Easy-to-use powerful photo editor - Combined with photo template and image layer management edit tool, 5DFly image editor provides image frames background, monochrome, RGB saturation hue adjustment and so on.

* High resolution image output - All photo templates' resolution is 1998*1332 pixel. The photo you design can be exported to high-resolution images for printing.

* Electronic photo album like photo slideshow flash photo PowerPoint - Batch generate photo slideshow flash, PowerPoint album and share your photos with your friends.

* Easy photo templates download and installation - 5DFly team continually design very attractive photo templates for all end users and all photo templates can be easily download and install.



Template by:
Free Blog Templates