Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Displaying Link URL
Message
From
11/09/2002 21:31:02
 
 
General information
Forum:
Visual Basic
Category:
Internet applications
Miscellaneous
Thread ID:
00699308
Message ID:
00699603
Views:
18
>>I have created a Web browser using VB 6.0. I would like to display the URL of a link at the bottom of the browser when the mouse passes over it(As in IE). In reviewing the MSDN Library docs, I didn't find any references as to how to do this. Any help would be appreciated. Thanks.
>>
>>Stan Symons
>Brief answer: Use webcontrol_StatusTextChange(ByVal Text As String) where Text is your info.
>
>Longer Answer:
>Add a browser control to a form named WB1
>and a command button named CmdGo then add the following code
>
>Option Explicit
>
>Private Sub CmdGo_Click()
>    wb1.Navigate "http://www.beasthead.com"
>End Sub
>
>Private Sub wb1_StatusTextChange(ByVal Text As String)
>    Me.Caption = Text
>End Sub
>
Using StatusTextChange works - Thanks for the tip.
Previous
Reply
Map
View

Click here to load this message in the networking platform