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.
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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