Questions tagged [process.start]

The Start() method on the .NET System.Diagnostics.Process class for starting applications from within a program

See https://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx

516 questions
-2
votes
1 answer

How to specify output directory for .exe in C#

I am developing wpf application in C#. I have one button on which I am browsing file system through Microsoft.Win32.OpenFileDialog. There is one submit button on which I am calling the Process.Start() to run .exe on grib file. The exe generate the…
Shailesh Jaiswal
  • 3,606
  • 13
  • 73
  • 124
-3
votes
1 answer

What is a Win32 Exception the system cannot find the file specified

I have a problem with Process.Start(), i want it to open specified file when I double click on tree node. This is my code where it should open file String path = "C:\\Users\\........\\something"; private void…
Sasa
  • 1
  • 2
-3
votes
2 answers

Start new process from .dll not working, when output type class-library

What I need is to start a new process from a .dll, that resides in the /lib folder... well, I have a Console Application project in my solution, that I want to generate desired .dll from. When I let the output type of this particular project set as…
jmodrak
  • 229
  • 4
  • 17
-4
votes
1 answer

How can I run an exe file with c# (I can't use Process.Start() because I don't know the exe file's location)

I want to run an exe file with c# but I can't use Process.Start() because I don't know the exe file's location. I didn't start to writing so I don't have any code for now.
Demir
  • 13
  • 5
-4
votes
1 answer

Opening facebook in a panel of winforms

I am in need to open facebook(whatsapp,skype etc) with in a panel. please suggest something to achieve the same. I working on windows 7. If facebook is not possible then please suggest with whatever the task is possible whether with facebook…
user4738009
-7
votes
1 answer

Process.Start is not working in IIS. Any options to open windows folder path.eg: C:\Newfolder

I have a requirement to open a windows explorer Path like this "C:\New Folder\" or "http:\gmail.com" using C# code. Actually, once the user types the link\path in the text box and save it, a link should appear and on clicking the link, the required…
1 2 3
34
35