SMPL:Пример использование InternetExplorer ActiveX control
SMPL: Using InternetExplorer ActiveX control
Applies to: Access 97
Private Sub Form_Load()
Dim x As InternetExplorer
Set x = New InternetExplorer
x.Visible = True
x.Navigate URL:="http://www.microsoft.com"
Print x.Document.Script.Document.Title '<- Here is the trick ;-)
MsgBox "Click to close down IE"
x.Quit
Set x = Nothing
End
End Sub
From MAUG , Entry Date 29.05.97
Written and designed by |
![]() |