Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
QuestionEfficient way to handle search page Pin
Umair Feroze3-Feb-11 22:34
Umair Feroze3-Feb-11 22:34 
QuestionWindows program responding to win + d Pin
ayandelhi3-Feb-11 21:57
ayandelhi3-Feb-11 21:57 
AnswerRe: Windows program responding to win + d Pin
Luc Pattyn3-Feb-11 22:23
sitebuilderLuc Pattyn3-Feb-11 22:23 
GeneralRe: Windows program responding to win + d Pin
ayandelhi3-Feb-11 23:31
ayandelhi3-Feb-11 23:31 
AnswerRe: Windows program responding to win + d Pin
Luc Pattyn3-Feb-11 23:41
sitebuilderLuc Pattyn3-Feb-11 23:41 
GeneralRe: Windows program responding to win + d Pin
ayandelhi3-Feb-11 23:51
ayandelhi3-Feb-11 23:51 
QuestionC# method to restart the application Pin
ayandelhi3-Feb-11 18:56
ayandelhi3-Feb-11 18:56 
AnswerRe: C# method to restart the application Pin
Peace ON3-Feb-11 19:31
Peace ON3-Feb-11 19:31 
You can use following code to do so
// Shut down the current app instance.
Application.Exit();

// Restart the app passing "/restart [processId]" as cmd line args
Process.Start(Application.ExecutablePath, "/restart" + Process.GetCurrentProcess().Id);



HTH
Jinal Desai - LIVE
Experience is mother of sage....

GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 19:56
ayandelhi3-Feb-11 19:56 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 20:05
ayandelhi3-Feb-11 20:05 
GeneralRe: C# method to restart the application Pin
Peace ON3-Feb-11 20:13
Peace ON3-Feb-11 20:13 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 20:18
ayandelhi3-Feb-11 20:18 
AnswerRe: C# method to restart the application Pin
Peace ON3-Feb-11 20:20
Peace ON3-Feb-11 20:20 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 20:30
ayandelhi3-Feb-11 20:30 
AnswerRe: C# method to restart the application Pin
Luc Pattyn3-Feb-11 21:53
sitebuilderLuc Pattyn3-Feb-11 21:53 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 23:32
ayandelhi3-Feb-11 23:32 
GeneralRe: C# method to restart the application Pin
Pete O'Hanlon4-Feb-11 1:48
mvePete O'Hanlon4-Feb-11 1:48 
GeneralRe: C# method to restart the application Pin
ayandelhi5-Feb-11 16:51
ayandelhi5-Feb-11 16:51 
QuestionGet GetKeyboardLayout for Active Window In Keyboard Hook Pin
Anubhava Dimri3-Feb-11 18:12
Anubhava Dimri3-Feb-11 18:12 
QuestionMulti Threading Pin
mj_developer3-Feb-11 13:35
mj_developer3-Feb-11 13:35 
AnswerRe: Multi Threading Pin
Luc Pattyn3-Feb-11 14:02
sitebuilderLuc Pattyn3-Feb-11 14:02 
AnswerRe: Multi Threading Pin
_Maxxx_3-Feb-11 18:47
professional_Maxxx_3-Feb-11 18:47 
QuestionDLL Registration Issue Pin
turc16563-Feb-11 6:57
turc16563-Feb-11 6:57 
AnswerRe: DLL Registration Issue Pin
jim lahey3-Feb-11 8:46
jim lahey3-Feb-11 8:46 
GeneralRe: DLL Registration Issue Pin
turc16563-Feb-11 10:00
turc16563-Feb-11 10:00 

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.