Using early binding on a COM object - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:21:46Zhttp://stackoverflow.com/feeds/question/776331http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object2Using early binding on a COM objectLaurent2009-04-22T09:18:14Z2009-04-22T10:49:47Z
<p>Hello,</p>
<p>I have this piece of code that works very well and gives me the path the user's start menu:</p>
<pre><code> Dim oShell As Object = CreateObject("Shell.Application")
MsgBox(oShell.NameSpace(11).Self.Path)
</code></pre>
<p>This obviously uses late binding. Now say I want to do this in C#, or in VB.NET strict mode, neither of which support this kind of syntax with late binding.</p>
<p>Is this possible? How?</p>
<p>Thanks for you help!</p>
http://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object/776345#7763450Answer by OregonGhost for Using early binding on a COM objectOregonGhost2009-04-22T09:24:41Z2009-04-22T09:24:41Z<p>If I remember correctly, all you have to do is to cast the object reference into the appropriate interface. If you use a COM object in .NET, you typically import the type library and then have the interfaces readily available.</p>
http://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object/776394#7763942Answer by RobS for Using early binding on a COM objectRobS2009-04-22T09:40:05Z2009-04-22T09:40:05Z<pre><code>Dim DirPath As String = _
System.Environment.GetFolderPath(Environment.SpecialFolder.StartMenu)
</code></pre>
<p>See <a href="http://visualbasic.about.com/od/usingvbnet/a/SpFldrs.htm" rel="nofollow">here</a> for more.</p>
http://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object/776423#7764232Answer by Darin Dimitrov for Using early binding on a COM objectDarin Dimitrov2009-04-22T09:46:56Z2009-04-22T09:46:56Z<p>Well actually you could use reflection:</p>
<pre><code>Type shellType = Type.GetTypeFromProgID("Shell.Application", true);
object shell = Activator.CreateInstance(shellType);
object folder = shellType.InvokeMember("NameSpace", BindingFlags.InvokeMethod, null, shell, new object[] { 11 });
object self = folder.GetType().InvokeMember("Self", BindingFlags.GetProperty, null, folder, new object[] { });
object path = self.GetType().InvokeMember("Path", BindingFlags.GetProperty, null, self, new object[] { });
Console.WriteLine(path);
</code></pre>
<p>Not the kind of code I like, but in C# 4.0 you could use the <a href="http://geekswithblogs.net/sdorman/archive/2008/11/16/c-4.0-dynamic-programming.aspx" rel="nofollow">dynamic type</a> to clean up this mess.</p>
http://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object/776432#7764322Answer by divo for Using early binding on a COM objectdivo2009-04-22T09:48:22Z2009-04-22T10:49:47Z<p>If you want to solve this the COM way you have to figure out, which COM reference to add in your VB project.</p>
<p>Open regedit and navigate to <code>HKEY_CLASSES_ROOT\<class id>\CLSID</code>, i.e.</p>
<pre><code>HKEY_CLASSES_ROOT\Shell.Application\CLSID
</code></pre>
<p>and you will find the class id which uniquely identifies the COM component.</p>
<p>Under <code>HKEY_CLASSES_ROOT\CLSID</code> you can now look up which file is behind the COM component:</p>
<pre><code>HKEY_CLASSES_ROOT\CLSID\{13709620-C279-11CE-A49E-444553540000}\InProcServer32
</code></pre>
<p>shows the following value:</p>
<pre><code>%SystemRoot%\system32\SHELL32.dll
</code></pre>
<p>Now go to Visual Studio, and add a reference to this file (on the <em>Browse</em> tab of the <em>Add References</em> dialog). If you open up the projects properties, you will actually see that the nice name of the COM component added is <strong>Microsoft Shell Controls and Automation</strong>. </p>
<p>Once the reference is added you can use the <code>Shell.Application</code> object as follows:</p>
<pre><code>Option Strict On
Module PrintStartMenuLocation
Sub Main()
Dim shell As New Shell32.Shell
Dim folder As Shell32.Folder
Dim folderItem As Shell32.FolderItem
Dim startMenuPath As String
folder = shell.NameSpace(Shell32.ShellSpecialFolderConstants.ssfSTARTMENU)
folderItem = CType(folder.Items(0), Shell32.FolderItem)
startMenuPath = folderItem.Path
Console.WriteLine(startMenuPath)
End Sub
End Module
</code></pre>
<p>A version in C# would look as follows:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
Shell32.Shell shell = new Shell32.Shell();
Shell32.Folder folder = shell.NameSpace(Shell32.ShellSpecialFolderConstants.ssfSTARTMENU);
Shell32.FolderItem folderItem = folder.Items().Item(0) as Shell32.FolderItem;
string startMenuPath = folderItem.Path;
Console.WriteLine(startMenuPath);
}
}
</code></pre>
<p>However, if you simply need to retrieve the location of the Start Menu folder you can do the same directly in .NET using </p>
<pre><code>Dim path As String = System.Environment.GetFolderPath(Environment.SpecialFolder.StartMenu)
</code></pre>