📄 inputbox.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 + -