Paul
What is the recommended way to add custom controls to the designer code. Where would you suggest I put the code as to not trip on the designer workflow?
Thanks
Jim
Hi Jim,
Probably in the Load event of the Form would be a good place. The hWnd handle of the Form is valid at that point.
If you have to initialize the control then anywhere at the top of your main code prior to calling the Application.Run(frmMain) would be a good place.
Thanks. I will give it a shot.