====== ResolveFileName ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Resolves incomplete file name. ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strBasePath** * [[scripting:api:data-type:BSTR|BSTR]] **strRelative** * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **bCheckExist** = VARIANT_FALSE (optional) ==== Return Value ==== * [[scripting:api:data-type:BSTR|BSTR]] **pstrAbsolutePath** ===== Syntax ===== ==== JavaScript ==== var pstrAbsolutePath = Application.ResolveFileName(strBasePath, strRelative, bCheckExist); ==== Visual Basic Script ==== pstrAbsolutePath = Application.ResolveFileName strBasePath, strRelative, bCheckExist ==== C++ ==== BSTR pstrAbsolutePath; HRESULT hr = Application.ResolveFileName(strBasePath, strRelative, bCheckExist, &pstrAbsolutePath); ===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~