C
Curious
I have to use .NET 1.1 and Visual Studio 2003.
I need to display messagebox. So I have:
MessageBox.Show(
string.Format("Cash is {0} for
{1}, list: {2}. It is lower than the allowed lower bound {3}!",
cashR.CashForToday,
cashR.Sector, s.List, cashR.LowerBound), "Total Cash Watch");
However, this gives me a compiling error about missing an assembly
namespace.
So I try to add the following:
using System.Windows.Forms;
However, in the intellisense, there is no "Windows" under "System". It
doesn't seem that there is such namespace, "System.Windows.Forms",
in .NET 1.1.
Any advice on how to get MessageBox to compile? Thanks!
I need to display messagebox. So I have:
MessageBox.Show(
string.Format("Cash is {0} for
{1}, list: {2}. It is lower than the allowed lower bound {3}!",
cashR.CashForToday,
cashR.Sector, s.List, cashR.LowerBound), "Total Cash Watch");
However, this gives me a compiling error about missing an assembly
namespace.
So I try to add the following:
using System.Windows.Forms;
However, in the intellisense, there is no "Windows" under "System". It
doesn't seem that there is such namespace, "System.Windows.Forms",
in .NET 1.1.
Any advice on how to get MessageBox to compile? Thanks!