LIFO and FIFO (Stack and Queue)

Well, I was working on one of the projects which required the use of the FIFO and LIFO data structures. Since the project was based on .NET, I had no trouble at all implementing the same.
The System.Collections namespace provides us with the classes required to implement FIFO and LIFO.
Declare the queue:
Queue myQ = new Queue(5);
To [...]

Error to use a section registered as allowDefinition=’MachineToApplication’ beyond application level

I have been giving the Visual Studio 2008 Beta 2 a whirl and the first thing I wanted to do was to open my existing project targeted for .Net Framework 2.0 in Orcas beta. The good thing about the conversion wizard is unlike the the 2005 conversion wizard which converts all projects to use the [...]

Visual Studio 2008 Beta 2

Microsoft has released the Visual Studio 2008 beta 2 (formerly code named ‘Orcas’). Click here to download and give it a whirl!

Applying Style Sheets in Microsoft Visual Studio 2005

When trying to attach style sheets in Visual Studio I was wondering if there is an easier way to do so rather than typing the entire markup in the HTML view.

Check this out…

- Open up the Designer view of the page you want to apply the style
- From the Solution Explorer just drag and drop [...]