这段代码在 IDE 中运行良好,但每次在最后一行被制作成 exe 并在同一台机器上运行时都会崩溃。知道为什么吗?
PageFinished = False
Cancelling = False
OKToUnload = False
WebBrowser.Navigate ("https://www.example.com/index.jsp")
Do While PageFinished = False 'set to true in document complete event
DoEvents
If Cancelling = True Then
OKToUnload = True
GoTo Endline
End If
Loop
PageFinished = False
WebBrowser.Document.All("UserId").Value = txtNumber.Text 'error here