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

📄 numlabel.dlg

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

*!  VERSION 1.1.0  19nov2004

*/

VERSION 9.0

INCLUDE _std_medium
INCLUDE _ht280
INCLUDE header

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

DIALOG main, tabtitle("Main")	///
	label("numlabel - Prefix numeric values to value labels")
BEGIN
  TEXT     tx_label        _lft      _top       _iwd     .,		///
	label("Label(s): (leave blank for all)")
  COMBOBOX cb_label        @         _ss        @        .,		///
	label("Label(s)") contents(valuelabels) dropdown append

  RADIO    rb_add          @         _ls        _iwd     .,		///
	label("Add numeric values") option(add) first
  RADIO    rb_rem          @         _ss        @        .,		///
 	label("Remove numeric values") option(remove) last

  GROUPBOX gb_opts         @         _ls        _iwd     _ht12h,	///
	label("Options")
  TEXT     tx_mask         _ilft     _ss        _ibwd    .,		///
	label("Prefix mask:")
  EDIT     ed_mask         @         _ss        _vnwd    .,		///
	label("Prefix mask") default("#. ") max(10) option(mask)
  TEXT     tx_mask2        @         _ss        _ibwd    .,		///
	label("Note: The # is replaced with the correct numeric value")

  CHECKBOX ck_force        @         _ms        @        .,		///
	label("Force adding or removing of numeric labels")		///
	option(force)
  CHECKBOX ck_detail       @         _ms        @        .,		///
	label("Provide details about value labels, where some labels")	///
	option(detail)
  TEXT     tx_detail       _cksep   _vss        _inwd    .,		///
	label("are prefixed with numbers and others are not.")
END

PROGRAM command
BEGIN
	put "numlabel "
	put main.cb_label
	beginoptions
		option radio(main rb_add rb_rem)
		require main.ed_mask
		optionarg /quoted main.ed_mask
		option main.ck_force
		option main.ck_detail
	endoptions
END

⌨️ 快捷键说明

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