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

📄 irf_set.dlg

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

*!  VERSION 1.0.0  17jun2004

*/

VERSION 8.0

INCLUDE _std_small
INCLUDE _ht150
INCLUDE header

HELP hlp1, view("help irf_set")
RESET res1

DIALOG main, label("irf set - Set active IRF file") tabtitle("Main")
BEGIN
  RADIO     rb_set           _lft      _top      _iwd      ., 		///
  		first							///
		onclickon(script set_on)				///
		option(NONE)						///
		label("Set active IRF file:")
  RADIO     rb_clear         _lft      +80       @         ., 		///
  		last							///
		onclickon(script set_off)				///
		option(clear)						///
		label("Clear the active IRF file setting")

  FILE      fi_set           _indent2  -60       _inwd     .,		///
		default(global S_vrffile) nomemory			///
		label("Browse...")					///
		error("Set active IRF file")				///
		option(set)						///
		filter("IRF Files (*.irf)|*.irf|All Files (*.*)|*.*")	///
		defext(vrf)

  CHECKBOX  ck_replace       @         _ms       @         .,		///
		option(replace)	nomemory				///
		label("Replace any existing file with an empty file")


END

SCRIPT set_on
BEGIN
	main.fi_set.enable
	main.ck_replace.enable
END

SCRIPT set_off
BEGIN
	main.fi_set.disable
	main.ck_replace.disable
END


PROGRAM command
BEGIN
	put "irf set "
	/* not doing replay mode since current file will appear in edit field */
	if main.rb_set {
		require main.fi_set
		put `"""'
		put main.fi_set
		put `"""'
	}
	beginoptions
		/* not doing -new- opt (no need, right thing happens anyway) */
		option radio(main rb_set rb_clear)
		option main.ck_replace
	endoptions
END

⌨️ 快捷键说明

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