qry in web services

srivalli

Well-known member
Joined
May 4, 2005
Messages
189
Programming Experience
Beginner
i am trying to import system.drawing
can i do it
but it is not coming
so what do i do
 
To use an imports statement for a namespace, you must have a reference to that namespace. Does your project have a reference to the System.Drawing namespace? Also note that it should read Imports System.Drawing
 
can u be a bit clear on ur statement

i am trying to import system.drawing in my web service
but drawing class is not in the list so what do i do?
thks
Paszt said:
To use an imports statement for a namespace, you must have a reference to that namespace. Does your project have a reference to the System.Drawing namespace? Also note that it should read Imports System.Drawing
 
Add a reference to it!
To add a reference, right click on References in the solution explorer and select 'Add Reference...' then on the .NET tab select System.Drawing.dll.
 
Back
Top