Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Ok so I have a windows Form with a button on it to open VS2008 for me which it does, but I want to extend the function now to open a specific file at the same time in VS2008

private void btnReport_Click(object sender, EventArgs e)
        {
            Process openVisualStudio2008 = new Process();
            openVisualStudio2008.StartInfo.FileName = @"C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe";
            openVisualStudio2008.Start();
        }
Posted
Updated 7-May-13 23:02pm
v2

1 solution

Use
C#
openVisualStudio2008.Arguments = @"c:\program.cs";
before the openVisualStudio2008.Start(); (replacing "c:\program.cs" with your appropriate file name of course!)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900