PDA

View Full Version : hide program


Stephen G.
06-22-2004, 09:58 PM
Hey guys,

I am working on a small program that runs in the backround. The program works on a timer that checks certain settings once every second. I have chosen the hidden feature that hides the program, but because I am using the Page timer feature, the page is visible on the screen.

My question is, is it possible to make the page transparent or hidden while the program is running?

thank you

Corey
06-22-2004, 10:34 PM
Hi.

1. Check PROJECT > WINDOW SETTINGS > TASKBAR > HIDDEN

2. Then add this code to your PAGE > ONSHOW event:

Window.Minimize(Application.GetWndHandle());

Should work, hope that helps. :)

Corey Milner
Creative Director, Indigo Rose Software (http://www.indigorose.com)

Stephen G.
06-23-2004, 09:12 PM
Thank you, this is exactly what I need.