I know this is a reeeeaaaally basic question and probably sounds stupid, but here it goes. I've designed an application that runs from one VB form. I have an About menu that brings of a splash screen. When the user clicks the About menu option from the main form, I want the splash screen to load and the main form hidden.


Wouldn't I just do something like this in the About menu click_event?:

frmMain.hide
frmSplash.load

These aren't working for me. What's wrong??

Thanks!!