|
一个面板上有八个文本控件,分别显示四个轴的位置,速度,显示时我分开显示,即按一个显示位置的键时显示四个位置控件,按显示速度键时显示四个速度控件,属性设置部分程序如下:
int CVICALLBACK posdisplayerfun (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
switch (event)
{
case EVENT_COMMIT:
SetCtrlAttribute (tempPanelHandle, TOPERATE_X_position, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_Y_position, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_A_position, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_B_position, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_XAXISVEL, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_YAXISVEL, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_AAXISVEL, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_BAXISVEL, ATTR_VISIBLE, 0);
break;
}
return 0;
}
int CVICALLBACK Jogparamdisplayerfun (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
switch (event)
{
case EVENT_COMMIT:
SetCtrlAttribute (tempPanelHandle, TOPERATE_X_position, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_Y_position, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_A_position, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_B_position, ATTR_VISIBLE, 0);
SetCtrlAttribute (tempPanelHandle, TOPERATE_XAXISVEL, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_YAXISVEL, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_AAXISVEL, ATTR_VISIBLE, 1);
SetCtrlAttribute (tempPanelHandle, TOPERATE_BAXISVEL, ATTR_VISIBLE, 1);
break;
}
return 0;
}
可是运行时报错了
531, 70 Illegal expression.
531, 72 syntax error; found 'integer constant' expecting ')'.
531, 72 Insufficient number of arguments to `SetCtrlAttribute'.
531, 72 syntax error; found 'integer constant' expecting ';'.
531, 87 syntax error; found ')' expecting ';'.
531, 87 Illegal statement termination.
很奇怪的是报错的只有设置显示速度的那几条语句,显示位置的很正常,为什么一样的控件,一样的语句,结果不一样呢?
|
|