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!!
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!!
