oh. .thank you so much
As of now, the test results
It works satisfactorily.
I really appreciate you.
I already have a custom control form
I made my own browser component.
In it I added the below command.
======================
Public Sub reSTART()
On Error Resume Next
Dim startTime As Single, xtime As Single
Antview1.CloseWebView
Antview1.CloseBrowserProcess
startTime = Timer
Do
xtime = Abs(Timer - startTime)
DoEvents
If xtime > 4 Then
Exit Do
Else
If Antview1.BrowserProcessIDLong < 1 Then Exit Do
End If
Loop
Antview1.CreateWebView
End Sub
=================================
But I have a question.
When I didn't close it manually... i.e.
If your browser crashes or dies
Antview1.BrowserProcessIDLong value
If it is read, does the result return a value of 0?
I check if the browser is dead and
Check only if dead. I want to restart...
As of now, the test results
It works satisfactorily.
I really appreciate you.
I already have a custom control form
I made my own browser component.
In it I added the below command.
======================
Public Sub reSTART()
On Error Resume Next
Dim startTime As Single, xtime As Single
Antview1.CloseWebView
Antview1.CloseBrowserProcess
startTime = Timer
Do
xtime = Abs(Timer - startTime)
DoEvents
If xtime > 4 Then
Exit Do
Else
If Antview1.BrowserProcessIDLong < 1 Then Exit Do
End If
Loop
Antview1.CreateWebView
End Sub
=================================
But I have a question.
When I didn't close it manually... i.e.
If your browser crashes or dies
Antview1.BrowserProcessIDLong value
If it is read, does the result return a value of 0?
I check if the browser is dead and
Check only if dead. I want to restart...
Thankyou.