|
-
Apr 7th, 2001, 12:54 PM
#1
Thread Starter
Lively Member
I've made made simple internet Apps for home use.
For some reason a html won't download fully off this one site. It only downloads a short part of the HTML.
Any ideas why this is happening?
Here's the Code:
Dim b() As Byte
Dim strURL As String
Dim FileN
strURL = "[HTML PAGE]"
b() = Inet.OpenURL(strURL) 'icByteArray
FileN = "C:\Windows\Temp\Test.html"
Open FileN For Binary Access Write As #1
Put #1, , b()
Close #1
Shell "C:\Program Files\Internet
Explorer\IExplore.exe " & FileN, vbMaximizedFocus
Any idea why???
-Justin Gomes
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|