Question about CreateObject() in VB6 / VBA - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:00:35Zhttp://stackoverflow.com/feeds/question/345178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba2Question about CreateObject() in VB6 / VBAShane2008-12-05T21:19:43Z2008-12-09T10:55:56Z
<p>I can do this:</p>
<pre><code>Dim fso As New FileSystemObject
</code></pre>
<p>or I can do this:</p>
<pre><code>Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
</code></pre>
<p>How do I know what string to use for CreateObject? For example, how would I know to use the "Scripting." part of "Scripting.FileSystemObject"? Where do you go to look that up?</p>
http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba/345184#34518411Answer by huseyint for Question about CreateObject() in VB6 / VBAhuseyint2008-12-05T21:22:02Z2008-12-05T21:27:22Z<p>It is the <a href="http://www.vbaccelerator.com/progid.htm" rel="nofollow">ProgID</a> of the component which is registered in Windows registry under HKCR key:</p>
<p>HKEY_CLASSES_ROOT\Scripting.FileSystemObject</p>
<p>ProgID's are human readable identifiers for COM objects. They point to the actual CLSIDs, which in this case is:</p>
<p>HKEY_CLASSES_ROOT\CLSID{0D43FE01-F093-11CF-8940-00A0C9054228}</p>
<p>This is the place where you can find the actual COM .dll that includes the implementation of the component.</p>
<p>In the first sample code you have provided you are doing an early-binding, and in the second one you are doing a late-binding.</p>
http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba/345236#3452360Answer by Ed for Question about CreateObject() in VB6 / VBAEd2008-12-05T21:35:20Z2008-12-05T21:35:20Z<p>I would start by searching for FileSystemObject in the MSDN library at <a href="http://msdn.microsoft.com/library" rel="nofollow">http://msdn.microsoft.com/library</a></p>
<p>The site is chock full of documentation, including the details of how to call CreateObject.</p>
http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba/352384#3523841Answer by onedaywhen for Question about CreateObject() in VB6 / VBAonedaywhen2008-12-09T10:55:56Z2008-12-09T10:55:56Z<p>Using the VB6 IDE, choose Project, References, then to pick the reference 'Microsoft Scripting Runtime'. </p>
<p>If you didn't know what the reference is called, you could use the References dialog's Browse button to pick the file /system 32/scrrun.dll. </p>
<p>With the reference chosen, close the References dialog then open the Object Browser (View menu). Change the dropdown to the most likely candidate, being 'Scripting'. This will reveal the library's classes, one of which is 'FileSystemObject'. Hence, you will have discovered the the string required for CreateObject is 'Scripting.FileSystemObject'.</p>
<p>If you didn't know the Reference name or the file name but you did know the class name then you could search the registry for "FileSystemObject" and it should soon be revealed that the fully-qualified name you require is 'Scripting.FileSystemObject'.</p>