Click here to Skip to main content
16,005,178 members
Home / Discussions / C#
   

C#

 
GeneralRe: ShowInTaskbar causes Alt-Tab icon to disappear Pin
tom_dx2-Jul-05 15:16
tom_dx2-Jul-05 15:16 
GeneralRe: ShowInTaskbar causes Alt-Tab icon to disappear Pin
0ryan02-Jul-05 15:30
0ryan02-Jul-05 15:30 
GeneralRich text box problems Pin
snouto2-Jul-05 10:37
snouto2-Jul-05 10:37 
GeneralConfiguration problem Pin
priyanraj2-Jul-05 9:53
priyanraj2-Jul-05 9:53 
GeneralRe: Configuration problem Pin
Guffa2-Jul-05 11:36
Guffa2-Jul-05 11:36 
GeneralRe: Configuration problem Pin
priyanraj2-Jul-05 21:04
priyanraj2-Jul-05 21:04 
GeneralRe: Configuration problem Pin
S. Senthil Kumar3-Jul-05 3:35
S. Senthil Kumar3-Jul-05 3:35 
GeneralRe: Configuration problem Pin
priyanraj4-Jul-05 7:18
priyanraj4-Jul-05 7:18 
I have added the System.drawing.dll as a reference buts its still giving the same error.I m pasting the error here

An unhandled exception of type 'System.IO.FileNotFoundException' occurred in system.windows.forms.dll

Additional information: File or assembly name System.Drawing, or one of its dependencies, was not found.





and the code is :
static void Main()
{
Application.Run(new Form1());
} (its showing error in this line)
private void Form1_Load(object sender,System.EventArgs e)
{
//blank
}

private void button1_Click(object sender, System.EventArgs e)
{

string value1 = textBox1.Text;
MessageBox.Show("Selected X label is " + value1);
string value2 = textBox2.Text;
MessageBox.Show("Selected Y label is "+value2);
string value3 = textBox3.Text;
string value4 = textBox4.Text;
GraphPane myPane;
myPane = new GraphPane( new Rectangle( 40, 40, 600, 400 ),
"My Test Graph\n(For CodeProject Sample)",
"My X Axis",
"My Y Axis" );
myPane.Draw(this.CreateGraphics());
Generalurgent help please Pin
amarsumanth2-Jul-05 7:09
amarsumanth2-Jul-05 7:09 
GeneralRe: urgent help please Pin
S. Senthil Kumar3-Jul-05 3:29
S. Senthil Kumar3-Jul-05 3:29 
GeneralRe: urgent help please Pin
Dave Kreskowiak3-Jul-05 14:17
mveDave Kreskowiak3-Jul-05 14:17 
GeneralRe: urgent help please Pin
ksanju10008-Jul-05 19:35
ksanju10008-Jul-05 19:35 
GeneralRichttextbox - Fontstyles Pin
moon442-Jul-05 6:12
moon442-Jul-05 6:12 
GeneralRe: Richttextbox - Fontstyles Pin
Dario Solera2-Jul-05 6:24
Dario Solera2-Jul-05 6:24 
GeneralRe: Richttextbox - Fontstyles Pin
moon442-Jul-05 7:54
moon442-Jul-05 7:54 
GeneralRe: Richttextbox - Fontstyles Pin
Dario Solera2-Jul-05 22:30
Dario Solera2-Jul-05 22:30 
Question2nd code for - boolean error ? Pin
fracalifa2-Jul-05 0:56
fracalifa2-Jul-05 0:56 
AnswerRe: 2nd code for - boolean error ? Pin
leppie2-Jul-05 6:35
leppie2-Jul-05 6:35 
AnswerRe: 2nd code for - boolean error ? Pin
Robert Rohde2-Jul-05 6:50
Robert Rohde2-Jul-05 6:50 
GeneralRe: 2nd code for - boolean error ? Pin
fracalifa2-Jul-05 7:01
fracalifa2-Jul-05 7:01 
GeneralRe: 2nd code for - boolean error ? Pin
Guffa2-Jul-05 7:22
Guffa2-Jul-05 7:22 
GeneralRe: 2nd code for - boolean error ? Pin
DavidNohejl2-Jul-05 7:31
DavidNohejl2-Jul-05 7:31 
AnswerOT Pin
DavidNohejl2-Jul-05 6:57
DavidNohejl2-Jul-05 6:57 
GeneralRe: OT Pin
fracalifa2-Jul-05 7:04
fracalifa2-Jul-05 7:04 
GeneralRe: OT Pin
DavidNohejl2-Jul-05 7:17
DavidNohejl2-Jul-05 7:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.