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

📄 label_variable.dlg

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

*!  VERSION 1.1.0  28mar2005

	which label = built-in command:  label
*/

VERSION 9.0

INCLUDE _std_medium
INCLUDE header

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

DIALOG main, label("label variable - Attach a label to a variable") tabtitle("Main")
BEGIN
  GROUPBOX gb_action _lft      _top      _iwd      _ht4,	///
  	label("Add or remove variable label")
  RADIO    rb_attach _ilft     _ss       _inwd     .,		///
	label("Attach a label to a variable") 			///
	first onclickon(script main_new_on)
  RADIO    rb_remove @         _ss       @         .,		///
	label("Remove a label from a variable") last 		///
	onclickon(script main_new_off)

  TEXT     tx_var    _lft      _xls      _iwd      .,		///
	label("Variable:")
  VARNAME  vn_var    _lft      _ss       _vnwd     .,		///
	label("Variable")

  TEXT     tx_label  _lft      _ls       _iwd      .,		///
	label("New variable label: (may be up to 80 characters)")
  EDIT     ed_label  @         _ss       @         .,		///
	label("New variable label")
END

SCRIPT main_new_on
BEGIN
	main.tx_label.show
	main.ed_label.show
END

SCRIPT main_new_off
BEGIN
	main.tx_label.hide
	main.ed_label.hide
END

PROGRAM command
BEGIN
	put "label variable "
	varlist main.vn_var
	if main.rb_attach {
		require main.ed_label
		put `"""' main.ed_label `"""'
	}
END

⌨️ 快捷键说明

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