SIMIN Posted December 9, 2008 Posted December 9, 2008 (edited) Sorry about misleading subject, I've edited my post! I want to know what's the replacement for WebClient in VB6? What should I do in VB6? 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() I need to something like this in VB6? Edited December 9, 2008 by SIMIN Quote
Administrators PlausiblyDamp Posted December 9, 2008 Administrators Posted December 9, 2008 I seem to remember VB6 having a winsock control (winsock.ocx and / or inet.ocx I think), - they would probably be the best starting point. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.