Created
July 22, 2019 22:35
-
-
Save kumatti1/ab103ef64b951ba8811dc2d193389960 to your computer and use it in GitHub Desktop.
現行のEdgeさん
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) | |
Sub hoge() | |
Dim doc As Object | |
Set doc = CreateObject("htmlfile") | |
With doc | |
.parentWindow.navigate "https://www.yahoo.co.jp/" | |
While .readystate <> "complete" | |
DoEvents | |
Sleep 1& | |
Wend | |
Debug.Print doc Is Nothing | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment