Click to See Complete Forum and Search --> : Run in stealth


mymm
September 1st, 2001, 06:42 PM
Hi,I have a little question ,hope someone will help me:I want to ask to make
my VB program run in stealth mode that means there's no form,no icon,nothing appear on the screen but it
still run in the background....
Please help me...Thanks

Picky
September 2nd, 2001, 07:39 PM
Sounds a lot like a virus...

urs
September 3rd, 2001, 03:13 AM
if u get this let me know as well

berta
September 3rd, 2001, 03:25 AM
do U want realize a service?
or U want a simple batch program?

in the second case...
add a module and add sub main(). then in property page of your project set sub main as start up procedure instaed of a form...

hi,brt


<center>
<HR width=80%>
<img src='http://web.tiscali.it/bertaplanet/images/bertaplanet.gif'>
</center>

berta
September 3rd, 2001, 03:26 AM
...use also app.TaskVisible=False

<center>
<HR width=80%>
<img src='http://web.tiscali.it/bertaplanet/images/bertaplanet.gif'>
</center>

Cimperiali
September 3rd, 2001, 06:30 AM
Berta is right: use a sub main(). Moreover, you can make it an activex.Exe if you are familiar to (but this is not really necessary: you may have all bas module you need)

Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, TCartwright, Bruno Paris, Dr_Micahel
and all the other wonderful people who made and make Codeguru a great place.
Come back soon, you Gurus.

The Rater

mymm
September 4th, 2001, 06:41 PM
Thanks alot ...