Tip #5: Get 25GB Online Free Storage
Do you want 25 GB of free storage that can be accessed from anywhere you have Internet connection?
Microsoft is offering 25 GB free online storage through SkyDrive. The drawback of this service is that you can only access files through a browser and if you want drag/drop facilities you must use Internet Explorer.
Gladinet is developing a tool for mapping online drives as network drives. Using it you can map SkyDrive (and other services like GoogleDocs, Amazon S3, etc) in Windows Explorer. It is not the fastest or easy most solution but there is no other to map SkyDrive.
After you install Gladinet Cloud Desktop and configure it (it has an easy to use wizard) you get one more drive in My Computer that will contain subfolders for each online service you use. You can move files there just like they were local. Must mention that the sync is not instant. There is a tasks queue so each file is put in this queue and uploaded only after the previous has finished. Each operation works like this so you might no see online changes immediately.
Gladinet Cloud Desktop is available in two versions: free and pro. The free version has a file limit of 1000 files/batch which, I think, should be enough for most users.
Register for SkyDrive and download Gladinet Cloud Desktop.
Tip 2: #if
This is a C# tip
When the C# compiler encounters an #if directive, followed eventually by an #endif directive, it will compile the code between the directives only if the specified symbol is defined. Unlike C and C++, you cannot assign a numeric value to a symbol; the #if statement in C# is Boolean and only tests whether the symbol has been defined or not.
A predefined (by default) symbol on the “Debug” build configuration is DEBUG. Using this symbol you can define code that will be compiled only in Debug; for example, a debug window will be shown only when needed.
using System; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { #if DEBUG Console.WriteLine("Debugging information"); #endif Console.WriteLine("Code that always executes"); } } } |
The code above will print “Debugging information” and “Code that always executes” when build on Debug and will display only “Code that always executes” when build on another configuration.
You can suppress the definition of the DEBUG symbol from the project properties or by removing the DEBUG from the build argument “/define:DEBUG”. Also, you can define your own symbols in order to accommodate your needs.
Define as many build configurations and symbols you need but don’t abuse this feature!
Tip #1: Backup Outlook 2007 Accounts’ Information
This is a series of different tips and tricks for computer users. It will include: software usage tip, hacks, development tips, hardware tips, etc.
I will try to post tips every day but I don’t know if my schedule will allow me.
—
When you need to reinstall Windows and/or Outlook you might backup the .pst files (Outlook data files). Unfortunately these files do not contain account information. After reinstall and restore of backup files you need to reenter all information about each account which is a boring process – at least for me because I have 5 e-mail accounts.
If you want to backup accounts information you have to export the “HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook” key from Registry.
Export accounts’ information:
Start the Registry Editor (Start -> Run -> “regedit”) – in Windows Vista/7 you need administrative rights to start it.- Navigate to the previously mentioned branch (HKEY_CURRENT_USER\Software\ … ).
- Right click the “Outlook” tree node.
- Choose export.
- Name the file accordingly.
- Click “Save”
After reinstalling Outlook, you have to import the accounts. Follow the steps below for this:
Import accounts’ information:
- Double click the exported file.
- Choose “Yes” when asked if you really want to import.

