Solved Accdb: Web Script Error (see arnelgp)

vhung

Member
Local time
Today, 06:42
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: 123
  • webform.png
    webform.png
    137.4 KB · Views: 101
  • webform1.png
    webform1.png
    152.3 KB · Views: 98
Last edited:
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.
 
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
 
maybe Ignore the script error:

private sub Form_Load()
Me.webBrowser.Object.ScriptErrorsSuppressed = true
End sub
 
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.
 
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: 117
Last edited:
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: 114

Users who are viewing this thread

Back
Top Bottom