[Passwordsafe-devel] code use limitation
Popular easy-to-use and secure password manager
Brought to you by:
ronys
From: Steve L. <st...@is...> - 2003-04-26 07:09:55
|
----- Original Message ----- From: <pas...@li...> To: <pas...@li...> Sent: Friday, April 25, 2003 20:23 Subject: Passwordsafe-devel digest, Vol 1 #20 - 9 msgs > Reply-To: "passwordsafe-devel" <pas...@li...> > Date: Fri, 25 Apr 2003 01:31:57 -0400 > To: "passwordsafe-devel" <pas...@li...> > From: gregg conklin <gr...@ga...> > Subject: [Passwordsafe-devel] code use limitation > > > there exists some code to make doing the tray icon much easier that i have > used in the past with great success, but i don't know what the usage > limitations are on such things. it was published in the microsoft systems > journal in 1996. > > http://www.microsoft.com/msj/defaulttop.asp?page=/msj/archive/sdbea.htm > I checked some code I have, and note that to reappear in the tray after a system crash you need to catch a new message in some window. Kind of useful unless you are one of those people whose shell never crashes. const UINT wm_TaskbarCreated = RegisterWindowMessage(_T("TaskbarCreated")); When you catch it you have to destroy and recreate (or hide and show) the tray item. -steve |