alphokung Newbie

Joined: 18 Oct 2010 Posts: 3
|
Posted: Thu Oct 28, 2010 2:05 am Post subject: How can i use OpenOffice as MDI Child with .Net |
|
|
If i want to use OO as MDI Child how can I do it. Now I try to use something like this
Process p = Process.Start(@"swriter.exe");
Thread.Sleep(1000);
SetParent(p.MainWindowHandle, this.Handle);
But it had a error with p.MainWindowHandle because p is null.
ps. I can use this code for other program like Word or Excel. |
|