Irrlicht on a VCL panel or form?

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Post Reply
Jazz
Posts: 6
Joined: Fri Aug 27, 2004 7:24 am

Irrlicht on a VCL panel or form?

Post by Jazz »

Is it possible to make a delphi or cpp builder form or panel anyway as a parent or owner of an irrlicht render window?
Jazz
Posts: 6
Joined: Fri Aug 27, 2004 7:24 am

Post by Jazz »

found some code in forum

Code: Select all

device->setWindowCaption(L"irrwnd"); 
HWND hWndChild = FindWindow(NULL,"irrwnd"); 
SetParent(hWndChild, Form1->Handle); 
Post Reply