Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie Question - Running App. in System Tray

Status
Not open for further replies.

MrTBC

Technical User
Nov 19, 2003
610
US
Is there any way to run a standard application in the system tray so that it runs in the background, rather than as visible to the user?
The application in question imports scanned files from a network scanner to a folder for the user. It can be set to automatically import and thus requires no intervention from them (but does need to run on their PC).

You know what they're like...if they can see it, they'll make it go wrong somehow!

Thanks very much for your help guys.
 
Depends on the language that the program is written in...

It has to be done in the programs code... VB for example has this...

Code:
Private Declare Function Shell_NotifyIcon Lib "shell32" Alias "Shell_NotifyIconA" (ByVal dwMessage As Long, pnid As NOTIFYICONDATA) As Boolean


Casper

"I feel sorry for people who don't drink. When they wake up in the morning, that's as good as they're going to feel all day."
~Frank Sinatra
 
Thanks for that. Unfortunately it is an 'off the shelf' app. so I guess I would need some kind of third-party utility.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top