I have a usercontrol which is basically an numericupdown and a label control.
I added this control via the add - add user control menu item instead of creating a new dll for the control.
how do I go about using this control in different forms in my application.
I have tried this in one of my forms init and load methods
CustomNumericUpDown myNum = new CustomNumericUpDown();
myNum.Location = new Point(88, 80);
myNum.Visible = true;
myNum.Invalidate();
myNum.Show();
the control does not show up in the form, what am i missing
Please help