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. ====== PathFromRelative ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Convert path from relative to full form ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strPathRelative** * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bCheckExist** = VARIANT_FALSE (optional) ==== Return Value ==== * [[scripting:api:data-type:BSTR|BSTR]] **pstrPathAbsolute** ===== Syntax ===== ==== JavaScript ==== <code javascript> var pstrPathAbsolute = Application.PathFromRelative(strPathRelative, bCheckExist); </code>==== Visual Basic Script ==== <code vb> pstrPathAbsolute = Application.PathFromRelative strPathRelative, bCheckExist </code>==== C++ ==== <code cpp> BSTR pstrPathAbsolute; HRESULT hr = Application.PathFromRelative(strPathRelative, bCheckExist, &pstrPathAbsolute); </code>===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~