Hi!
I got a question with VBA (bit of a novice)
I've written the following code:
Sub test() Dim IE As Object
Set IE = CreateObject("InternetExplorer.application")
With IE
.Visible = True
.navigate ("secure website")
While .Busy Or .readyState <> 4...