Get handle of Panel

 

Hi,

I can use 'GetParent()' within 'user32.dll' to get the handle of the current chart.  I can then manipulate that chart.

 

How do I get the handle of a Panel that I've created within that chart?  So

 

int Onit(void)

{

ExtDialog = new CPanelDialog;

ExtDialog.Create(...

 etc

}

How do I get the handle of ExtDialog so I can manipulate it.  Specifically, I want to remove the border, and I can't work out how to do it.

 

Thanks 

 
You have to learn (read about) the basics of OOP! Start searching in the Doc. or as an example with this article to understand the system of constructors, methods, classes, ...
 
I'm looking for an example.  Thanks.
Reason: