- Код: Выделить всё
Dim WithEvents doc as HTMLDocument
Sub Command1_Click()
Dim ie as New InternetExplorer
ie.Visible = True
ie.navigate "ya.ru"
While ie.ReadyState <> READYSTATE_COMPLETE
DoEvents
Wend
ie.Document.parentWindow.showModalDialog "ya.ru"
End Sub
Как получить в doc ссылку на HTMLDocument диалога с целью отлова событий?