|
Support
ActiveX / COM
Visual C++ / MFC
Customer Spotlight
Corporate Partners
Contact Sales
Call center available M-F 9:00 - 6:00 US Eastern Time. U.S. and Canada International Email |
Making a Group Special
Author: Mike Palmatier
Posted: May 3, 2006
Environment: Visual Basic 6.0
You can designate a task panel group as "special." Groups marked as special will be displayed differently than normal groups drawing the users attention to that particular group. This is an excellent way to show the user the "default" or important items.
"Special" group
Normal group
To set a group as special all you need to do is set the Special property to True.
Dim Group As TaskPanelGroup
Set Group = wndTaskPanel.Groups.Add(0, "System Tasks") Group.Special = True |
