I have two projects, one is a win32 program and other is a c++/cli dynamic library.
in c++/cli dynamic library,it export this function:
using namespace System::Windows::Forms;
using namespace System::Diagnostics;
LIB_API void Create(HWND parent){
auto c = gcnew TextBox();
c->Location = System::Drawing::Point(0, 0);
c->Name = "textBox1";
c->Size = System::Drawing::Size(100, 21);
c->Parent = Control::FromHandle(IntPtr(parent));
}
when the win32 program call this function, will create a TextBox control.
but it's not work.
The debug log shows that the TextBox was created,but use spy++ can't find it.
I solved the problem myself.