Tagged Questions
2
votes
4answers
1k views
Using early binding on a COM object
I have this piece of code that works very well and gives me the path the user's start menu:
Dim oShell As Object = CreateObject("Shell.Application")
MsgBox(oShell.NameSpace(11).Self.Path)
...