When I used the wizard to help make an app, I ended up with a splash screen and a main form . . . (frmSplash and frmForm). Are these classes or objects?

For example, it seems as though the frmMain is a class since the wizard used New to instantiate fMainForm. But why didn't the wizard use New to instantiate a splash object? It just called it's Show method. Why? Is frmSplash an object and frmMain a class? How can you tell? Thanks for any help.


frmSplash.Show
frmSplash.Refresh
set fMainForm = new frmMain
Load fMainForm
Unload frmSplash
fMainForm.Show




. . .