DTE2.SatelliteDllPath(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the computed path to the satellite DLL when given the installation directory for an application and the file name of the DLL containing localized resources.
public:
System::String ^ SatelliteDllPath(System::String ^ Path, System::String ^ Name);
public:
Platform::String ^ SatelliteDllPath(Platform::String ^ Path, Platform::String ^ Name);
std::wstring SatelliteDllPath(std::wstring const & Path, std::wstring const & Name);
[System.Runtime.InteropServices.DispId(245)]
public string SatelliteDllPath (string Path, string Name);
[<System.Runtime.InteropServices.DispId(245)>]
abstract member SatelliteDllPath : string * string -> string
Public Function SatelliteDllPath (Path As String, Name As String) As String
Parameters
- Path
- String
Required. Specifies the full path to the directory where the application is installed.
- Name
- String
Required. The file name for the satellite DLL, such as "MyAppUI.DLL."
Returns
A string representing the computed path to the satellite DLL.
Implements
- Attributes
Examples
Sub SatelliteDLLPathExample()
MsgBox(DTE2.SatelliteDllPath("C:\MyAppProjects", "MyAppUI.dll"))
End Sub