06-03-2009 08:19 AM
Hello,
I am trying to change the label on a tab control in developer mode. It (CVI9) won't allow me and displays message:
'Attempted to make an inoperable control the active control'
Has anyone else run into this problem?
-John
06-04-2009 05:26 PM
06-05-2009 03:57 AM
06-09-2009 04:13 PM
06-10-2009 03:48 AM
06-11-2009 06:26 PM
06-12-2009 11:17 AM
I can create a new project with a tab control and it behaves correctly.
06-16-2009 11:18 AM
05-12-2010 11:57 AM - edited 05-12-2010 12:00 PM
I see this error in a TestStand CVI user interface when the focus has been on a control (say an edit control) then the user right clicks on a sequence to run it - at which point the TestStand engine attempts to display a new execution. However the aforementioned CVI error is generated.
To circumvent this, it seems the developers wrap the offending UI calls like this:
SetBreakOnLibraryErrors (0);
error = GetPanelAttribute (GetTxPanel(), ATTR_VISIBLE, &RxPanelVisible);
error = GetPanelAttribute (GetTxPanel(), ATTR_VISIBLE, &TxPanelVisible);
SetBreakOnLibraryErrors (1);
Hope this helps,
Ronnie