From: Jason soby on 28 Jan 2010 10:40 Hi, I'm trying to get the exe name of the program that is launched when i do ProcessStartInfo info = new ProcessStartInfo(); info.Verb = "print"; info.FileName = FilePath + FileName + "." + FileType; Process process = new Process(); process.StartInfo = info; process.Start(); Now, process.ProcessName will get it, but i need the info BEFORE i start it so i'm a little stumped now. Is this possible?
From: Jeff Johnson on 28 Jan 2010 11:54 "Jason soby" <Jasonsoby(a)discussions.microsoft.com> wrote in message news:F096115E-5A57-4480-82B3-0AEAB78B912B(a)microsoft.com... > I'm trying to get the exe name of the program that is launched when i do > > ProcessStartInfo info = new ProcessStartInfo(); > info.Verb = "print"; > info.FileName = FilePath + FileName + "." + FileType; > > Process process = new Process(); > process.StartInfo = info; > process.Start(); > > Now, process.ProcessName will get it, but i need the info BEFORE i start > it > so i'm a little stumped now. Is this possible? I don't know if there's anything managed, but there is the FindExecutable() API function.
|
Pages: 1 Prev: Failure sending mail.System.FormatException Next: Fonts, Encoding |