Re: Change popup text of icon in system tray


Go Back   Computer Help Articles > Windows XP Customize
User Name
Password
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-05-2006, 06:29 AM
John Shaw
 
Posts: n/a
Default Re: Change popup text of icon in system tray

I've developed software (some of which use SysTray icons w/tooltips). The
application may be looking to see what the current text is displaying...and,
the code may be set up to update it as needed (again, depending on the app).

Using any low-level tools (to modify the app) could cause serious problems.
For example, if the pop-up text contains a status message (like "Currently
Connected" or something like that), the app may be looking to see if the
status is currently in the tooltip... if it's not, it may execute additional
code to update it. If it can't update it, it may perpetually keep trying,
wasting CPU time, etc.

Or...it may be a simple tweak that doesn't cause a problem.

Regardless... even knowing how to manipulate the systray with the Windows
API, I personally would never try modifying the app itself.

HOWEVER:

It may be simpler than that: In the folder where the app is located, check
for an INI file (or a config file, etc.). This info MIGHT be in here
(doubtful, but you never know). Another place to check is the registry (a
bit more dangerous).

The two typical places where apps store their registry software settings
are:

HKEY_CURRENT_USER\Software\<Company Name>\<Product Name>

and/or

HKEY_LOCAL_MACHINE\Software\<Company Name>\<Product Name>

You may see an entry in the INI/config file or the Registry that has this
information, or, some sort of toggle for the tooltip.


Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Windows Freezes Daily Gerry Cornell Windows XP Perform Maintain 0 01-06-2006 02:06 AM
Please Help - Form Behaviour in IE jen Internet Explorer 6 5 01-05-2006 04:22 PM
change tooltip text in XP Quick Launch url shortcut icon marcfest@gmail.com Windows XP Customize 4 01-05-2006 06:39 AM
trend-micro murrayonthehill Windows XP Security Admin 7 01-05-2006 05:05 AM
How to Hide System Tray Icon ? boobie Windows XP Basics 3 01-05-2006 02:01 AM


All times are GMT. The time now is 01:51 AM.


Powered by vBulletin Version 3.5.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. SEO by vBSEO 2.3.2 © 2005, Crawlability, Inc.

Re: Change popup text of icon in system tray