Question about CreateObject() in VB6 / VBA - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:00:35Z http://stackoverflow.com/feeds/question/345178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba 2 Question about CreateObject() in VB6 / VBA Shane 2008-12-05T21:19:43Z 2008-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#345184 11 Answer by huseyint for Question about CreateObject() in VB6 / VBA huseyint 2008-12-05T21:22:02Z 2008-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#345236 0 Answer by Ed for Question about CreateObject() in VB6 / VBA Ed 2008-12-05T21:35:20Z 2008-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#352384 1 Answer by onedaywhen for Question about CreateObject() in VB6 / VBA onedaywhen 2008-12-09T10:55:56Z 2008-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>