Err.. Ok i need to admit something I thought that SharpDevelop would have been a good replacement to Visual C# 2005 but I was wrong. SharpDevelop has some slight issues. E.g. I wanted a message box to pop up and say "Hello World", sounds very easy but I did everything correctly but ended up with an error. On further investigation it seems that I needed to download the ~300MB .NET Framework SDK to give SharpDevelop some full functionality. Even so after downloading the Framework and running my test program it still gave an error. This time it gives a very different sort of error. After looking into the matter even further it seems that I need to add one line close to the begining:
Then I added
under the button click procedure. And then it started working. It seems that If I want to learn something better use something that gives you less problems, there is a saying "You can't do tight rope on an old rope". So I think I will be going with Visual Studio .NET 2005 (I could use VS.NET 2008 but its still in beta and I don't have any idea as to its minimum requirement to run). Ok then I will start using VS.NET 2005 and let you know how things are doing on my end. See ya.
using System;
using MsgBox = System.Windows.Forms.MessageBox;
Then I added
MsgBox.Show ("Hello World!!!");
under the button click procedure. And then it started working. It seems that If I want to learn something better use something that gives you less problems, there is a saying "You can't do tight rope on an old rope". So I think I will be going with Visual Studio .NET 2005 (I could use VS.NET 2008 but its still in beta and I don't have any idea as to its minimum requirement to run). Ok then I will start using VS.NET 2005 and let you know how things are doing on my end. See ya.

