The type or namespace name 'Drawing' does not exist in the class or namespace 'System' (are you missing an assembly reference?)
Here is the offending code - not much:
using
System;using System.Drawing;I can access other System namespaces. I am confused.
thanks for any help,
tony
TonyPosted Feb 28, 2006, 10:15 AM
tony
AnttiPosted Feb 28, 2006, 5:31 AM
>>(are you missing an assembly reference?)
In that case, you must be missing the assembly reference to System.Drawing.dll. You can add the reference to the dll in visual studio by right clicking References icon in Solution Explorer, and selecting Add Reference... Just search the System.Drawing.dll, and click Ok. Now you are able to use the System.Drawing namespace.
Binu SubiPosted Feb 27, 2006, 4:58 PM