lazy_guy Posted June 26, 2007 Posted June 26, 2007 I have written a program which is intended to run all the time and show an icon in the notification area (system tray). When hovering over the icon I display a tray tip showing such items as IP address, computer name (etc). My users can never find these things. However, I cannot stop the running program name being shown as a message on the icon. This is allowing a number of my users to stop the program. This image shows the effect. I have tried the following code to remove the programme name. ;Options Opt("TrayMenuMode",1) Opt("TrayAutoPause", 0) While 1 WEnd Can anyone suggest a way round this.
nenadc Posted June 26, 2007 Posted June 26, 2007 Have You tried #NoTrayIcon (to hide icon in tray) and because its run all the time to use some keystrokes to show message box with those informations, insted of hovering over the visible icon. This way your program will be shown only in process list.
MisterBates Posted June 27, 2007 Posted June 27, 2007 I have written a program which is intended to run all the time and show an icon in the notification area (system tray). When hovering over the icon I display a tray tip showing such items as IP address, computer name (etc). My users can never find these things. However, I cannot stop the running program name being shown as a message on the icon. This is allowing a number of my users to stop the program. This image shows the effect. I have tried the following code to remove the programme name. ;Options Opt("TrayMenuMode",1) Opt("TrayAutoPause", 0) While 1 WEnd Can anyone suggest a way round this.Take a look at "TraySetToolTip" - should be possible to change the running program name to anything you want ... [u]MisterBates[/u]_____________________________________________________Suspend/Resume Windows ScreensaverWatchWindows - Window watcher/loggerUDF: Click systray menu/submenu itemsUDF: Outlook Express Folder/Message handling (+ example code)HowTo: Multiple icons in one compiled script
lazy_guy Posted June 28, 2007 Author Posted June 28, 2007 Take a look at "TraySetToolTip" - should be possible to change the running program name to anything you want ...Thanks MisterBatesI had been so focussed on using the balloon version 'TrayTip' that I had missed the 'TraySetToolTip' in help.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now