I'm having quite a time trying to do just the simplest of things with .NET. I have a main form. When the user deletes an item on that form I want a message box to load. (Yes, I created a form displaying a message box because .NET does not allow us to change the properties of the message box & I wanted the back color etc. to change.) How do I get the 2nd form to show??? I've tried:

Dim frmMsgBox As New Form()
frmMsgBox.Show()

This does not work. The form never loads. How is everyone else doing this?

Thanks,
Corinne