Beispiel #1
0
void PrintMsg(char *Msg)
{ 
    int ret;
    char PrintBuff[1024];

START_PRINT:
	if(CheckPrinter() != TRUE)
		goto end1;

	//清空打印缓冲区
	ClearPrintBuff();

    SetPrintFont(24);

    memset(PrintBuff, 0, sizeof(PrintBuff));
    strcpy(PrintBuff, Msg);
    ret = FillPrintBuff(PrintBuff);
    if(ret < 0)
		goto end1;
    ret = FillPrintBuff("PL"); 
    if(ret < 0)
		goto end1;    
     
	//开始打印    
	ret =StartPrint();
	DebugOut("print error code:[%d]\n", ret);
	if(ret != 0)
	{
		if(ret == -1)
			goto START_PRINT;
		else if(ret == -2)
			goto end2;
		else if(ret == -3)
			goto end1;
	}

    return;

end1:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "请检查打印机"); 
	TextOut(0, 4, ALIGN_CENTER, "打印失败");
	WaitKey(2000);

	return;

end2:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "电量不足"); 
	TextOut(0, 4, ALIGN_CENTER, "无法执行打印");
	WaitKey(2000);
}
Beispiel #2
0
/* start of mainline */
int main( int argc, char *argv[] )
{
    int i;
    int ch;
    DIR *d;

    /* process options */
    while( ( ch = GetOpt( &argc, argv, "firRsvX", usageMsg ) ) != -1 ) {
        switch( ch ) {
        case 'f': fflag  = TRUE;  iflag = FALSE; break;
        case 'i': iflag  = TRUE;  fflag = FALSE; break;
        case 'R':
        case 'r': rflag  = TRUE;  break;
        case 's': sflag  = TRUE;  break;
        case 'v': sflag  = FALSE; break;
        case 'X': rxflag = TRUE;  break;
        }
    }
    if( argc < 2 )
        Quit( usageMsg, "No filename/directory specified\n" );

    StartPrint();

    /* process -r option */
    if( rflag ) {
        for( i = 1; i < argc; i++ ) {
            if( strcmp( argv[i], rxflag ? "*" : "*.*" ) == 0 )
                RecursiveRM( "." );
            else {
                d = FileNameWild( argv[i], rxflag ) ? NULL : opendir( argv[i] );
                if( d != NULL ) {
                    if( !( d->d_attr & _A_SUBDIR ) ) {
                        closedir( d );
                        if( fflag )
                            DoRM( argv[i] );
                        else
                            PrintALineThenDrop( "%s is not a directory.", argv[i] );
                    } else {
                        closedir( d );
                        RecursiveRM( argv[i] );
                    }
                } else if( !fflag ) {
                    PrintALineThenDrop( "Directory %s not found.", argv[i] );
                    error_occured = 1;
                }
            }
        }
    } else {
        /* run through all specified files */
        for( i = 1; i < argc; i++ )
            DoRM( argv[i] );
    }
    DropALine();
    return( error_occured );
}
Beispiel #3
0
int PrinterNormalTest()
{
	int   i, ret=0;  
	CHAR  PrintBuff[100]; 
	char  buff[64];  
	int   num;

	Clear();
	SetScrFont(FONT20, WHITE);
	TextOut(0, 2, ALIGN_CENTER, "打印测试");
	TextOut(0, 4, ALIGN_LEFT, "请输入打印张数:(1-999)");

	memset(buff, 0, sizeof(buff));
	SetScrFont(FONT20, RED);
	ret = Input(22, 4, buff, 3, IME_NUMBER, BLACK, GREEN, FALSE, FALSE, FALSE);
	if(ret != OK)
	{
		FailBeep(); 
		ClearLine(1, 9);
		SetScrFont(FONT20, WHITE);
		TextOut(0, 4, ALIGN_CENTER, "打印失败");
		WaitKey(2000);

		return ERROR;
	}
	num = atoi(buff);
	DebugOut("打印张数:[%d]\n", num);

	for (i = 0; i < num; i ++)
	{
START_PRINT:
		if(CheckPrinter() != TRUE)
			goto end1;

		//清空打印缓冲区
		ClearPrintBuff();
		//设置打印字体大小

//		ret = FillPrintBuff("PL");
//		if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);    

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintIndent(0);   
		//SetPrintFont(16);  
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "<TYPE24>");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(16);  
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUV");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		//SetPrintFont(16);  
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "123456789012345678901234567890123456789012345678");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(16);  
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "测试程序, 当前正测试机型TYPE :D620D");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 
		////////////////////
		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintIndent(0);   
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "<TYPE24>");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEF");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		SetPrintIndent(0);   
		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "abcdefghijklmnopqrstuvwxyzabcde");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(24);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "12345678901234567890123456789012");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(24);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "1234.5678.9012.3456.7890.1234.56");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(24);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "~!@#$%^&*()_+-=/|,.?<>;:'{}[]-·");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(24);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "测试程序 TYPE: D620D");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		SetPrintIndent(0);   
		SetPrintFont(32);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "<TYPE32>");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(32);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWX");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		SetPrintIndent(0);   
		SetPrintFont(32);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "abcdefghijklmnopqrstuvwx");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(32);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "123456789012345678901234");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(32);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "1234.5678.9012.3456.7890");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(32);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "~!@#$%^&*()_+-=/|,.?<>;");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(32);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "测试程序D620D");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);  

		//开始打印    
		ret =StartPrint();
		if(ret != 0)
		{
			if(ret == -1)
				goto START_PRINT;
			else if(ret == -2)
				goto end2;
			else if(ret == -3)
				goto end1;
		}

		//清空打印缓冲区
		ClearPrintBuff();

		//SetPrintFont(64);
		SetPrintIndent(0);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	///	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;

		SetPrintIndent(0);   
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "<TYPE48>");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
		//ret = FillPrintBuff("PL");
		//if(ret<0)goto end1;
		SetPrintIndent(0);

		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWX");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
		//ret = FillPrintBuff("PL");
	//	if(ret < 0)
		//	goto end1;
		SetPrintIndent(0); 

		SetPrintIndent(0);   
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "abcdefghijklmnop");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
		//	goto end1;
		SetPrintIndent(0);

		SetPrintFont(48);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "1234567890123456");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(48);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "1234.5678.9012.3");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(48);
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "~!@#$%^&*()_+-=/");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "测试程序D620D");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		SetPrintIndent(0);   
		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "<TYPE48>");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWX");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		SetPrintIndent(0);   
		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "abcdefghijkl");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "123456789012");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "1234.5678.90");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;     
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0);

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "测试程序");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
	//	ret = FillPrintBuff("PL");
	//	if(ret < 0)
	//		goto end1;
		SetPrintIndent(0); 

		//SetPrintFont(64);  
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "************");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             

		//设置打印字体大小
		//SetPrintFont(64);  
		SetPrintFont(48);  

		ret = FillPrintBuff("PL");
		if(ret < 0)
			goto end1;
		ret = FillPrintBuff("PL");
		if(ret < 0)
			goto end1;
		ret = FillPrintBuff("PL");
		if(ret < 0)
			goto end1;
		ret = FillPrintBuff("PL");
		if(ret < 0)
			goto end1;
		SetPrintIndent(0);

		//开始打印    
		ret =StartPrint();
		DebugOut("print error code:[%d]\n", ret);
		if(ret != 0)
		{
			if(ret == -1)
				goto START_PRINT;
			else if(ret == -2)
				goto end2;
			else if(ret == -3)
				goto end1;
		}
		
		
	}
	if(ret==0)
	{
		ClearLine(1,  9);
		TextOut(0,  4, ALIGN_CENTER,  "打印成功");
		WaitKey(1000);
	}
	else
	{
		ClearLine(1,  9);
		TextOut(0,  4, ALIGN_CENTER,  "打印失败");
		WaitKey(1000);
	}

	OkBeep();
	return OK;

