Click here to Skip to main content
15,886,873 members

Comments by Muthu Nadar (Top 20 by date)

Muthu Nadar 7-May-14 4:22am View    
Further I have tried using threading and Backgroundworker, but un successful
Muthu Nadar 6-May-14 9:05am View    
Below is the code i used to call exe

var p = new System.Diagnostics.Process()
{
StartInfo =
{
FileName = pdfHtmlToPdfExePath,
Arguments = urlsSeparatedBySpaces + " " + outputFilename,
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
RedirectStandardInput = true,
WorkingDirectory = outputFolder
}
};

p.Start();
var errorOutput = p.StandardError.ReadToEnd();
p.WaitForExit(60000);
p.Close();

Additionally, I have used below code to read status from the console window,
while (p.HasExited)
{
Response.Write(p.StandardOutput.ReadLine());
}
Muthu Nadar 17-Sep-12 1:46am View    
Kindly reply me with some solution, I ll surly tell why it is necessary if required.
Muthu Nadar 22-May-12 0:06am View    
Thank you..
I ll definitely have a try...
Muthu Nadar 14-Mar-12 8:53am View    
I think their is nothing to vague after mention CRM.
I know what all the features need to be implemented on a project once I hear "CRM"
Why I asked for some open source code is, so that I can come up with the ready project fast. As Open Source code for CRM will have all the basic functionally ready.