Solved Accdb: Web Script Error (see arnelgp) (1 Viewer)

vhung

Member
Local time
Today, 08:59
Joined
Jul 8, 2020
Messages
235
how to debug or fix the settings, to have a smooth browsing...
>so nice open AWF on Accdb Web Browser
 

Attachments

  • worldaccdb,scriptError.png
    worldaccdb,scriptError.png
    102.4 KB · Views: 86
  • webform.png
    webform.png
    137.4 KB · Views: 67
  • webform1.png
    webform1.png
    152.3 KB · Views: 65
Last edited:

June7

AWF VIP
Local time
Today, 07:59
Joined
Mar 9, 2014
Messages
5,425
Please post code as text between CODE tags in question. Post error message as text as well. Images can be hard to read and can't copy/paste.
 

vhung

Member
Local time
Today, 08:59
Joined
Jul 8, 2020
Messages
235
Please post code as text between CODE tags in question. Post error message as text as well. Images can be hard to read and can't copy/paste.
Script Error; An error has occurred in the script on this page.
Line: 4; Char: 13727; Code: 0
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 23:59
Joined
May 7, 2009
Messages
19,175
maybe Ignore the script error:

private sub Form_Load()
Me.webBrowser.Object.ScriptErrorsSuppressed = true
End sub
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 23:59
Joined
May 7, 2009
Messages
19,175
use this instead:

Private Sub Form_Load()
Me.WebBrowser.Object.Silent = True
End Sub

'//
it means you add the code to the Form's Load event.
 

vhung

Member
Local time
Today, 08:59
Joined
Jul 8, 2020
Messages
235
use this instead:

Private Sub Form_Load()
Me.WebBrowser.Object.Silent = True
End Sub
thank you sir...
this work...
very good teacher, comparable one (asked questions then provide solutions)
 

Attachments

  • worldaccdb,scriptErrorSolved.png
    worldaccdb,scriptErrorSolved.png
    235.5 KB · Views: 79
Last edited:

vhung

Member
Local time
Today, 08:59
Joined
Jul 8, 2020
Messages
235
use this instead:

Private Sub Form_Load()
Me.WebBrowser.Object.Silent = True
End Sub

'//
it means you add the code to the Form's Load event.
sir arnel;
now i can view my gmail on my access web browser...
 

Attachments

  • worldaccdb,gmail.png
    worldaccdb,gmail.png
    171.2 KB · Views: 80

Users who are viewing this thread

Top Bottom