1
Answer

Using Visual Studio 2005 Beta 1 Class Designer...

furia9

furia9

20y
1.9k
1
Hi, We are members of msdn and often receive new software. I found out that we had a copy of the Visual Studio 2005 Beta 1 and decided to give it a try. We have the latest stable version of June. My question is why is it possible to work with class diagram with a winForm project and not for and asp.net project? And is it possible that it crashes for small reasons as renaming a method within a class diagram using contextual menu->refactoring->rename? 'Cause here it renames the method in the code but not on the diagram, so it gives erreur when ou try to interact with in afterward. ;-( Thanks... From someone who can't wait to work with VS2005... ;-)
Answers (1)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();