The default startup object in VB6 is Form1. Since it always gets called at startup, the IDE won't let you delete it... But, you can change this behavior.
In a module, be sure to have a sub named "Main"
Then go to the Project Properties Menu, and change the Startup Object to Sub Main.
Now you can delete Form1.
Just be sure that Sub Main calls the code you need to run at startup...