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

📄 icd9check.dlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 DLG
字号:
/*
	icd9[p] check
	
*! VERSION 1.0.1  20aug2003

	which icd9  - *! version 1.0.4  31jul2001
	which icd9p - *! version 1.0.3  11sep2000
*/

VERSION 8.0

INCLUDE _std_medium
INCLUDE header
HELP hlp1, view("help icd9")
RESET res1

DIALOG main, label("icd9[p] check - Verify variable is valid") tabtitle("Main")
BEGIN
  /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+*/
  TEXT     tx_vn     _lft      _top      _iwd      .,		/*
		*/ label("Variable name:")

  VARNAME  vn_vn     @         _ss       _vnwd     .,		/*
		*/ label("Variable name")

  RADIO    rb_diag   _lft      _ls       _cwd1     .,		/*
		*/ first					/*
		*/ label("Diagnostic codes")

  RADIO    rb_proc   _lft2     @         @         .,		/*
		*/ last						/*
		*/ label("Procedure codes")

  GROUPBOX gb_opt    _lft      _ls       _iwd      _ht11,	/*
		*/ label("Options")

  CHECKBOX ck_any    _indent   _ss       _ibwd     .,		/*
		*/ option(any)					/*
		*/ label("Verify that codes fit, not that they are valid (executes faster)")

  CHECKBOX ck_list   @         _ls       @         .,		/*
		*/ option(list)					/*
		*/ label("List individual invalid codes")

  CHECKBOX ck_gen    @         _ls       _ibwd     .,		/*
		*/ clickon("gaction main.ed_gen.enable")	/*
		*/ clickoff("gaction main.ed_gen.disable")	/*
		*/ label("Generate new variable of validity codes:")

  EDIT     ed_gen    _indent2  _ss       _vnwd     .,		/*
		*/ option(generate)				/*
		*/ max(32)					/*
		*/ label("Generate new variable of validity codes")
END

PROGRAM command
BEGIN   
	if main.rb_diag {
		put "icd9 check "
	}
	if main.rb_proc {
		put "icd9p check "
	}
	varlist main.vn_vn
	beginoptions
		option main.ck_any
		option main.ck_list
		if main.ck_gen {
			require main.ed_gen
			optionarg main.ed_gen
		}
	endoptions
END

⌨️ 快捷键说明

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