Click here to Skip to main content
15,922,315 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataBind Issue NO LUCK Pin
HolyGrandFather28-Dec-05 3:05
HolyGrandFather28-Dec-05 3:05 
GeneralRe: DataBind Issue NO LUCK Pin
albCode28-Dec-05 3:35
albCode28-Dec-05 3:35 
QuestionHow to disable close and resize button in c#.net application Pin
Malayil alex28-Dec-05 0:41
Malayil alex28-Dec-05 0:41 
AnswerRe: How to disable close and resize button in c#.net application Pin
albCode28-Dec-05 0:54
albCode28-Dec-05 0:54 
AnswerRe: How to disable close and resize button in c#.net application Pin
Luis Alonso Ramos28-Dec-05 5:56
Luis Alonso Ramos28-Dec-05 5:56 
AnswerRe: How to disable close and resize button in c#.net application Pin
imsathy29-Dec-05 1:53
imsathy29-Dec-05 1:53 
Questionhelp regarding redirecting consol I/O in c# app. Pin
musmanafzal28-Dec-05 0:32
musmanafzal28-Dec-05 0:32 
AnswerRe: help regarding redirecting consol I/O in c# app. Pin
Judah Gabriel Himango28-Dec-05 4:44
sponsorJudah Gabriel Himango28-Dec-05 4:44 
You don't need to start CMD.exe. Just start your Console app using System.Diagnostics.Process.Start. To intercept output or give input, you can use some methods of the Process class:

System.Diagnostics.Process proc = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo("myConsoleApp.exe", "any arguments go here");
proc.StartInfo = startInfo;
proc.StandardInput.Write("I'm now inputting text to the console app!");
proc.StandardOutput.ReadLine(); // I just read the output of the app!


Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Bought a House!
Judah Himango


QuestionHow to disable SAVE,PRINT options in MS OFFICE using WINDOWS API's Pin
pradpb99927-Dec-05 22:17
pradpb99927-Dec-05 22:17 
AnswerRe: How to disable SAVE,PRINT options in MS OFFICE using WINDOWS API's Pin
Judah Gabriel Himango28-Dec-05 4:32
sponsorJudah Gabriel Himango28-Dec-05 4:32 
QuestionSockets Pin
HakunaMatada27-Dec-05 22:11
HakunaMatada27-Dec-05 22:11 
AnswerRe: Sockets Pin
KaptinKrunch28-Dec-05 2:30
KaptinKrunch28-Dec-05 2:30 
AnswerRe: Sockets Pin
leppie28-Dec-05 2:37
leppie28-Dec-05 2:37 
QuestionGDI+: pixel correctness Pin
peterchen27-Dec-05 21:46
peterchen27-Dec-05 21:46 
AnswerRe: GDI+: pixel correctness Pin
Robert Rohde27-Dec-05 22:24
Robert Rohde27-Dec-05 22:24 
AnswerRe: GDI+: pixel correctness Pin
leppie28-Dec-05 2:26
leppie28-Dec-05 2:26 
AnswerRe: GDI+: pixel correctness Pin
Roger Alsing28-Dec-05 3:04
Roger Alsing28-Dec-05 3:04 
QuestionFinding row delimeters of a TextFile Pin
Acheive_it27-Dec-05 21:16
Acheive_it27-Dec-05 21:16 
Questionnew to C# Pin
chubbie27-Dec-05 18:13
chubbie27-Dec-05 18:13 
AnswerRe: new to C# Pin
WillemM28-Dec-05 8:52
WillemM28-Dec-05 8:52 
GeneralRe: new to C# Pin
chubbie28-Dec-05 13:43
chubbie28-Dec-05 13:43 
GeneralRe: new to C# Pin
imsathy29-Dec-05 2:05
imsathy29-Dec-05 2:05 
GeneralRe: new to C# Pin
chubbie29-Dec-05 13:43
chubbie29-Dec-05 13:43 
QuestionVS 2005 Pin
ppp00127-Dec-05 18:10
ppp00127-Dec-05 18:10 
AnswerRe: VS 2005 Pin
Vikram A Punathambekar27-Dec-05 19:01
Vikram A Punathambekar27-Dec-05 19:01 

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.