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

📄 intopts_re.idlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 IDLG
字号:
/*
  intopts_re.idlg

*!  VERSION 1.0.1  27jun2005

	// SCRIPTS and PROGRAMS for external use
		* SCRIPT intopts_re_enable
		* SCRIPT intopts_re_disable
		* SCRIPT intopts_re_reset
		* PROGRAM intopts_re_output

*/

DIALOG int, tabtitle("Int options (RE)")
BEGIN
  GROUPBOX gb_int    _lft      _top      _iwd      _ht5,		///
  	label("Integration options")
  TEXT     tx_intm   _ilft     _ms       _cwd2     .,   		/*
	*/ label("Method:")			  		/*
		*/
  TEXT     tx_intp   _lft2     @         _cwd2     .,			/*
		*/ label("Number of quadrature points:")		/*
		*/
DEFINE y @y
  COMBOBOX cb_intm   _ilft     _ss       _cwd2     .,			/*
		*/ label("Method")					/*
		*/ dropdownlist						/*
		*/ contents(intmethods)					/*
		*/ values(intm_val)					/*
		*/ option("intmethod")					/*
		*/

  SPINNER  sp_intp   _lft2     @         _spwd     .,			/*
		*/ label("Points")					/*
		*/ min(1)						/*
		*/ max(195)						/*
		*/ default(12)						/*
		*/ option("intpoints")					/*
		*/
END

SCRIPT intopts_re_enable
BEGIN
	int.gb_int.enable
	int.tx_intm.enable
	int.tx_intp.enable
	int.cb_intm.enable
	int.sp_intp.enable
END

SCRIPT intopts_re_disable
BEGIN
	int.gb_int.disable
	int.tx_intm.disable
	int.tx_intp.disable
	int.cb_intm.disable
	int.sp_intp.disable
END

LIST intmethods
BEGIN
	Default
	Adaptive Gauss-Hermite Quadrature
	Gauss-Hermite Quadrature
END

LIST intm_val
BEGIN
	""
	aghermite
	ghermite
END

SCRIPT intopts_re_reset
BEGIN
	int.cb_intm.withvalue int.cb_intm.setvalue "@"
END

PROGRAM intopts_re_output
BEGIN
	optionarg /hidedefault int.cb_intm
	optionarg /hidedefault int.sp_intp
END

⌨️ 快捷键说明

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