end1:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "请检查打印机"); 
	TextOut(0, 4, ALIGN_CENTER, "打印失败");
	WaitKey(2000);

	return ERROR;

end2:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "电量不足"); 
	TextOut(0, 4, ALIGN_CENTER, "无法执行打印");
	WaitKey(2000);

	return ERROR;
}
Beispiel #4
0
int PrinterBLTest()
{
	int   i, ret=0;  
	CHAR  PrintBuff[100]; 
	char  buff[64];  
	int   num;

	Clear();
	SetScrFont(FONT20, WHITE);
	TextOut(0, 2, ALIGN_CENTER, "打印测试");
	TextOut(0, 4, ALIGN_LEFT, "请输入打印张数:(1-999)");

	memset(buff, 0, sizeof(buff));
	SetScrFont(FONT20, RED);
	ret = Input(22, 4, buff, 3, IME_NUMBER, BLACK, GREEN, FALSE, FALSE, FALSE);
	if(ret != OK)
	{
		FailBeep(); 
		ClearLine(1, 9);
		SetScrFont(FONT20, WHITE);
		TextOut(0, 4, ALIGN_CENTER, "打印失败");
		WaitKey(2000);

		return ERROR;
	}
	num = atoi(buff);
	DebugOut("打印张数:[%d]\n", num);

	for (i = 0; i < num; i ++)
	{
START_PRINT:
		if(CheckPrinter() != TRUE)
			goto end1;

		printf("启动黑标打印功能\n");
		ret =  BmSwitch(1);
		printf("ret = %d\n", ret);
		if (0 != ret)
		{
			printf("启动失败\n");
			return 0;
		}
		MoveDotLine(4000);
		// 或者直接两个黑标之间的距离

		//清空打印缓冲区
		ClearPrintBuff();
		//设置打印字体大小

		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "ABCDEFGHIJKLMNOPQRSTUVWX");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
		SetPrintFont(48);  
		memset(PrintBuff, 0x00, sizeof(PrintBuff));
		strcpy(PrintBuff, "123456789012345678");
		ret = FillPrintBuff(PrintBuff);
		if(ret < 0)
			goto end1;             
		ret = FillPrintBuff("PL");
		if(ret < 0)
			goto end1;
		SetPrintIndent(0); 

		//开始打印    
		ret =StartPrint();
		DebugOut("print error code:[%d]\n", ret);
		if(ret != 0)
		{
			if(ret == -1)
				goto START_PRINT;
			else if(ret == -2)
				goto end2;
			else if(ret == -3)
				goto end1;
		}
		
		
	}
	if(ret==0)
	{
		ClearLine(1,  9);
		TextOut(0,  4, ALIGN_CENTER,  "打印成功");
		WaitKey(1000);
	}
	else
	{
		ClearLine(1,  9);
		TextOut(0,  4, ALIGN_CENTER,  "打印失败");
		WaitKey(1000);
	}

	OkBeep();
	return OK;

end1:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "请检查打印机"); 
	TextOut(0, 4, ALIGN_CENTER, "打印失败");
	WaitKey(2000);

	return ERROR;

end2:  

	FailBeep(); 
	ClearLine(1, 9);
	TextOut(0, 3, ALIGN_CENTER, "电量不足"); 
	TextOut(0, 4, ALIGN_CENTER, "无法执行打印");
	WaitKey(2000);

	return ERROR;
}