Link to home
Start Free TrialLog in
Avatar of Cyber-Drugs
Cyber-DrugsFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Hidden Application

Hi guys,

My boss has been constantly asking me and other members of my team to remind him to do things, and it's gotten to the stage where we have decided it's best to install a little program that runs in the background of his computer, and every 30 minutes comes up and displays a message for him, fullscreen which lasts about 10 seconds.

How would I go about making such an application? I will want to add extra things onto it at a later date, so it could become a bit more useful, but for now it's purely to aggravate him so that he stops asking us to remember everything for him.

Cheers guys!
Avatar of Brian Mulder
Brian Mulder
Flag of Netherlands image

Hi Cyber-Drugs,
----------
not meant as answer but why not use outlook it has a great reminder function that can handle snooze, all kind of time settings and the complete scheduling from minutes to weeks, besides you can mail yourself reminders

a a suggestion you could use this control
http://www.codeproject.com/cs/miscctrl/Calendardayview.asp // free registration

use it as a start
add it to a form
plus a timer control to check for events in the day list to act upon
when the the timer tick comes you popup the appointment as you wish

----------
bruintje
share what you know, learn what you don't
The simplest way?  IMHO, is set the ShowInTaskbar property of the windows form to false.

Create a timer and set the timer interval for 30 minutes and when the timer elapsed event is triggered show the form.


When he's done handling the event, etc..

hide the form again.
Avatar of Cyber-Drugs

ASKER

That sounds like a pretty good idea, and thanks for the link, had a look and may use that at some point, but for now I just want to make something simple to annoy my boss, he will probably ask me to delete it half way through the day anyway, hehe.
topdog770, that's basically what I want, but how would I go about making the application appear in the taskbar area?
ASKER CERTIFIED SOLUTION
Avatar of topdog770
topdog770
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No problem, I had forgotten about this thread myself due to the lack of activity.

Thanks for the reply, just tried it and it works perfectly!