Solution4.Open(String) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Öffnet eine angegebene Projektmappe.
public:
void Open(System::String ^ FileName);
public:
void Open(Platform::String ^ FileName);
void Open(std::wstring const & FileName);
[System.Runtime.InteropServices.DispId(17)]
public void Open (string FileName);
[<System.Runtime.InteropServices.DispId(17)>]
abstract member Open : string -> unit
Public Sub Open (FileName As String)
Parameter
- FileName
- String
Erforderlich. Der Name der zu öffnenden Projektmappendatei.
Implementiert
- Attribute
Beispiele
Sub SolnOpenExample(ByVal dte As DTE2)
' Open a solution.
Dim soln As Solution4 = CType(dte.Solution, Solution4)
' Try to open the solution.
Try
' Make sure you replace <file path>
' below with an actual path,
' and <solution.sln> with an actual solution file.
soln.Open("<file path>\<solution.sln>")
Catch ex As SystemException
MsgBox("ERROR: " & ex.ToString())
End Try
End Sub
using System.Windows.Forms;
public void SolnOpenExample(DTE2 dte)
{
// Open a solution.
try
{
Solution4 soln = (Solution4)_applicationObject.Solution;
// Make sure you replace <filepath> below
// with an actual path
// and <solution.sln> with an actual solution file.
soln.Open(@"<file path>\<solution.sln>");
}
catch (SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}