Question Run application without any forms

VantiveGuy

Member
Joined
Mar 5, 2009
Messages
18
Location
Brussels on Contract
Programming Experience
1-3
Hi,
I have a VB.NET application that will be launched from Windows Scheduler and will perform periodic database operations to a Sybase ASE system. I performed development and debugging by launching the code from a button on a form, but now I need for the application to run without intervention.
Is there a class I can place the code under instead of the Form class I started with? How do you run VB.Net code without launching from a form.
Thank you.
 
You can use a Console Application project instead.
 
Hi John,

Thanks. I never even thought to try that. I just assumed there was a different class to run it under.
I'll try that now. I guess it is OK to cut&Paste the code from the form application to the console application.
Cheers.
 
Back
Top