Zalmoxis Blog Rotating Header Image

software development

Authorization Store for .Net – .NET Sql Authorization Manager (NetSqlAzMan)

Recently I started looking for best way to implement authorization for my Smart Client application (Windows Forms application communicating with WCF Services). At firs I considered the MS AzMan (Microsoft Authorization Manager) with Security Application Block from Microsoft Enterprise Library. But AzMan requires Windows 2003 Server. Then I thought about implementing my own authorization components.  And all of a sudden after researching using all my search engine skills I have found a solutions and it is the .Net Sql Authorization Manager (NetSqlAzMan). (more…)

Popularity: 1% [?]

Visual Studio 2008 New Features

This is a list of the cool new features in Visual Studio 2008:

  1. When you debug your applications with Visual Studio 2008 you will have the option to debug right down into the Framework code (with an autodownload feature from an MSDN server)! read more
  2. Automatic properties in C#3
  3. (more…)

Popularity: 1% [?]

Non-Recursive Binary Tree Traverse in C#

private void NonRecursive()        {            TreeNode currNode = root;            while (true)            {                if (currNode == null)                    break;

 (more...)

Popularity: 1% [?]

Install new release of GAX

  • Double check to make sure you have all the Guidance packages uninstalled.
  • Try launching an elevated CMD prompt, and then using the original MSI run, “msiexec /x GuidanceAutomationExtensions.msi”
  • If that still doesn’t work, in the same elevated CMD prompt, repair the GAX install. “msiexec /fa GuidanceAutomationExtensions.msi”
  • NOW try to uninstall it via the elevated CMD prompt, “msiexec /x GuidanceAutomationExtensions.msi”

Popularity: 1% [?]

Upgrade from Visual Studio Trial Edition

Sometimes when we try to upgrade from trial to full as it is explained here Upgrade from Visual Studio Trial Edition and here Upgrade From Visual Studio 2005 Trial Version the updade option may be missing.
To fix this you must run the Visual Studio 2005 setup from the installation media: Then the upgrade option will be there. icon smile Upgrade from Visual Studio Trial Edition

Popularity: 1% [?]