DTE2::SatelliteDllPath Method (String^, String^)

 

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.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

String^ SatelliteDllPath(
	String^ Path,
	String^ Name
)

Parameters

Path
Type: System::String^

Required. Specifies the full path to the directory where the application is installed.

Name
Type: System::String^

Required. The file name for the satellite DLL, such as "MyAppUI.DLL."

Return Value

Type: System::String^

A string representing the computed path to the satellite DLL.

Sub SatelliteDLLPathExample()
  MsgBox(DTE2.SatelliteDllPath("C:\MyAppProjects", "MyAppUI.dll"))
End Sub
Return to top
Show: