Download File from the WEB
I have a VB 2003 windows app that downloads file from the net thus:-
Code:
Dim myWebClient As New System.Net.WebClient
myWebClient.DownloadFile(Filename)
I now have a VB2005 Smartdevice app that needs to do the same thing,but Webclient is not available in system.net namespace for a smartdevice app.
How can I download a file on a smartdevice?
Re: Download File from the WEB
Not sure if that's what you want but take a look.
http://www.vbforums.com/showthread.php?t=479412
Re: Download File from the WEB