Hi,
I'm using a UserControl-Collection on my Mainform.
Inside those UserControls I want a ClickEvent to call a _MouseUp Routine of the Mainform.
I was able to get it working by declaring this _MouseUp Routine as Public and caling it by
I do understand that that is not a porper way to do, however I'm struggeling on how to do it correctly. Could anybody give me a hint?
I'm using a UserControl-Collection on my Mainform.
Inside those UserControls I want a ClickEvent to call a _MouseUp Routine of the Mainform.
I was able to get it working by declaring this _MouseUp Routine as Public and caling it by
Code:
MainForm.PictureBox_MouseUp(MainForm.PictureBox, myMouseEventArg)