J
Jason McAdams
I need to find a way to display web content (i.e. a picture from the
internet) for every record in a form. Currently, I'm using the Microsoft
Web Browser control, but I have to click on the control (with the 'On Focus'
event for that control) for the content to update within the control - and
it will in turn erase all web content from every other record. Is there a
way to have the form autopopulate for every record? My event procedure is
listed below:
Private Sub ActiveXctl0_GotFocus()
If Not IsNull(Me.txtMemberID) Then
With Me.ActiveXctl0
.Navigate "http://opi.yahoo.com/online?u=" & Me.txtMemberID & "&m=g&t=1"
End With
End If
End Sub
internet) for every record in a form. Currently, I'm using the Microsoft
Web Browser control, but I have to click on the control (with the 'On Focus'
event for that control) for the content to update within the control - and
it will in turn erase all web content from every other record. Is there a
way to have the form autopopulate for every record? My event procedure is
listed below:
Private Sub ActiveXctl0_GotFocus()
If Not IsNull(Me.txtMemberID) Then
With Me.ActiveXctl0
.Navigate "http://opi.yahoo.com/online?u=" & Me.txtMemberID & "&m=g&t=1"
End With
End If
End Sub