How do I include a common file in VBScript (similar to C #include)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T09:12:18Zhttp://stackoverflow.com/feeds/question/316166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include1How do I include a common file in VBScript (similar to C #include)?paxdiablo2008-11-25T02:23:31Z2009-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#3161697Answer by paxdiablo for How do I include a common file in VBScript (similar to C #include)?paxdiablo2008-11-25T02:23:43Z2008-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#3161920Answer by FlySwat for How do I include a common file in VBScript (similar to C #include)?FlySwat2008-11-25T02:35:11Z2008-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><!-- #include virtual="/PathTo/MyFile.vbs" -->
</code></pre>
http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/316491#3164917Answer by Richard B for How do I include a common file in VBScript (similar to C #include)?Richard B2008-11-25T06:18:46Z2009-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><job id="IncludeExample">
<script language="JavaScript" src="sprintf.js"/>
<script language="VBScript" src="logging.vbs"/>
<script language="VBScript" src="iis-queryScriptMaps.vbs"/>
</job>
</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#3198160Answer by Mike Henry for How do I include a common file in VBScript (similar to C #include)?Mike Henry2008-11-26T05:18:19Z2008-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 <SCRIPT> 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><script language="VBScript" runat="server" src="include.asp"></script>
</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#11294610Answer by Faraz for How do I include a common file in VBScript (similar to C #include)?Faraz2009-07-15T04:50:20Z2009-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>