I need to add events to a new object during runtime. This is what I have so far:
Code:
Dim Form_To_Create As Form
Form_to_Create.Caption = "Test"
Form_To_Create.Show
How would I add code to the Form_Click Event?
Also, how would you put an image over another image?
I tried a picturebox over another but you saw the square of the object over the form, but I would like to be able to see just the image in front. Thanks.