P
Piter
I trying:
Form = new TForm1(NULL);
Form->ParentWindow = NULL;
Form->Parent=NULL;
Form->Show();
But it seems like Form still has parent.
I want achieve result like new Form creating new task button on task bar.
How to do this on Builder C++
(My Form must inherit from TForm)
thanks
Piter
Form = new TForm1(NULL);
Form->ParentWindow = NULL;
Form->Parent=NULL;
Form->Show();
But it seems like Form still has parent.
I want achieve result like new Form creating new task button on task bar.
How to do this on Builder C++
(My Form must inherit from TForm)
thanks
Piter