⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputbox.c

📁 图像处理的压缩算法
💻 C
字号:
/*------------------------------------------------------------------------------*
 * File Name: InputBox.c														*
 * Creation: GJL, 7/14/2003														*
 * Purpose: OriginC Source C file for an input box example.						*
 * Copyright (c) OriginLab Corp.			2003, 2004, 2005, 2006, 2007		*
 * All Rights Reserved															*
 *------------------------------------------------------------------------------*/
 
#include <origin.h>

void InputBoxEx()
{
	string strInput;

	try
	{
		strInput = InputBox("Please enter your name:");
	}
	catch(int nErr)
	{
		printf("You clicked Cancel.\n");
		return;
	}

	printf("You entered: %s\n", strInput);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -