no, i've tried that too!? unless there is something special about using icString
i'll try!
Main Topics
Browse All TopicsHi,
I'm trying to access the full source code of this url:
https://www.aanet.com.au/u
using the https protocol in the inet control
i seem to only get the first 11 characters of the source code, not the whole lot as expected!
please help me!
i have blah = inet.Execute("https://www.
so far, which should, but doesn't work for me.
thanks
andrew.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
HI!
Here's something that may help:
Download...
http://www.planetsourcecod
Description: Very thorough MSWinsock tutorial. Includes connecting to servers, extracting HTML source from a page, get server...
That's it!
glass cookie :)
It's strange!
This:
Private Sub Command1_Click()
MsgBox Inet1.OpenURL("https://www
End Sub
gave me the whole string (9569169127,17112655126,20
Private Sub Form_Load()
MsgBox Inet1.OpenURL("https://www
End Sub
gives me just "9569169127,"
and no more
i'm using the microsoft internet controls 6.0 is that right?
Hmm, this is very strange.
Private Sub Command1_Click()
MsgBox Inet1.OpenURL("https://www
End Sub
Returns 9571431590,17148995110,200
Do you have any type of firewall or proxy that might be interfering with the function? In the past I have seen Norton Internet Security interfering with things like this, causing seemingly inexplicable problems...
What type of Internet connection do you have?
-Burbble
"<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">"
"<HTML><HEAD>"
"<META http-equiv=Content-Type content="text/html; charset=iso-8859-1"></HEAD
"<BODY></BODY></HTML>"
That's all I get using MSN Explorer. I don't know what all you're getting. And, when I went to that site, it wanted me to download a php file. Is that what it's supposed to do?
Of course, if you're talking about the download, I'm not sure how to view the source of a php file in VB or even in Internet Explorer.
Sorry, and I do hope you find the answer to this.
Patrick.
Private Sub mnuEditViewSource_Click()
Dim cap As String
On Error GoTo esource
frmSource.Text1.Text = WebBrowser1.Document.docum
frmSource.Caption = cap
frmSource.Show
esource:
End Sub
FrmSource =
VERSION 5.00
Begin VB.Form frmSource
Caption = "Source Code"
ClientHeight = 6570
ClientLeft = 60
ClientTop = 345
ClientWidth = 6735
Icon = "frmSource.frx":0000
LinkTopic = "Form2"
ScaleHeight = 6570
ScaleWidth = 6735
StartUpPosition = 3 'Windows Default
Begin VB.TextBox Text1
Height = 6615
Left = 0
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 0
Top = 0
Width = 6735
End
End
Attribute VB_Name = "frmSource"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Resize()
Text1.Height = frmSource.ScaleHeight
Text1.Width = frmSource.ScaleWidth
End Sub
I'm posting this for you, since it's the View Source command and form in a web browser I downloaded.. Hopefully (maybe) it will work for you.
Here is what it gave me....
"<HEAD></HEAD>"
"<BODY><PRE>645939577,1610
"</PRE></BODY>"
Hope this helps you.
Patrick.
Business Accounts
Answer for Membership
by: 312adminPosted on 2004-06-14 at 06:48:18ID: 11306307
Instead of using inet.Execute, use blah = inet.OpenURL("https://www. aanet.com. au/usage2. php?039349 2717,membe r", icString)
After a short delay, blah will be a string containing the whole page.