tags:

views:

149

answers:

2

Is it possible to set the parent of a .NET WinForm to a native app?

So it acts like its child window?

+2  A: 

There doesn't seem to be an officially supported way to do this. It was discussed in the following article:

Specifying Parent to a Windows Form Where Parent Form is in VB 6

dommer
The problem there seemed to be that VB6 didn't like have a C# form as it's child.
Samuel
+1  A: 

I used the SetParent win32 method and it worked. Thanks all.

Joan Venge