IEタブのURLを取得するために、VB.Netに次のコードがあります。
Function getIEUrl() As List(Of String)
Try
Dim list As New List(Of String)
Dim sw As New ShellWindows()
For Each browser As InternetExplorer In New ShellWindows()
list.Add(browser.LocationURL)
Next
Return list
Catch ex As Exception
Return Nothing
End Try
End Function
[アクティブ]タブのURLのみを取得するように管理するにはどうすればよいですか?
前もって感謝します!