webbrowser control - how to stop navigation 
Author Message
 webbrowser control - how to stop navigation

Hi,

I am new to vb, in my application I am using VB Webbrowser control.
After getting the new pages in Webbrowser, I don't want navigate
through the links which were in the webbrowser.

Any body knows how to prevent the navigation through the links which
were in VB Webbrowser.

Thanks in advance,

kvs



Sun, 10 Jul 2005 20:05:10 GMT  
 webbrowser control - how to stop navigation
Trap the BeforeNavigate2 event, set the Cancel parameter to true.

Option Explicit
Dim flag As Boolean

Private Sub Command1_Click()

flag = True

End Sub

Private Sub Form_Load()

flag = False

WebBrowser1.Navigate "http://www.msn.com"

End Sub

Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, URL As
Variant, Flags As Variant, TargetFrameName As Variant, PostData As Variant,
Headers As Variant, Cancel As Boolean)

Cancel = flag

'MsgBox URL

End Sub

Hope it helps.

Sincerely,

Alick Ye, MCSD
Product Support Services
Microsoft Corporation
Get Secure! - <www.microsoft.com/security>

This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------

| Newsgroups: microsoft.public.vb.controls.internet
| Subject: webbrowser control - how to stop navigation
| Date: 22 Jan 2003 04:05:10 -0800
| NNTP-Posting-Date: 22 Jan 2003 12:05:10 GMT
| X-Tomcat-NG: microsoft.public.vb.controls.internet
|
| Hi,
|
| I am new to vb, in my application I am using VB Webbrowser control.
| After getting the new pages in Webbrowser, I don't want navigate
| through the links which were in the webbrowser.
|
| Any body knows how to prevent the navigation through the links which
| were in VB Webbrowser.
|
| Thanks in advance,
|
| kvs
|



Mon, 11 Jul 2005 20:58:37 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. disable navigation sounds in Webbrowser control

2. Automating Navigation with the WebBrowser control

3. Stopping popups with webbrowser control

4. How Do I Stop History In IE WebBrowser Control

5. How to stop image loading in WebBrowser control

6. Stopping webpage resizing in WebBrowser control

7. Stop pictures showing in Webbrowser control

8. How Do I Stop History In IE WebBrowser Control

9. WebBrowser control - Java stop!

10. Stopping right-click in WebBrowser Control

11. Help with TAB STOP Navigation - IS THIS POSSIBLE ?

12. How to STOP LISTBOX NAVIGATION ??

 

 
Powered by phpBB® Forum Software