Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Sorry about misleading subject, Ive edited my post!I want to know whats the replacement for WebClient in VB6?What should I do in VB6?[code=vb]Dim MyClient As WebClient = New WebClientDim MyData As Stream = NothingDim MyReader As StreamReader = NothingDim MyResponse As String = NothingMyData = MyClient.OpenRead(MyString)MyReader = New StreamReader(MyData)MsgBox MyReader.ReadToEnd()[/code]I need to something like this in VB6?
Sorry about misleading subject, Ive edited my post!
I want to know whats the replacement for WebClient in VB6?
What should I do in VB6?
[code=vb]
Dim MyClient As WebClient = New WebClient
Dim MyData As Stream = Nothing
Dim MyReader As StreamReader = Nothing
Dim MyResponse As String = Nothing
MyData = MyClient.OpenRead(MyString)
MyReader = New StreamReader(MyData)
MsgBox MyReader.ReadToEnd()
[/code]
I need to something like this in VB6?