Start Menu Highlight: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (added category)
(Link is broken - updating to visual studio specific link)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{PageAuthor|kichik}}
[[Image:StartMenuHighlight.jpg|left|thumb|250px|XP's new program highlight]]
[[Image:StartMenuHighlight.jpg|left|thumb|250px|XP's new program highlight]]
Windows XP has introduced a feature that automatically highlights newly installed programs in the Start Menu. Because it's automatic, there's no API function you need to call or registry value you need to modify to get your program highlighted too.
Windows XP has introduced a feature that automatically highlights newly installed programs in the Start Menu. Because it's automatic, there's no API function you need to call or registry value you need to modify to get your program highlighted too.


So how do you get it highlighted? Very simple, add a [http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/resources/versioninformation.asp version information resource] to it. If you create a shortcut to an executable with a version resource, it will be highlighted and show a nice balloon informing the user of the new program.
So how do you get it highlighted? Very simple, add a [http://msdn.microsoft.com/en-us/library/6fkzft86.aspx version information resource] to it. If you create a shortcut to an executable with a version resource, it will be highlighted and show a nice balloon informing the user of the new program.
 
More information about this topic is available at [http://blogs.msdn.com/oldnewthing/archive/2005/11/24/496690.aspx Raymond Chen's blog]. It doesn't mention version information which, according to my tests, was the only thing that triggers this. However, he works for Microsoft, so he probably knows better...


--[[User:Kichik|kichik]] 11:39, 18 Jun 2005 (PDT)
--[[User:Kichik|kichik]] 03:51, 2 December 2005 (PST)


[[{{ns:14}}:Tutorials]]
[[Category:Tutorials]]

Latest revision as of 15:48, 17 November 2008

Author: kichik (talk, contrib)


XP's new program highlight

Windows XP has introduced a feature that automatically highlights newly installed programs in the Start Menu. Because it's automatic, there's no API function you need to call or registry value you need to modify to get your program highlighted too.

So how do you get it highlighted? Very simple, add a version information resource to it. If you create a shortcut to an executable with a version resource, it will be highlighted and show a nice balloon informing the user of the new program.

More information about this topic is available at Raymond Chen's blog. It doesn't mention version information which, according to my tests, was the only thing that triggers this. However, he works for Microsoft, so he probably knows better...

--kichik 03:51, 2 December 2005 (PST)