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

 

Returns the computed path to the satellite DLL when given the installation directory and the file name of the DLL containing localized resources.

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

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

Parameters

Path
Type: System::String^

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

Name
Type: System::String^

Required. The filename for the satellite DLL, such as "MyProgramUI.DLL."

Return Value

Type: System::String^

A string representing the computed path to the satellite DLL.

Sub SatelliteDLLPathExample()
  MsgBox(DTE.SatelliteDllPath("c:\program files\microsoft visual studio .net\common7\ide", "msenv.dll"))
End Sub
Return to top
Show: