M
Me
I downloaded a JPG stream from a URI using a WebRequest
Request = WebRequest.Create(http://myWebpage.jpg)
Response = Request.GetResponse
ResponseStream = Response.GetResponseStream
I then convert the response to a bitmap file
PictureBox1.Image = New Bitmap(ResponseStream)
What I would like to do now is to to save the file to the PDA?
Is there any straightforward, easy way to do this in CF?
Thanks,
Gigi
Request = WebRequest.Create(http://myWebpage.jpg)
Response = Request.GetResponse
ResponseStream = Response.GetResponseStream
I then convert the response to a bitmap file
PictureBox1.Image = New Bitmap(ResponseStream)
What I would like to do now is to to save the file to the PDA?
Is there any straightforward, easy way to do this in CF?
Thanks,
Gigi