try
{
System.Net.WebRequest request =
System.Net.WebRequest.Create(
"http://www.웹주소.com/logo.jpg");
System.Net.WebResponse response = request.GetResponse();
System.IO.Stream responseStream =
response.GetResponseStream();
Bitmap bitmap2 = new Bitmap(responseStream);
g.DrawImage(bitmap2, _x, _y, 140, 21);
}
catch (System.Net.WebException)
{
Set_Values(g, 9, _x, _y, 140, 21, "NO IMAGE");
MessageBox.Show("There was an error opening the image file."
+ "Check the URL");
}
'020. Prigraming > 01. C#' 카테고리의 다른 글
[C#] .net 3.0 LINQ (0) | 2010.05.03 |
---|---|
[C#] 프로시저 호출 방법 (0) | 2010.04.27 |
[C#] 다수개의 버튼이 동일한 기능을 구현하고자 할때 (2) | 2010.03.29 |
[C#] 내 컴퓨터에 설치된 프린터 알아오기 (0) | 2010.03.10 |
[C#] 알아두면 유용한 기능 정리 (0) | 2010.03.03 |
WRITTEN BY
- 테네시왈츠
항상 겸손하게 항상 새롭게 항상 진실하게