why microsoft drive me to yield one feature!? I need "application
framework enabled" and use with Module as StartUp???
You don't need to yield anything. Just create a module with a function
called Main (or anything you want to call it). Then in the Project
Application property pane, turn off the "enable application framework"
check box, and select the Main function in the Startup object drop
down. Then, first thing in the Main function do the call:
Application.EnableVisualStyles()
You will probably want to open a main form eventually in Main, and the
best way to do that is to instantiate an instance of the form's class,
and call it with:
Application.Run(FormName)
This is the standard format I use for all VB.NET Windows applications.