Hi there
On a page on my client's intranet i've made a button called MSAccess, and an onclick procedure for it:
[green]
[/green]
That opens the database correctly, but then Internet Explorer gives me an error message:
[red]Error: Microsoft Access can't find the procedure 'webGotoItem("ItemOne"
.'[/red]
webGotoItem is a Public function in a module called Miscellaneous in the database.
If you've got any ideas on how to make this work i'd be very grateful.
On a page on my client's intranet i've made a button called MSAccess, and an onclick procedure for it:
[green]
Code:
Sub MSAccess_onclick()
Set acApp = CreateObject("Access.Application")
With acApp
.OpenCurrentDatabase "f:\Database.mdb"
.Visible = TRUE
.Run("webGotoItem(""ItemOne"")")
End With
End Sub
That opens the database correctly, but then Internet Explorer gives me an error message:
[red]Error: Microsoft Access can't find the procedure 'webGotoItem("ItemOne"
webGotoItem is a Public function in a module called Miscellaneous in the database.
If you've got any ideas on how to make this work i'd be very grateful.