Hi,
You may also want to generate the ring control programatically, this should eliminate the shinking arrow problem. Basically something like this:
PANEL_RING = NewCtrl (hPanel, CTRL_RECESSED_MENU_RING, "", 72, 87);
SetCtrlAttribute (hPanel, PANEL_RING, ATTR_CONSTANT_NAME, "RING");
SetCtrlAttribute (hPanel, PANEL_RING, ATTR_SHORTCUT_KEY, 0);
SetCtrlAttribute (hPanel, PANEL_RING, ATTR_DATA_TYPE, VAL_INTEGER);
InsertListItem (hPanel, PANEL_RING, 0, "one", 1);
InsertListItem (hPanel, PANEL_RING, 1, "two", 2);
InsertListItem (hPanel, PANEL_RING, 2, "three", 3);
InsertListItem (hPanel, PANEL_RING, 3, "four", 4);
This way the arrow should be there everytime you run your app. This is fixed in CVI 7.0, so as
Bilal says give the eval version a try.
Regards,
Juan Carlos
N.I.