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

C#

 
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 
I could able to install msi file using below code and it installed sucessfully

C#
string path = @"C:\Projects\Debug\ELSWinServInstaller.msi"; 
Process process = Process.Start(path);
process.WaitForInputIdle();
process.WaitForExit(); 


I tried to uninstall the same using below code, but its not working.
C#
Process p = new Process();
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.Arguments = "/x \"C:\\Projects\\Debug\\ELSWinServInstaller.msi\"/qn";
p.Start(); 

Please let me know where I went wrong.
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 
AnswerRe: .Re: Uninstallation of msi file programatically Pin
Eddy Vluggen4-Feb-13 7:46
professionalEddy Vluggen4-Feb-13 7:46 
AnswerRe: Uninstallation of msi file programatically Pin
Abhinav S4-Feb-13 1:02
Abhinav S4-Feb-13 1:02 
GeneralRe: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 1:25
NarVish4-Feb-13 1:25 

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.