Link to home
Start Free TrialLog in
Avatar of Colin Hart
Colin Hart

asked on

custom alerting app running in systray

I have a MySQL database that collects data from the call light system at one of our hospitals.  So when a resident is in there room and they push the button on their remote to call for a nurse, it dumps that data into a MySQL database.  I have about 40 laptops/desktops on each floor that can view those calls requests on a small web interface but I wanted to see if there was a way to have a small windows app that pings the DB every few seconds for alerts and then would popup a message when it has one.  I would want that message to say on the screen until the class was cleared which is just another flag in the table.   That way they dont have to have that website loaded up and just sitting there waiting for an error.

anyone know how I could do that? or any easy solutions for something like that?
Avatar of Geert G
Geert G
Flag of Belgium image

the tray message usually works with a timeout ...
you'd have to repeat the message until it's cleared

i program in delphi, rather easy with that, but i'm guessing you don't have delphi
ASKER CERTIFIED SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia 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
Avatar of Colin Hart
Colin Hart

ASKER

thanks for the tip.  I started writing in C# and it was pretty easy
thanks again