Oops, actually I am hiding the task bar with the following sequence of functions calls described in the CVI online help section on disableing task switching.
SetPanelAttribute (panel, ATTR_SIZABLE, FALSE);
SetPanelAttribute (panel, ATTR_CAN_MINIMIZE, FALSE);
SetPanelAttribute (panel, ATTR_CAN_MAXIMIZE, FALSE);
SetPanelAttribute (panel, ATTR_SYSTEM_MENU_VISIBLE, FALSE);
SetPanelAttribute (panel, ATTR_MOVABLE, FALSE);
SetPanelAttribute (panel, ATTR_WINDOW_ZOOM, VAL_MAXIMIZE);
I cannot duplicate these in my popup code because it would make the popup fill the screen, which is not desired. all that I want to make the entire taskbar, not just the button for my panel, invisible.