53 seconds
ago: Please note that the webserver will soon get its weekly reboot at 4:00 am Eastern Time. You may continue to use the site as normal, but you will be logged off at that time. You should be able to log right back on immediately, however. If you are in the process of placing an order, please make sure to complete it as quickly as possible, or come back after the reboot. Thank you. Sorry for any inconvenience.
Dismiss
In this case we are on the Subform and want to update on the Parent so we can use the Parent keyword.
Form_Current()
Private Sub Form_Current()
MsgBox ID
Dim strURL
strURL = "https://www.google.co.uk/?q=" & ID
Me.Parent.URL = strURL
Me.Parent.WebBrowser1.Object.Navigate strURL
End Sub