C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2720
Number of posts: 5746

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
C# image changer help Posted by ZeroOverRid on 19 Dec 2005 at 3:00 PM
ok i am trying to click a button and when i click it , it will change the BackGroundImage. here the code for it .
private void button1_Click_1(object sender, System.EventArgs e)
		{
			Image image = Image.FromFile("C:\\j.jpeg");
			Image picture = Image.FromFile("C:\\h.jpeg");
			int i;
			i = 2;
			if( i > 3)
			{
				BackgroundImage = picture;
			}
			else
				BackgroundImage = image;
		}

and then i get this message after it excutes with no errors
An unhandled exception of type 'System.IO.FileNotFoundException' occurred in system.drawing.dll
additional information: C:\j.jpeg
Report
Re: C# image changer help Posted by weicco on 19 Dec 2005 at 11:16 PM
: ok i am trying to click a button and when i click it , it will change the BackGroundImage. here the code for it .
:
: private void button1_Click_1(object sender, System.EventArgs e)
: 		{

if (!System.IO.File.Exists("C:\\j.jpeg"))
{
    MessageBox.Show("There is no such file as C:\\j.jpeg");
    return;
}

: 			Image image = Image.FromFile("C:\\j.jpeg");

if (!System.IO.File.Exists("C:\\h.jpeg"))
{
    MessageBox.Show("There is no such file as C:\\h.jpeg");
    return;
}

: 			Image picture = Image.FromFile("C:\\h.jpeg");
: 			int i;
: 			i = 2;
: 			if( i > 3)
: 			{
: 				BackgroundImage = picture;
: 			}
: 			else
: 				BackgroundImage = image;
: 		}
: 

: and then i get this message after it excutes with no errors
: An unhandled exception of type 'System.IO.FileNotFoundException' occurred in system.drawing.dll
: additional information: C:\j.jpeg
:

Report
Re: C# image changer help Posted by twainiqolo on 19 Feb 2009 at 6:55 AM
try use a bmp or PNG file format. If you convert the c.jpeg file to either c.bmp or c.PNG, it will work



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.