Click here to Skip to main content
15,910,661 members
Home / Discussions / C#
   

C#

 
Generalrich text box problems Pin
snouto3-Jul-05 12:40
snouto3-Jul-05 12:40 
Generalcontrols Pin
Anonymous3-Jul-05 11:20
Anonymous3-Jul-05 11:20 
GeneralRe: controls Pin
Christian Graus3-Jul-05 11:53
protectorChristian Graus3-Jul-05 11:53 
GeneralSplash Screen Architecture Pin
1nsp1r3d3-Jul-05 10:24
1nsp1r3d3-Jul-05 10:24 
GeneralRe: Splash Screen Architecture Pin
Christian Graus3-Jul-05 11:55
protectorChristian Graus3-Jul-05 11:55 
GeneralRe: Splash Screen Architecture Pin
1nsp1r3d3-Jul-05 12:34
1nsp1r3d3-Jul-05 12:34 
GeneralRe: Splash Screen Architecture Pin
Christian Graus3-Jul-05 12:49
protectorChristian Graus3-Jul-05 12:49 
GeneralRe: Splash Screen Architecture Pin
S. Senthil Kumar3-Jul-05 19:33
S. Senthil Kumar3-Jul-05 19:33 
GeneralRe: Splash Screen Architecture Pin
Christian Graus4-Jul-05 13:09
protectorChristian Graus4-Jul-05 13:09 
GeneralRe: Splash Screen Architecture Pin
S. Senthil Kumar4-Jul-05 19:22
S. Senthil Kumar4-Jul-05 19:22 
GeneralRe: Splash Screen Architecture Pin
cmaissan4-Jul-05 14:16
cmaissan4-Jul-05 14:16 
GeneralRe: Splash Screen Architecture Pin
1nsp1r3d5-Jul-05 0:11
1nsp1r3d5-Jul-05 0:11 
GeneralMDI Form Pin
Newbie_Toy3-Jul-05 8:25
Newbie_Toy3-Jul-05 8:25 
GeneralRe: MDI Form Pin
Libor Tinka3-Jul-05 12:56
Libor Tinka3-Jul-05 12:56 
GeneralRe: MDI Form Pin
Libor Tinka3-Jul-05 12:58
Libor Tinka3-Jul-05 12:58 
GeneralPrinting Pin
Jerry Hammond3-Jul-05 6:04
Jerry Hammond3-Jul-05 6:04 
GeneralRe: Printing Pin
cmaissan4-Jul-05 14:30
cmaissan4-Jul-05 14:30 
GeneralRe: Printing Pin
Jerry Hammond5-Jul-05 4:43
Jerry Hammond5-Jul-05 4:43 
GeneralHelp me please.... Pin
amarsumanth3-Jul-05 4:21
amarsumanth3-Jul-05 4:21 
GeneralRe: Help me please.... Pin
S. Senthil Kumar3-Jul-05 5:17
S. Senthil Kumar3-Jul-05 5:17 
GeneralRe: Help me please.... Pin
amarsumanth3-Jul-05 10:41
amarsumanth3-Jul-05 10:41 
GeneralRe: Help me please.... Pin
David Stone3-Jul-05 8:06
sitebuilderDavid Stone3-Jul-05 8:06 
GeneralToolbar on System TASKBAR Pin
XironiX3-Jul-05 2:49
sussXironiX3-Jul-05 2:49 
GeneralRe: Toolbar on System TASKBAR Pin
gavinlv3-Jul-05 22:30
gavinlv3-Jul-05 22:30 
Generalshutdown a process Pin
niebo0773-Jul-05 2:09
niebo0773-Jul-05 2:09 
In working on a small C#.net program that starts another program via rundll32. This program performs an operation and then opens a IE page showing some results. I would like to be able to close this IE process after the WaitForExit() call.

Process proc = new Process();<br />
ProcessStartInfo processInfo = new ProcessStartInfo("rundll32.exe");<br />
processInfo.Arguments = Config.DLL_ARGUMENTS;<br />
proc.StartInfo = processInfo;<br />
proc.Start();<br />
proc.WaitForExit();<br />
//how to close the IE window that was started by the rundll32 call.


I know how to get a list of processes running, but how do I know which was the IE started by my other proc. call??

Thanks for any help!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.