Click here to Skip to main content
15,917,951 members
Home / Discussions / C#
   

C#

 
QuestionPropagating a MySQL Database Transaction Rollback through WCF using MSMQ Pin
Ger Hayden4-Feb-13 21:44
Ger Hayden4-Feb-13 21:44 
AnswerRe: Propagating a MySQL Database Transaction Rollback through WCF using MSMQ Pin
Pete O'Hanlon4-Feb-13 22:18
mvePete O'Hanlon4-Feb-13 22:18 
GeneralRe: Propagating a MySQL Database Transaction Rollback through WCF using MSMQ Pin
Ger Hayden4-Feb-13 22:47
Ger Hayden4-Feb-13 22:47 
QuestionTo get the info for how to validate an embedded object in office files Pin
Learning_to_code4-Feb-13 19:54
Learning_to_code4-Feb-13 19:54 
QuestionC# linq to sql error Pin
dcof4-Feb-13 12:32
dcof4-Feb-13 12:32 
AnswerRe: C# linq to sql error Pin
Simon_Whale4-Feb-13 12:59
Simon_Whale4-Feb-13 12:59 
GeneralRe: C# linq to sql error Pin
dcof4-Feb-13 16:22
dcof4-Feb-13 16:22 
QuestionStepper motor control by using Fez mini Pin
Member 98108984-Feb-13 12:22
Member 98108984-Feb-13 12:22 
AnswerRe: Stepper motor control by using Fez mini Pin
OriginalGriff5-Feb-13 1:24
mveOriginalGriff5-Feb-13 1:24 
GeneralRe: Stepper motor control by using Fez mini Pin
Member 98108985-Feb-13 1:46
Member 98108985-Feb-13 1:46 
GeneralRe: Stepper motor control by using Fez mini Pin
OriginalGriff5-Feb-13 1:53
mveOriginalGriff5-Feb-13 1:53 
GeneralRe: Stepper motor control by using Fez mini Pin
Member 98108985-Feb-13 1:58
Member 98108985-Feb-13 1:58 
AnswerRe: Stepper motor control by using Fez mini Pin
Dave Kreskowiak5-Feb-13 2:36
mveDave Kreskowiak5-Feb-13 2:36 
GeneralRe: Stepper motor control by using Fez mini Pin
Member 98108985-Feb-13 2:49
Member 98108985-Feb-13 2:49 
GeneralRe: Stepper motor control by using Fez mini Pin
Pete O'Hanlon5-Feb-13 4:21
mvePete O'Hanlon5-Feb-13 4:21 
GeneralRe: Stepper motor control by using Fez mini Pin
Member 98108985-Feb-13 13:06
Member 98108985-Feb-13 13:06 
GeneralRe: Stepper motor control by using Fez mini Pin
Dave Kreskowiak5-Feb-13 5:12
mveDave Kreskowiak5-Feb-13 5:12 
Questionhow to make a movable button in c# Pin
mortezakazemi684-Feb-13 4:24
mortezakazemi684-Feb-13 4:24 
AnswerRe: how to make a movable button in c# Pin
Pete O'Hanlon4-Feb-13 4:59
mvePete O'Hanlon4-Feb-13 4:59 
JokeRe: how to make a movable button in c# Pin
Mycroft Holmes5-Feb-13 22:21
professionalMycroft Holmes5-Feb-13 22:21 
AnswerRe: how to make a movable button in c# Pin
Abhinav S4-Feb-13 5:42
Abhinav S4-Feb-13 5:42 
AnswerRe: how to make a movable button in c# Pin
Amir Mohammad Nasrollahi29-Jul-13 22:51
professionalAmir Mohammad Nasrollahi29-Jul-13 22:51 
QuestionUninstallation of msi file programatically Pin
NarVish4-Feb-13 0:27
NarVish4-Feb-13 0:27 
AnswerRe: Uninstallation of msi file programatically Pin
Eddy Vluggen4-Feb-13 0:30
professionalEddy Vluggen4-Feb-13 0:30 
General.Re: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 0:37
NarVish4-Feb-13 0:37 
"I tried to uninstall the same using below code, but its not working."
Process p = new Process();
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.Arguments = "/x \"C:\\Projects\\Debug\\ELSWinServInstaller.msi\"/qn";
p.Start();

Unistallation code is not working. It didn't throw any exception. it executed each line. but uninstallation didn't happen.

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.