Thursday, 15 August 2013

C# open a program in a form -



C# open a program in a form -

i'm trying open exe in form below code.

this open programme outside form.i want have programme within of form. please help regards

process p = new process(); p.startinfo.filename = @"c:\program files\cadence design systems\allegro free physical viewers 16.6\tools\pcb\bin\allegro_free_viewer"; p.startinfo.arguments = "processstart.cs"; p.start(); p.waitforexit(); p.startinfo.redirectstandardoutput = true; p.startinfo.useshellexecute = false;

you can not run other application within application using process, can object linking , embedding , application want open within application should complaint ole. codeproject article explains how can embed acrobat document within c# application.

c#

No comments:

Post a Comment