|
本人想在TAB控件中显示一个数据的输出,但是函数的路径好象不对,老是调不通.请高手指教啊!
<img src="attachments/dvbbs/2006-4/20064191473811220.bmp" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=\'Click here to open new window\nCTRL+Mouse wheel to zoom in/out\';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor=\'hand\'; this.alt=\'Click here to open new window\nCTRL+Mouse wheel to zoom in/out\';}" onclick="if(!this.resized) {return true;} else {window.open(\'attachments/dvbbs/2006-4/20064191473811220.bmp\');}" onmousewheel="return imgzoom(this);" alt="" />
程序段如下:
#include <cvirte.h>
#include <userint.h>
#include "SHUCHU.h"
static int panelHandle;
int PANEL_TABPANEL_SHUCHU;
int TAB;
int main (int argc, char *argv[])
{
if (InitCVIRTE (0, argv, 0) == 0)
return -1; /* out of memory */
if ((panelHandle = LoadPanel (0, "SHUCHU.uir", PANEL)) < 0)
return -1;
DisplayPanel (panelHandle);
RunUserInterface ();
DiscardPanel (panelHandle);
return 0;
}
int CVICALLBACK XIANSHICALLBACK (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
int value;
switch (event)
{
case EVENT_COMMIT:
GetCtrlVal (PANEL, PANEL_SHURU, &value);
SetCtrlVal (PANEL, PANEL_SHUCHU, value);
SetCtrlVal (PANEL, PANEL_TABPANEL_SHUCHU, value);
break;
}
return 0;
}
int CVICALLBACK QUITCALLBACK (int panel, int control, int event,
void *callbackData, int eventData1, int eventData2)
{
switch (event)
{
case EVENT_COMMIT:
QuitUserInterface (0);
break;
}
return 0;
}
调试错误如下::
NON-FATAL RUN-TIME ERROR: "SHUCHU.c", line 33, col 9, thread id 0x00000F74: Library function error (return value == -13 [0xfffffff3]). Invalid control ID
请高手指点啊????????????????? |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|