PDA

Click to See Complete Forum and Search --> : Downloading


key
Jun 12th, 2000, 06:35 AM
Hi,
Did anyone ever ran into problems while downloading pages via Inet? A very simple test involves Text1, Text2, Command1, and Inet1 with the following command:

Private Sub Command1_Click()
Text1.Text = Inet1.OpenURL(Text2.Text)
End Sub

The problem is that the HTML Source Code may not be complete... The code works for http://www.winamp.com, but NOT for http://www.getright.com . Anyone know why this happens and how to solve this?

Thanks in advance :)

Crypt
Jun 12th, 2000, 08:20 AM
Microsoft inet control can only download relatively small pages, it often times out when attempting to download larger pages. Also if it does manage to download a larger webpage it might not all fit into a normal size text box you might want to consider using a rich text box instead. As for it timing out for smaller pages, I'd use winsock to download a page personally.