Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== __include ====== Method of [[:scripting:api:script-application:start|IScriptApplication]] ===== Description ===== Dynamically include file into global scope. ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strPath** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbSuccess** ===== Syntax ===== ==== JavaScript ==== <code javascript> var pbSuccess = ScriptApplication.__include(strPath); </code>==== Visual Basic Script ==== <code vb> pbSuccess = ScriptApplication.__include strPath </code>==== C++ ==== <code cpp> VARIANT_BOOL bSuccess; HRESULT hr = ScriptApplication.__include(strPath, &bSuccess); </code>===== See Also ===== [[:scripting:api:script-application:start|IScriptApplication]] ~~NOTOC~~