TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Aman Aggarwal
NA
4
0
Add image to apicture box from url in c# .net compact framework for mobile application
Jan 9 2010 7:21 AM
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(mdthumb.Url);
myRequest.Method = "GET";
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(myResponse.GetResponseStream());
myResponse.Close();
PictureBox p = new PictureBox();
p.Bounds = new Rectangle(4, yp, 120, 90);
this.Controls.Add(p);
int hgt = bmp.Height;
int wth = bmp.Width;
p.Image = bmp;
hi iam using the above code to fetch images from url . this code is inside a foeach loop. But the problem is that it returns images in disorder way i.e. some times it display image for aparticular url and sometimes not for other url.
help
help
help
help
Reply
Answers (
0
)
how to play videos in .net compact framework in c# developing application for window mobile?
WIndows CE