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

📄 printer.dlg

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

*!  VERSION 1.0.1  15jul2004

*/

VERSION 8.0 UNIX

INCLUDE _std_large
INCLUDE header

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


DIALOG main, label("printer - Define printer command to use") tabtitle("Main")
BEGIN
  GROUPBOX gb_printer    _lft     _top     _iwd    _ht4h,		/*
		*/ label("Printer name")
  RADIO    rb_new     _indent      _ss    _cwd3        .,		/*
		*/ first						/*
		*/ onclickon(script onclickon_new)			/*
		*/ label("Define new printer name:")
  DEFINE holdx @x
  DEFINE holdy @y
  EDIT     ed_new    _indent2      _ss    _inwd        .,		/*
		*/ error("Define new printer name")			/*
		*/ label("New printer name")				/*
		*/ max(32)						/*
		*/
  RADIO    rb_exists    _lft2    holdy    _cwd3        .,		/*
		*/ last							/*
		*/ onclickon(script onclickon_exists)			/*
		*/ label("Use existing printer name:")
  COMBOBOX cb_exists _indent2      _ss    _inwd        .,		/*
		*/ dropdownlist						/*
		*/ error("Must specify an existing printer name ")	/*
		*/ onselchange(script onselchange_exists)  		/*
		*/ contents(list printers)				/*
		*/

  TEXT     tx_cmd        _lft     _xls _comb3_1        .,		/*
  		*/ label("Specify printer command:")
  DEFINE holdy @y
  EDIT	   ed_cmd    _indent2      _ss    _inwd        .,		/*
  		*/ nomemory 						/*
		*/ default("")						/*
		*/ option(0)						/*
  		*/ label("Use printer command")

  TEXT     tx_type    _lft3_3    holdy  _cwd3_1        .,		/*
  		*/ label("Printer type:")
  COMBOBOX cb_type   _indent2      _ss    _inwd	       .,		/*
  		*/ dropdownlist						/*
		*/ contents(type_contents)				/*
		*/ /*values(type_values)*/				/*
		*/ label("Printer type")				/*
		*/

  GROUPBOX gb_note       _lft    _xxls     _iwd     _ht3,		/*
  		*/ label("Note")
  TEXT     tx_note1   _indent      _ss    _inwd        .,		/*
*/ label("Use of the @ symbol in the command denotes where Stata will")
  TEXT     tx_note2         @     _vss        @        .,		/*
*/ label("insert the filename. It is therefore, required.")

END

LIST type_contents
BEGIN
  ps
  txt
END

LIST type_values
/* Because cb_type.setprinterfmt sets the value, it assumes this list will
 * always have 'ps' first, followed by 'txt'.
 */
BEGIN
  ps
  txt
END


SCRIPT onclickon_new
BEGIN
  main.ed_new.enable
  main.cb_exists.disable
  main.ed_cmd.setvalue ""
END

SCRIPT onclickon_exists
BEGIN
  main.ed_new.disable
  main.cb_exists.enable
  main.cb_exists.withvalue main.cb_exists.setvalue "@"
END

SCRIPT onselchange_exists
BEGIN
  action withvalue main.ed_cmd.setprintercmd @
  action withvalue main.cb_type.setprinterfmt @
END

PROGRAM command
BEGIN
	put "printer define "
	if main.rb_new {
		require main.ed_new
		put main.ed_new
	}
	if main.rb_exists {
		put main.cb_exists
	}
	put " " main.cb_type
	put " " `"""' main.ed_cmd `"""'
END

⌨️ 快捷键说明

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