who can convert this code(Visual Basic Code) to C# code
VB Code:
Dim objInstances As Object, objIE As Object Set objInstances = CreateObject("Shell.Application").windows If objInstances.Count > 0 Then For Each objIE In objInstances MsgBox objIE.LocationURL Next Else MsgBox " no instances of explorer or InternetExplorer are open!" End If




who can convert this code(Visual Basic Code) to C# code
Reply With Quote