Hi
I have justed started to use c# and with only a simple "Hellow World" programme
I have the follwoing warnings.
Anyone explain why
Thanks.
Graham
Warning 1 Invalid search path 'C:\Program Files\Microsoft Visual Studio\VC98\mfc\lib' specified in 'LIB environment variable' -- 'The system cannot find the path specified. '
Warning 2 Invalid search path 'C:\Program Files\Microsoft Visual Studio\VC98\lib' specified in 'LIB environment variable' -- 'The system cannot find the path specified. '

Just Learning how-to-use C# - Please can these warnings be explained
Sung Kim
I had the same symptoms here.
It is because of a system variable which has been set by an old installation of Visual C++
which was never removed - even not after you de-installed this old Visual C++.
You just have to delete this system-variable on your computer in "system settings control",
"system", "extended", "environment variables". Then the compiler-warnings will disappear.
Your installation of VisualStudio 2005 is okay.
Frederic Jacqueme
OneDeveloper
Michael Taylor - 11/20/05
jadeice
VeeraMuthiah
I agree...there's something seriously wrong with your installation of Visual Studio. My advice would be to uninstall whatever versions of Visual Studio you have installed, and make sure you install one of the three versions that supports C# (Visual Studio.NET 2002, 2003, or 2005).
If you don't have access to those versions, feel free to download the Express version for free:
http://msdn.microsoft.com/vstudio/express/visualcsharp/
Writing a simple Hello, World! program in C# is covered here:
http://en.wikipedia.org/wiki/C_Sharp_programming_language
Good luck!