How do I include a common file in VBScript (similar to C #include)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:12:18Z http://stackoverflow.com/feeds/question/316166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include 1 How do I include a common file in VBScript (similar to C #include)? paxdiablo 2008-11-25T02:23:31Z 2009-11-26T22:48:18Z <p>VBScript doesn't appear to have a way to include a common file of functions.</p> <p>Is there a way to achieve this?</p> http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/316169#316169 7 Answer by paxdiablo for How do I include a common file in VBScript (similar to C #include)? paxdiablo 2008-11-25T02:23:43Z 2008-11-25T05:43:47Z <p>You can create a (relatively) small function in each file that you want to include other files into, as follows:</p> <pre><code>sub includeFile (fSpec) dim fileSys, file, fileData set fileSys = createObject ("Scripting.FileSystemObject") set file = fileSys.openTextFile (fSpec) fileData = file.readAll () file.close executeGlobal fileData set file = nothing set fileSys = nothing end sub </code></pre> <p>and then use it to include specific files - these are executed as if they were inline.</p> <pre><code>includeFile "commonapi.vbi" includeFile "dbcalls.vbi" </code></pre> <p>It basically opens the file, reads the entire contents into a string, then executes that string. There's no error handling on the I/O calls since this sort of stuff is usually done once on program start, and you want to fail if there's a problem including it.</p> http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/316192#316192 0 Answer by FlySwat for How do I include a common file in VBScript (similar to C #include)? FlySwat 2008-11-25T02:35:11Z 2008-11-25T02:35:11Z <p>Is this VBScript being used locally, or served classic ASP style?</p> <p>If its classic ASP, you can use SSI todo it:</p> <pre><code>&lt;!-- #include virtual="/PathTo/MyFile.vbs" --&gt; </code></pre> http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/316491#316491 7 Answer by Richard B for How do I include a common file in VBScript (similar to C #include)? Richard B 2008-11-25T06:18:46Z 2009-11-26T22:48:18Z <p>The "Windows Script Host" framework (if ya want to call it that), offers an XML wrapper document that adds functionality over regular vbs files. One of which is the ability to include external script files of both the VBscript and Jscript flavors. I never got very deep into it, but I think it would do what you're wanting to do. <a href="http://msdn.microsoft.com/en-us/library/15x4407c%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/15x4407c(VS.85).aspx</a></p> <p>You can include JavaScript, VBScript, or modules of other WScript script languages. </p> <p>Example WSF file: </p> <pre><code>&lt;job id="IncludeExample"&gt; &lt;script language="JavaScript" src="sprintf.js"/&gt; &lt;script language="VBScript" src="logging.vbs"/&gt; &lt;script language="VBScript" src="iis-queryScriptMaps.vbs"/&gt; &lt;/job&gt; </code></pre> <p>If the above file is called "iis-scriptmaps.wsf", run it this way with cscript.exe: </p> <pre><code>cscript.exe iis-scriptmaps.wsf </code></pre> http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/319816#319816 0 Answer by Mike Henry for How do I include a common file in VBScript (similar to C #include)? Mike Henry 2008-11-26T05:18:19Z 2008-11-26T05:18:19Z <p>IIS 5 and up also allow a <a href="http://support.microsoft.com/kb/224963" rel="nofollow" title="Using Enhanced &lt;SCRIPT&gt; Tags for Includes"><code>script</code> tag</a> for including other files from an ASP file. (Is your VBScript an ASP page or a Windows script?) Here's an example:</p> <pre><code>&lt;script language="VBScript" runat="server" src="include.asp"&gt;&lt;/script&gt; </code></pre> <p>The behavior and rules are a bit different from server-side includes. Note: I have never actually tried using this syntax from classic ASP.</p> http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/1129461#1129461 0 Answer by Faraz for How do I include a common file in VBScript (similar to C #include)? Faraz 2009-07-15T04:50:20Z 2009-07-15T04:50:20Z <p>You can use the ExecuteGlobal function to run arbitrary VBS code in the global namespace. An example can be found here : <a href="http://www.source-code.biz/snippets/vbscript/5.htm" rel="nofollow">http://www.source-code.biz/snippets/vbscript/5.htm</a> </p>