Click here to Skip to main content
15,907,492 members
Home / Discussions / C#
   

C#

 
GeneralRe: using MS Word as mail Editor like outlook : C# Pin
Alex Korchemniy7-Jun-05 20:52
Alex Korchemniy7-Jun-05 20:52 
GeneralDataSet and Date in PostgreSQL Pin
sanfacio7-Jun-05 5:40
sanfacio7-Jun-05 5:40 
GeneralVisual Studio Debugger Pin
MarkMokris7-Jun-05 5:07
MarkMokris7-Jun-05 5:07 
GeneralRe: Visual Studio Debugger Pin
Judah Gabriel Himango7-Jun-05 6:22
sponsorJudah Gabriel Himango7-Jun-05 6:22 
GeneralRe: Visual Studio Debugger Pin
nemopeti8-Jun-05 5:22
nemopeti8-Jun-05 5:22 
QuestionHow to request page if server demands SCRIPTING abitlity Pin
delemur7-Jun-05 4:57
delemur7-Jun-05 4:57 
GeneralProcess + CMD Issue Pin
Opa Knack7-Jun-05 4:31
Opa Knack7-Jun-05 4:31 
GeneralRe: Process + CMD Issue Pin
Judah Gabriel Himango7-Jun-05 4:50
sponsorJudah Gabriel Himango7-Jun-05 4:50 
To launch a process without a window:

System.Diagnostics.ProcessStartInfo info = new ProcessStartInfo("cmd", "/c net stop messenger");
info.CreateNoWindow = true;

Process process = new Process();
process.StartInfo = info;
process.Start();


To get the output stream, use process.StandardOutput, which returns a StreamReader.

Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Conversation With a Muslim
Judah Himango


GeneralRe: Process + CMD Issue Pin
Opa Knack7-Jun-05 6:11
Opa Knack7-Jun-05 6:11 
GeneralRe: Process + CMD Issue Pin
User 66587-Jun-05 9:20
User 66587-Jun-05 9:20 
QuestionHow to change name for namspaces Pin
Anonymous7-Jun-05 3:55
Anonymous7-Jun-05 3:55 
AnswerRe: How to change name for namspaces Pin
MoustafaS7-Jun-05 4:42
MoustafaS7-Jun-05 4:42 
QuestionHow to change namspaces Pin
Anonymous7-Jun-05 3:55
Anonymous7-Jun-05 3:55 
AnswerRe: How to change namspaces Pin
Judah Gabriel Himango7-Jun-05 4:41
sponsorJudah Gabriel Himango7-Jun-05 4:41 
GeneralENTER key Pin
rain7117-Jun-05 3:34
rain7117-Jun-05 3:34 
GeneralRe: ENTER key Pin
Judah Gabriel Himango7-Jun-05 4:39
sponsorJudah Gabriel Himango7-Jun-05 4:39 
GeneralRe: ENTER key Pin
rain7118-Jun-05 2:05
rain7118-Jun-05 2:05 
GeneralRe: ENTER key Pin
nemopeti8-Jun-05 5:29
nemopeti8-Jun-05 5:29 
GeneralRe: ENTER key Pin
Judah Gabriel Himango8-Jun-05 7:20
sponsorJudah Gabriel Himango8-Jun-05 7:20 
GeneralFlicker Pin
Umair Ahmad khan7-Jun-05 3:11
Umair Ahmad khan7-Jun-05 3:11 
GeneralRe: Flicker Pin
Ian Darling7-Jun-05 4:12
Ian Darling7-Jun-05 4:12 
GeneralRe: Flicker Pin
Judah Gabriel Himango7-Jun-05 4:38
sponsorJudah Gabriel Himango7-Jun-05 4:38 
GeneralRe: Flicker Pin
Mike Kitchen8-Jun-05 2:54
Mike Kitchen8-Jun-05 2:54 
GeneralRe: Flicker Pin
Judah Gabriel Himango8-Jun-05 7:17
sponsorJudah Gabriel Himango8-Jun-05 7:17 
GeneralCreating Order IDs Pin
hasanali007-Jun-05 2:40
hasanali007-Jun-05 2:40 

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.