taskbar

Name

netid.exe -taskbar – add one additional icon with a menu to the activity field

Synopsis

netid.exe -taskbar [-icon <id>] [-name <name>] [-tip <tip>] [-menu <menu>]

Description

The taskbar command adds one additional icon with a menu to the activity field.

Options

-icon <id>

Resource ID from an icon currently loaded to the library. You can add using the resource command or use any of the predefined:

#define IDI_LOGO 130
#define IDI_LOGO2 131
#define IDI_LOGO3 132
#define IDI_LOGO4 133
-name <name>

A unique name that identifies the taskbar icon.

-tip <tip>

A text string for the tooltip label that is shown when hovering with the mouse on the icon located in the notification area in the taskbar.

-menu <menu>

A menu list that follow the normal action and name syntax.

Examples

Example 1. Adding labels and menu options.

Add a tooltip label to the program icon in the taskbar and menu options to the menu.

netid.exe -taskbar -icon 132 -name whatever -tip "{product-name} - WHATEVER" -menu "ActionAbout,{string:1003};ActionWHATEVER,Do WHATEVER"
000223
000224