LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Why doesn't my CVI's panel's title bar text show up in Windows' Task Bar?

When I call
 
SetPanelAttribute (panel, ATTR_TITLE, sPanelTitle);
...that changes my CVI's panel's title bar, but the text in Windows' Task Bar is unchanged. Is there a separate function call for setting the Task Bar's text?
 
0 Kudos
Message 1 of 5
(3,387 Views)

You can set it at build time in the "Application Title" field on the Build->Target Settings menu.

JR

0 Kudos
Message 2 of 5
(3,382 Views)
Can the Task Bar text be set dynamically?
 
My program is basically a timer, and I want the "time remaining" to be visible on Windows' Task Bar as my program is running.
 
 
0 Kudos
Message 3 of 5
(3,370 Views)

Yes - use ATTR_TASKBAR_BUTTON_TEXT, with the SetSystemAttribute() function.

JR

0 Kudos
Message 4 of 5
(3,368 Views)

That works perfectly, thanks.

It works only when I make an executable, not during development, which is OK with me.

0 Kudos
Message 5 of 5
(3,358 Views)