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

C#

 
GeneralRe: regd dll's Pin
wibblewibblewibble16-May-04 22:14
wibblewibblewibble16-May-04 22:14 
GeneralRe: regd dll's Pin
Dave Kreskowiak17-May-04 0:50
mveDave Kreskowiak17-May-04 0:50 
GeneralInterProcess Communication in WinForms Pin
Ariadne16-May-04 21:39
Ariadne16-May-04 21:39 
GeneralRe: InterProcess Communication in WinForms Pin
Dave Kreskowiak17-May-04 3:34
mveDave Kreskowiak17-May-04 3:34 
GeneralRe: InterProcess Communication in WinForms Pin
Ariadne17-May-04 3:37
Ariadne17-May-04 3:37 
GeneralRe: InterProcess Communication in WinForms Pin
Dave Kreskowiak17-May-04 3:45
mveDave Kreskowiak17-May-04 3:45 
GeneralRe: InterProcess Communication in WinForms Pin
Ariadne17-May-04 4:04
Ariadne17-May-04 4:04 
GeneralRe: InterProcess Communication in WinForms Pin
Dave Kreskowiak17-May-04 4:26
mveDave Kreskowiak17-May-04 4:26 
???????????????????????????????????????????????
???????????????????????????????????????????????
???????????????????????????????????????????????

I take it Animation.exe is a commandline utility that runs in a CMD window? Correct?

If Animation.exe is a normal Windows app (GUI interface), then this won't work...

You can "talk" to Animation.exe through the Standard pipes. StandardInput is the keyboard stream into Animation.exe and StandardOutput is the console stream that the app uses to display text. If you redirect both of these streams in the ProcessStart class you used, you can read and write to the streams using .StardardInput.WriteLine() and .StandardOutput.ReadLine() on the process object that is returned. The catch is, if you redirect the streams, the user won't see anything except a blank console window. No text will be displayed and the window won't respond to the keyboard. Your app will have to send keyboard input using .WriteLine() just like the user would type at the keyboard. If the user has to type EXIT to get the app to quit, your app would have to do something like p.StandardInput.WriteLine("EXIT") to do the same.


RageInTheMachine9532
GeneralRe: InterProcess Communication in WinForms Pin
Ariadne17-May-04 4:38
Ariadne17-May-04 4:38 
GeneralRe: InterProcess Communication in WinForms Pin
Dave Kreskowiak17-May-04 4:55
mveDave Kreskowiak17-May-04 4:55 
GeneralRe: InterProcess Communication in WinForms Pin
Ariadne17-May-04 5:18
Ariadne17-May-04 5:18 
Generalmesseging Pin
Devkalyan Das16-May-04 20:43
Devkalyan Das16-May-04 20:43 
GeneralRe: messeging Pin
Heath Stewart17-May-04 4:04
protectorHeath Stewart17-May-04 4:04 
GeneralRuntime Polymorphism Pin
sreejith ss nair16-May-04 20:43
sreejith ss nair16-May-04 20:43 
GeneralRe: Runtime Polymorphism Pin
Dave Kreskowiak17-May-04 0:52
mveDave Kreskowiak17-May-04 0:52 
GeneralRe: Runtime Polymorphism Pin
sreejith ss nair17-May-04 1:41
sreejith ss nair17-May-04 1:41 
GeneralRe: Runtime Polymorphism Pin
Dave Kreskowiak17-May-04 3:28
mveDave Kreskowiak17-May-04 3:28 
GeneralASP.NET and threads Pin
devvvy16-May-04 18:09
devvvy16-May-04 18:09 
GeneralRe: ASP.NET and threads Pin
TigerNinja_16-May-04 18:29
TigerNinja_16-May-04 18:29 
GeneralMore questions... Pin
devvvy16-May-04 22:02
devvvy16-May-04 22:02 
GeneralEmbed application Pin
The_Soul_Of_Rock16-May-04 17:58
The_Soul_Of_Rock16-May-04 17:58 
GeneralRe: Embed application Pin
TigerNinja_16-May-04 18:31
TigerNinja_16-May-04 18:31 
GeneralPost Data from DataList LinkButton Pin
Nickiler16-May-04 16:09
Nickiler16-May-04 16:09 
GeneralRe: Post Data from DataList LinkButton Pin
TigerNinja_16-May-04 18:18
TigerNinja_16-May-04 18:18 
GeneralRe: Post Data from DataList LinkButton Pin
Nickiler16-May-04 21:09
Nickiler16-May-04 21:09 

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.