Using Activex WebBrowser and Firefox

piester86

New member
Local time
Today, 15:32
Joined
Aug 25, 2006
Messages
4
I have a database that uses Activex WebBrowser to show a webpage on the form. We have recently started using FireFox for our Web applications. My form no longer works. The code I use is below. How can I modify this code to successfully reference the FireFox controlled websites?

Private Sub Form_Current()

'Navigate to the current record's Web site
'If there's no URL stored in the field, then display Google search engine.

If Len([CompanyWebsite]) > 0 Then
wbbWebsite.Navigate URL:=[CompanyWebsite]

Else:

End If

End Sub

Thanks!!:confused:
 

Users who are viewing this thread

Back
Top Bottom