|

楼主 |
发表于 2005-9-13 02:34:10
|
显示全部楼层
< >int CVICALLBACK AcquireCallback (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
double Wave[512];
switch (event)
{
case EVENT_COMMIT:
SinePattern (512, 1.0, 0.0, 3.0, Wave);
PlotWaveform (panelHandle, PANEL_GRAPH, Wave, 512, VAL_DOUBLE,
1.0, 0.0, 0.0, 1.0, VAL_THIN_LINE, VAL_EMPTY_SQUARE, VAL_SOLID, 1, VAL_RED); </P>< > break;
}
return 0;
}</P>< >int CVICALLBACK ClearCallback (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
switch (event)
{
case EVENT_COMMIT:
DeleteGraphPlot (panelHandle, PANEL_GRAPH, -1, VAL_IMMEDIATE_DRAW);
break;
}
return 0;</P><P>这行 PlotWaveform (panelHandle, PANEL_GRAPH, Wave, 512, VAL_DOUBLE,
1.0, 0.0, 0.0, 1.0, VAL_THIN_LINE, VAL_EMPTY_SQUARE, VAL_SOLID, 1, VAL_RED); </P><P>和 DeleteGraphPlot (panelHandle, PANEL_GRAPH, -1, VAL_IMMEDIATE_DRAW);
出现同样的错</P><P> NON-FATAL RUN-TIME ERROR: "Dome.c", line 30, col 13, thread id 0x00000AC4: Library function error (return value == -10 [0xfffffff6]). The control is not the type expected by the function
</P><P> NON-FATAL RUN-TIME ERROR: "Dome.c", line 44, col 14, thread id 0x00000AC4: Library function error (return value == -10 [0xfffffff6]). The control is not the type expected by the function
</P> |
|