G
Guest
Hi EveryBody:
Can Some body help me translating the following code from classic Vb to Vb.Net
Option Explicit
Private Sub Command1_Click()
On Error GoTo command_error
With Label1
.Caption = ""
.AutoSize = True
.LinkTopic = "IExplore|WWW_GetWindowInfo"
.LinkItem = "0xffffffff"
.LinkMode = 2
.LinkRequest
End With
DoEvents
With Label2
.Caption = ""
.AutoSize = True
.LinkTopic = "Netscape|WWW_GetWindowInfo"
.LinkItem = "0xffffffff"
.LinkMode = 2
.LinkRequest
End With
Exit Sub
command_error:
'try the next step on error
Resume Next
End Sub
Any help will be appreciated
regard's
Husam
Can Some body help me translating the following code from classic Vb to Vb.Net
Option Explicit
Private Sub Command1_Click()
On Error GoTo command_error
With Label1
.Caption = ""
.AutoSize = True
.LinkTopic = "IExplore|WWW_GetWindowInfo"
.LinkItem = "0xffffffff"
.LinkMode = 2
.LinkRequest
End With
DoEvents
With Label2
.Caption = ""
.AutoSize = True
.LinkTopic = "Netscape|WWW_GetWindowInfo"
.LinkItem = "0xffffffff"
.LinkMode = 2
.LinkRequest
End With
Exit Sub
command_error:
'try the next step on error
Resume Next
End Sub
Any help will be appreciated
regard's
Husam