We’re excited to announce that you can now promote (or any of our ) and earn 40% of every sale resulting from your promotion!
It’s easy to join. Just send us an with your request, and we’ll provide a URL with your affiliate ID that you can use on your web site, blog, newsletter, email signature, etc.
Whenever a user visits our site via that URL, a browser cookie with your affiliate ID will be stored in the user’s computer. If that user visits our order page within a year and makes a purchase, the affiliate ID will be provided to us with the purchase information.
For every order containing your affiliate ID, we’ll pay you 40% of the purchase price. We will send payment via PayPal each month that you have one or more affiliate sales.
, another exceptional application from , recently got even better with the release of version 1.4. Many new features have been added, including Recurring Reminders, increased integration with Microsoft Outlook, Internet Explorer and other browsers, folder synchronization capabilities, etc.
Only recently joining the ranks of personal information management (PIM) programs, its advanced features, high-performance and paradigm-redefining innovation and fresh design cause it to stand out from the competition. With the capability to store and index anything on a computer, Logical Linking technology which turbocharges hierarchical relationships, a powerful Advanced Search engine, and the ability to keep everything in a single, optimized data file, it really is in a class by itself!
Value at every level
With a price of just $99 USD, it isn’t hard to imagine Ultra Recall providing a significant return on investment (ROI). An application you will use everyday, it simply represents an awesome value. But the fact that a PIM application is used so extensively highlights what might be even more valuable than the features embodied in Ultra Recall: the support behind the product!
As is mentioned above, the PIM marketplace is filled with a wide range of entries, from minimal unsupported open source utilities to very complicated, expensive programs which are hard to understand. Very few reach the point where they are viable for daily use with real life data. They invariably fail far short in at least one of the following areas: features, performance, reliability, documentation, active development or support.
Written from the ground up for performance and stability, by award-winning Kinook Software, Ultra Recall passes the test in every area:
- features - Ultra Recall is feature rich, flexible, and powerful, yet is intuitive enough for casual use “out of the box”
- performance - even if you manage Gigabytes of information in Ultra Recall, its performance remains consistent and responsive.
- reliablility - written from the ground up for performance with stability, it just works, and works well!
- documentation - several included samples a complete help file (also available ) and an active forum are all available.
- active development - with full-time developers assigned and a track record of regular product updates and a responsive staff, you can rest assured Ultra Recall will remain an industry leader with the features you need.
- support - exceptional service is already the reputation of Kinook Software which will certainly continue with .
Try it today!
Download a copy of Ultra Recall today and see for yourself what you are missing. Time savings, increased productivity and the confidence you will experience as you put Ultra Recall to work organizing your life await you!
A new sample has recently been added to , called Journal.urd. While Ultra Recall can do much more than just managing a journal, it is very good at the task, which this sample highlights. The sample demonstrates using templates and other Ultra Recall features, and contains a pre-configured journal hierarchy. A flash tutorial about managing a journal in Ultra Recall is also available .
The Journal.urd sample shows one method of creating a journal hierarchy in Ultra Recall, but you are certainly not constrained to this design, the flexibility of Ultra Recall allows limitless configurations. The sample uses three custom templates (Year, Month, and Journal Entry), which makes it very simple to add Journal Entries which are organized by Year and Month, yet be fully searchable. Custom icons were assigned to the different templates which further highlights the different parts of the journal.
There are many reasons why Ultra Recall is a great application for a journal:
All data is stored in a single file: this makes it very easy to backup, or transport your journal
Strong password encryption: a single password will ensure your journal is secure, even if it is located on a USB drive or other transportable media
Powerful and flexible search capabilities: as your journal grows, you will have the confidence that you can find the information if you need to
Automatic spell-checking: similar to the spell-checking available in Microsoft Office, this feature helps you avoid typos
Custom templates: this feature is demonstrated in the sample, and is used to add structure and convenience to your journal experience
Ability to add supporting information (documents, emails, web pages, etc): this is the real beauty of Ultra Recall, it can function as a regular outlining application, but also has the flexibility to do much more, by storing essentially anything!
Logical Linking: if you can’t decide what a topic is relatd to, this technology will let you link it to them all! Very handy in a topical hierarchy like a journal
No limits on journal size: since Ultra Recall uses the SQLite embedded database engine, it provides high performance with consistent performance regardless of file size. You won’t be constrained to any artificial organization limitations with Ultra Recall!
Other applications can be used to manage a journal, but Ultra Recall excels at the task, while offering many additional capabilities. Ultra Recall quickly becomes indispensable, by managing your scheduled tasks; archiving your emails, documents, web pages and text together, organized topically, chronologically, etc; then facilitating the recall of everything added with powerful search capabilities.
Our are written primarily in . We started with Visual C++ 6.0 back in 1998 and used it successfully for many years.
VC7
There was quite a bit of disappointment among C++ developers with the release of Visual Studio .NET (VC7) in 2002 and VS .NET 2003 (VC7.1) the following year because of so much emphasis placed on the new and VB.NET and C# languages. But with some trepidation and a moderate amount of pain, we finally migrated to VC7.1 in mid-2005. Other than some quirks in the resource editor that we managed to work around, that version worked well for us (with the requisite additions of and add-ins). It brought much-needed improvements to standards compliance, some library improvements, and was fairly stable, although compilation was a little slower and the executables slightly larger than VC6.
VC8
In early 2007, we experimented with upgrading to (VC8) but ran into a lot of problems attempting to get everything to compile and link properly. Microsoft also made some changes to how LIB files are handled, and one third-party library we use did not offer a VC8-compatible library at the time, so we shelved the conversion.
With Microsoft readying the release of (VC9) and the availability of VC8-compatible third-party libraries, we decided it was time to attempt migrating one more time. We thought it would be easier to convert to VC8 first and then try VC9 after that, but boy did that turn out to be a poor assumption.
VC8 didn’t do a great job of converting our project and solution files, requiring manual correction (Build checkboxes in the Configuration Manager and dependencies getting dropped). We also ran into several compilation and linker issues to work through, including:
Several code changes were required to eliminate warning messages related to using the new safe CRT functions calls, etc.
Had to increase the compiler limits (/Zm) on some projects
Warning for non-standard extension used in qualified name for enums
Disabled manifest generation and embedding (since our executables already include a manifest)
Thanks to ’s built-in support for all Visual Studio releases, updating our builds was painless (only needing to append ‘|Win32′ to the solution configuration names).
Once we finally got everything to compile and link, we ran into several runtime problems and had to make some more changes, primarily:
Avoid referencing &elem[0] of empty vectors (it’s safe to pass that to memcpy with a length of 0, for instance, but VC8 aborts the program just by referencing the element)
Make changes to bring STL iterator code (which assumes they are pointers) into compliance
Most problems were identified quickly and corrected in the debug build, but even with these changes, we ran into two show-stoppers:
Choosing one feature in one of our applications resulted in the app just disappearing, and this only occurred in the release build on a Windows 2000 box.
Command-line builds worked fine, but compiling almost any file in any project within the Visual Studio IDE resulted in the dreaded (ICE), which made development and debugging unbearable.
VC9
We were about to give up and stick with VC7.1, but as a last-ditch effort, we decided to try migrating everything to VC9. We encountered a few more compilation issues:
Some of our projects defined a minimum Windows version of NT 4 (_WIN32_WINNT 0×0400), which now resulted in compile errors, but changing this to Windows 2000 (0×0500) fixed that and is safe since our applications require Windows 2000 anyway
The 64-bit portability check compiler flag is deprecated so we removed that directive from the project files
MFC no longer handles including of afximpl.h very nicely, so we just copied the few lines of code we used from that file into our own sources and removed the include
After these changes, low and behold, we found that everything worked just great! No more crashing of the compiler when building in the IDE, and no more problems running our application on Windows 2000. Our executables are larger still (about 10%), which is acceptable considering all the improvements that have been added to make the code more secure in our connected world.
It’s apparent that Microsoft has really put significant effort into improving their C++ tool chain with this release of Visual Studio, and there are many great IDE improvements as well:
The debugger, especially peering into STL containers, has improved tremendously
The resource editor is improved and now handles high color bitmaps
VS/MSBuild now supports parallel builds on multi-core and multi-CPU systems (and builds do appear to be noticeably faster on such systems)
New features like testing, optimization, code snippets, and property manager capabilities
Easy backup, restore, and sharing of IDE settings
One caveat that bit us: Visual Studio 2008 requires Windows XP or later, and our build boxes were all Windows 2000, so we had to reconstruct the build machines. There is also a quirk with the Visual Studio 2008 — it doesn’t install cl.exe and some ancillary files unless you perform a full installation.
Overall, it took longer than expected to complete the migration, but fortunately it turned out to be worthwhile in the end.
None of the popular , nor itself, do a very good job of integrating an already-running application. LaunchAssist is a little utility I wrote to improve this situation. It works with most application launchers as well as the Windows Start Menu, Run dialog, Explorer, etc. To install, download it , extract it somewhere onto your hard drive, then register by double-clicking reg.bat (to uninstall, double-click unreg.bat, restart Windows, and delete the DLL). It works on Windows 2000, XP, and 2003, but unfortunately the that is needed for it to work was in Vista (and despite what is stated in that thread, it can’t actually be fully enabled on Vista).
When an executable, document, or shortcut is launched, LaunchAssist is notified, looks for a matching application that is already running (by comparing the application or document filename with the beginning and ending of top-level window captions), and activates the matching window if found. If no match is found or if Shift is held down while launching (Shift+Enter in most launcher apps), LaunchAssist is bypassed and the program is launched normally by Windows.
Bonus feature: when launching URLs, if Shift is held down, LaunchAssist attempts to open the URL in a new browser window (for URLs, if Shift is not held down, LaunchAssist is bypassed). This is useful to me since I still use the venerable (since I disdain ), configured to when launching shortcuts, but sometimes I do want to open a new window instead. It works by finding the application associated with .html and launching it directly, which should work with most browsers.
Several categories of Windows have evolved over the past several years. In this post, I’ll look at the best and most popular products in each category. I’m only going to mention products that are either quite stable or that have been updated recently.
Auto-Config
Products in this category typically provide a polished GUI, automatically track the shortcuts on your system (Start Menu, recently launched apps and documents, etc.), and are summoned via a single hotkey. Typing a few characters will filter from the list of installed applications to quickly find the desired the one to launch, and pressing Enter launches it. The idea is to avoid having to configure anything, and (hopefully) the application quickly learns your habits and remembers the best matches for frequently typed abbreviations.
Many applications in this category also provide additional features (for instance, capture of selected text from current app, web search, inline calculator, auto-type from abbreviations, etc.) and support a plug-in architecture for user extensibility.
Single Key Launchers
Launchers in this category provide a more basic interface (typically text-only and no icons) that is more like the Run dialog on steroids. They are also launched with a single hotkey, and filter on the text you type to identify user-defined abbreviations which launch an application, open a web page, etc.
Start Menu Replacements
These applications attempt to provide a better alternative to the Windows Start Menu.
Typing Activated
Applications in this category provide a minimal user interface. Rather than summoning the application with a hotkey, you actually type into whatever application you’re in, and when the application identifies some abbreviation that you’ve defined, it pops up a confirmation prompt. Confirming the prompt erases the typed text from the current application and launches the application (or performs other functionality, such as typing boilerplate text) connected to that abbreviation.
Some products overlap multiple categories. I’ll look more in depth at some of these applications in future posts. Some additional categories that I won’t explore are hotkey programs, full-fledged macro programs, programmable keyboards, toolbar (mouse-centric) applications, and voice-activated launchers.
A few months back, I switched from to for my personal email account, primarily because of its excellent . Yesterday, I encountered the first spam message to erroneously end up in my Inbox. Compare that with Yahoo! Mail, where I averaged a couple of uncaught spam nearly every day. Very impressive filtering.
The built-in Explorer application in Windows is rather wimpy, and every power user soon looks for a decent replacement. I looked at dozens of alternatives before settling on , a dual-pane Explorer replacement.
AB Commander’s dual-pane view suits me well, since I often need to deal with two folders at a time, but rarely more than that. In contrast to Explorer, AB Commander is very keyboard friendly, providing shortcuts for almost every activity (although the shortcuts are not customizable). No matter where you are, navigating is very quick:
Enter navigates into a folder
Backspace navigates back a level; Alt+Backspace navigates to the root of the current drive
For every folder that is visited, it remembers and reselects the subfolder that was previously selected
Alt+Left and Right Arrow go forward and back in the navigation history
Ctrl+D, letter navigates to a given drive
Alt+D or Ctrl+J can be used to navigate directly to a folder (and provides a drop-down list of recently accessed folders)
Ctrl+G displays a list of common and recent folders for navigating directly to
Ctrl+H displays the history of recently accessed folders
Ctrl+O shows a list of favorite folders
AB Commander does a good job of leveraging the existing Windows shell rendering and navigation capabilities while adding lots of functionality that is missing from Explorer itself. It can also completely replace Explorer for most shell integration (display virtual folders, take over Windows+E shortcut and association with folders, show regular Explorer context menu, etc.). Some of the additional features I use frequently include filtering, favorites, history, quick editing, and drive and new folder shortcuts.
AB Commander has been very stable for me on Windows XP, the latest release supports Windows Vista, and an x64 edition is also available. If you’re looking for a Windows Explorer replacement, AB Commander should be on your list to evaluate.
Launching and switching between applications are two very common activities when using Windows. Keyboard aficionados will naturally seek to minimize the work involved in such common tasks. For launching applications, Windows provides the (accessed from the keyboard via the Windows key or Ctrl+Esc), the toolbar (Win+Tab, Tab), (Win+D), and the Run dialog (Win+R). For managing running programs, Windows provides the (Win+Tab) and Alt+Tab window. Other than a few innovations in the Start Menu, such as recent and pinned items and highlighting of recently installed programs, little changed in these features between Windows 95 and Windows 2003. They aren’t the most robust implementations:
The Start Menu tends to end up as a cluttered, unordered mess that nobody wants to waste their time wading through. The recent/pinned items help, but only in some circumstances.
The Alt+Tab window only supports navigating one item at a time via Alt+Tab or Alt+Shift+Tab.
Quick Launch and the Taskbar are not really very quick for keyboard fanatics.
The Run Dialog isn’t resizable, only remembers the last 30 items entered, and doesn’t show icons.
Each feature is isolated, requiring extra thought on the user’s part to decide/remember which keystroke or place to look for each operation.
Windows did make some improvements in this area, but not enough to get very excited about.
The Start Menu provides a search capability, which is a big improvement, but it is fairly limited compared to other implementations (searches only match on contiguously typed characters, so ‘internet’ or ‘explore’ can be used to find Internet Explorer, but not ‘ie’ or ‘iexp’; there is no memory of abbreviations to your choice of a match [for instance, to ensure that ‘oe’ always matches Outlook Express after you choose it even if something else matched first initially], etc.).
Alt+Tab shows thumbnails and can be navigated via arrows keys and Home/End, but it still doesn’t provide a way to group related windows.
The flashy, but not very useful, Flip 3D (Win+Tab) has been added (taking away quick keyboard access to the Taskbar).
Each feature is still separate, rather than being unified into a more intuitive design.
These limitations have, of course, spawned a whole cottage industry of products that attempt to improve on various aspects of launching and switching between applications. These days, there are literally dozens of such applications available that take various approaches to solving the problem. I’ve evaluated and used many of them in my ongoing quest for the ultimate in application launching and task switching, and I’ll be reviewing some in future blog posts.
In my opinion, one of the biggest problems is that there are simply too many ways to launch and switch between programs. These features need to be unified. You shouldn’t have to use Quick Launch or the desktop for common applications but then hunt through the Start Menu for less common programs, or distinguish between launching a program vs. switching to an already-running application, etc. Surprisingly, with all of the programs that are trying to fill this void, nobody has yet managed to combine these capabilities into a single, intuitive interface.
One of the great things about is that it is flexible enough to be used for a variety of purposes (of course, that very flexibility makes it a bit challenging to market, and that’s one of the reasons for this blog).
One use that Ultra Recall excels at is data archiving. Here at Kinook, we file all of our business documents, including emails, invoices, purchases, faxes, tax documents, and more, in an Ultra Recall database. The database is located on the network for easy access by multiple users and so that it gets included in our nightly backup process.
Whenever someone needs to lookup any information, the database can be quickly opened and instantly searched by name, email address, subject, any text in the stored documents, or other attribute (metadata) values. One benefit of archiving this information in one database is that we only have to look in one place, regardless of what type of data we might be looking for. We use both Outlook and Outlook Express for email, but since Ultra Recall can store both types of messages, we can locate any email message (as well as Word, PDF, and other documents) in one step.
Another benefit is that we only have to backup one file to ensure that all of our data can be recovered if and when our server’s hard drive goes south. We don’t have to mess with backing up users’ personal email and document folders, and everyone can easily access the documents.