Question Downloading .rar and extract.

passie

Member
Joined
Mar 11, 2009
Messages
6
Programming Experience
1-3
Hello,
i have 2 questions as following:
1. How to extract .rar?
2. How to check if download is done?

at point 1. i got not clue how to do it i found systems but it need to be in my auto-updater...

at point 2. i know how to download something but how i can check when its done i got following for download
VB.NET:
If My.Computer.Network.Ping("www.forcx.org") Then
My.Computer.Network.DownloadFile("http://www.forcx.net/neoncube.zip", ".\update.zip")
Else
MsgBox("Update is currectly not available!")
Form1.Show()
Me.Close()
End If

hope someone can help me with this one to :D

~passie
 
Have you read the documentation for WebClient class and the code examples there?
 
you didn't give me a website or somewhere to look at it
I was simply referring to the help system Visual Studio and documentation for the .Net library. It is also avalable online at MSDN Library, but you make things much easier for yourself by installing it locally IMO. Without it you're pretty much helpless ;)
 
I was simply referring to the help system Visual Studio and documentation for the .Net library. It is also avalable online at MSDN Library, but you make things much easier for yourself by installing it locally IMO. Without it you're pretty much helpless ;)
i fixed it diffrent way,
checking on the size of it and where it download from.

~Passie
 
Back
Top