Link to home
Start Free TrialLog in
Avatar of Andy1
Andy1

asked on

Use webcontrol object in access database

I wanted to create a tips / faq page on my website and I was wondering, can I use the webcontrol activex component and set it to view that page on a from in my database?

Can someone show me how to do this or point me in the right direction of a tutorial that will teach me how to use the control in access.

Cheers.

`Andy
Avatar of flavo
flavo
Flag of Australia image

Step 1.  Add the web control to a form
Step 2. Me.myWebControl.Navigate "http://myUrl.com/myPage.html"

Dave
Avatar of Andy1
Andy1

ASKER

Step 1. No problems. Done that
Step 2. ??WHERE do I put that?
Hello Andy1

Suppose you create a pop-up form with an WebBrowser control called acxBrowser, you can start with:

Private Sub Form_Load()
    Me.acxBrowser.Object.Navigate "https://www.experts-exchange.com/help.jsp"
End Sub

For more advanced techniques, you can search microsoft, e.g.
http://msdn.microsoft.com/workshop/browser/webbrowser/browser_control_ovw_entry.asp

(°v°)
oops, sorry Dave. was interrupted.
(°v°)
ASKER CERTIFIED SOLUTION
Avatar of flavo
flavo
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
oh.. I see now I've take your code Markus :S