Click here to Skip to main content
15,916,692 members
Home / Discussions / C#
   

C#

 
GeneralC# networking questions please help! Pin
joe23432113-Apr-05 15:57
joe23432113-Apr-05 15:57 
GeneralRe: C# networking questions please help! Pin
felopater14-Apr-05 3:50
felopater14-Apr-05 3:50 
Generalin god sake help me please Pin
snouto13-Apr-05 12:32
snouto13-Apr-05 12:32 
GeneralRe: in god sake help me please Pin
Christian Graus13-Apr-05 18:30
protectorChristian Graus13-Apr-05 18:30 
GeneralRe: in god sake help me please Pin
Dave Kreskowiak14-Apr-05 4:24
mveDave Kreskowiak14-Apr-05 4:24 
GeneralSerializing class derived from TreeNode Pin
Kordzik13-Apr-05 12:30
Kordzik13-Apr-05 12:30 
GeneralRe: Serializing class derived from TreeNode Pin
Kordzik14-Apr-05 11:14
Kordzik14-Apr-05 11:14 
GeneralGraphics Processing Pin
Greg Kotrick13-Apr-05 9:43
Greg Kotrick13-Apr-05 9:43 
GeneralRe: Graphics Processing Pin
Christian Graus13-Apr-05 18:32
protectorChristian Graus13-Apr-05 18:32 
GeneralRe: Graphics Processing Pin
Greg Kotrick14-Apr-05 7:16
Greg Kotrick14-Apr-05 7:16 
GeneralRe: Graphics Processing Pin
Christian Graus14-Apr-05 12:11
protectorChristian Graus14-Apr-05 12:11 
QuestionAnyway to extract recently "navigated" images from a axWebBrowser control? Pin
FocusedWolf13-Apr-05 9:08
FocusedWolf13-Apr-05 9:08 
AnswerRe: Anyway to extract recently "navigated" images from a axWebBrowser control? Pin
Judah Gabriel Himango13-Apr-05 12:39
sponsorJudah Gabriel Himango13-Apr-05 12:39 
GeneralRe: Anyway to extract recently "navigated" images from a axWebBrowser control? Pin
FocusedWolf13-Apr-05 13:25
FocusedWolf13-Apr-05 13:25 
GeneralShut down explorer programmatically Pin
Ian Bowler13-Apr-05 8:18
Ian Bowler13-Apr-05 8:18 
GeneralRe: Shut down explorer programmatically Pin
tommazzo13-Apr-05 8:42
tommazzo13-Apr-05 8:42 
You can do this using the System.Diagnostics namespace. The following code will kill explorer.exe:

Process[] RunningProcesses = Process.GetProcessesByName("explorer");
Process proc = new Process();
foreach(Process p in RunningProcesses)
{
if(p.ProcessName == "explorer")
{
proc = p;
break;
}
}
proc.Kill();

When I tested it however explorer.exe restarted a few seconds after it was killed. This might be due to some program I had running, but I'm not sure.
GeneralRe: Shut down explorer programmatically Pin
Ian Bowler13-Apr-05 8:48
Ian Bowler13-Apr-05 8:48 
GeneralRe: Shut down explorer programmatically Pin
Dave Kreskowiak13-Apr-05 9:08
mveDave Kreskowiak13-Apr-05 9:08 
GeneralRe: Shut down explorer programmatically Pin
Ian Bowler13-Apr-05 9:13
Ian Bowler13-Apr-05 9:13 
GeneralRe: Shut down explorer programmatically Pin
tommazzo13-Apr-05 9:38
tommazzo13-Apr-05 9:38 
GeneralRe: Shut down explorer programmatically Pin
Ian Bowler13-Apr-05 9:39
Ian Bowler13-Apr-05 9:39 
GeneralRe: Shut down explorer programmatically Pin
Dave Kreskowiak13-Apr-05 10:13
mveDave Kreskowiak13-Apr-05 10:13 
GeneralRe: Shut down explorer programmatically Pin
Ian Bowler13-Apr-05 11:18
Ian Bowler13-Apr-05 11:18 
GeneralRe: Shut down explorer programmatically Pin
Dave Kreskowiak13-Apr-05 8:49
mveDave Kreskowiak13-Apr-05 8:49 
GeneralWeird Shelling Issue inside and out of IDE Pin
CyberTech13-Apr-05 7:34
CyberTech13-Apr-05 7:34 

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.