|
-
Sep 18th, 2000, 04:28 AM
#1
Thread Starter
Fanatic Member
How do you get the status bar text of the browser in your program!
Visual Basic 6.0
Visual C++ 5
Delphi 5

-
Sep 18th, 2000, 04:32 AM
#2
Frenzied Member
What do you mean?
Do you want to get, say, Internet Explorer's status bar text from a web page script?
-
Sep 18th, 2000, 04:34 AM
#3
Thread Starter
Fanatic Member
I have a browser in my program and when I visit a website, the browser's status bar says that the file is done or website found waiting for reply and stuff like that. Well how do I get that text from it's status bar into a textbox
Visual Basic 6.0
Visual C++ 5
Delphi 5

-
Sep 18th, 2000, 05:00 AM
#4
Thread Starter
Fanatic Member
Visual Basic 6.0
Visual C++ 5
Delphi 5

-
Sep 18th, 2000, 05:02 AM
#5
Frenzied Member
Heck, I'd like to do that meself.
Anybody know?
-
Sep 18th, 2000, 06:07 AM
#6
Frenzied Member
Code:
Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
Text1 = Text
End Sub
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
|