Click here to Skip to main content
15,888,816 members
Home / Discussions / C#
   

C#

 
Questionnavigation page control, library extention for c# winforms Pin
KasGuest7-Dec-14 18:00
KasGuest7-Dec-14 18:00 
QuestionRe: navigation page control, library extention for c# winforms Pin
Richard MacCutchan7-Dec-14 22:56
mveRichard MacCutchan7-Dec-14 22:56 
AnswerRe: navigation page control, library extention for c# winforms Pin
KasGuest8-Dec-14 22:53
KasGuest8-Dec-14 22:53 
GeneralRe: navigation page control, library extention for c# winforms Pin
Richard MacCutchan8-Dec-14 23:01
mveRichard MacCutchan8-Dec-14 23:01 
Question[SOLVED] Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415287-Dec-14 13:32
Ray415287-Dec-14 13:32 
AnswerRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
BillWoodruff7-Dec-14 14:12
professionalBillWoodruff7-Dec-14 14:12 
GeneralRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415287-Dec-14 15:36
Ray415287-Dec-14 15:36 
GeneralRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415287-Dec-14 15:38
Ray415287-Dec-14 15:38 
This is the latest iteration that I tried which I found on the web.

XML
using (var process = new Process())
            {

                process.StartInfo.UseShellExecute = false;
                process.StartInfo.CreateNoWindow = true;
                process.StartInfo.RedirectStandardError = true;
                process.StartInfo.RedirectStandardOutput = true;
                process.StartInfo.FileName = "Codegen.exe";
                process.StartInfo.Arguments = open.FileName + " 10 30";

                process.Start();

                //Thread.Sleep(100);

                using (Task processWaiter = Task.Factory.StartNew(() => process.WaitForExit()))
                using (Task<string> outputReader = Task.Factory.StartNew(() => process.StandardOutput.ReadToEnd()))
                using (Task<string> errorReader = Task.Factory.StartNew(() => process.StandardError.ReadToEnd()))
                {
                    Task.WaitAll(processWaiter, outputReader, errorReader);

                    standardOutput = outputReader.Result;
                    standardError = errorReader.Result;
                }

GeneralRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
BillWoodruff7-Dec-14 18:21
professionalBillWoodruff7-Dec-14 18:21 
AnswerRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Harsh Athalye7-Dec-14 17:13
Harsh Athalye7-Dec-14 17:13 
General[SOLVED]Re: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415288-Dec-14 5:20
Ray415288-Dec-14 5:20 
GeneralRe: [SOLVED]Re: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Harsh Athalye8-Dec-14 17:59
Harsh Athalye8-Dec-14 17:59 
Questioni want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 6:21
Keshav Shivhare7-Dec-14 6:21 
SuggestionRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard MacCutchan7-Dec-14 6:42
mveRichard MacCutchan7-Dec-14 6:42 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 6:53
Keshav Shivhare7-Dec-14 6:53 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard MacCutchan7-Dec-14 7:00
mveRichard MacCutchan7-Dec-14 7:00 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 7:47
Keshav Shivhare7-Dec-14 7:47 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu7-Dec-14 13:08
mvasyed shanu7-Dec-14 13:08 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare8-Dec-14 3:12
Keshav Shivhare8-Dec-14 3:12 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:11
mvasyed shanu8-Dec-14 13:11 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:16
mvasyed shanu8-Dec-14 13:16 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard Deeming9-Dec-14 1:51
mveRichard Deeming9-Dec-14 1:51 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
aartimishra9-Dec-14 23:30
aartimishra9-Dec-14 23:30 
QuestionHow can I Create windows signup form application from html codes ? Pin
madleet6-Dec-14 16:51
madleet6-Dec-14 16:51 
QuestionRe: How can I Create windows signup form application from html codes ? Pin
Richard MacCutchan6-Dec-14 21:23
mveRichard MacCutchan6-Dec-14 21:23 

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.