cchart_98.dlg

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 60 行

DLG
60
字号
/*
	cchart_98

*! VERSION 1.1.0  21mar2005

*/

VERSION 9.0

INCLUDE graph_header
INCLUDE header
HELP hlp1, view("help cchart")
RESET res1

DIALOG main,label("cchart - Draws a c chart")	tabtitle("Main")
BEGIN
  TEXT     tx_defect      _lft       _top       _iwd	   .,	///
	label("Variable containing number of defects:")
  VARNAME  vn_defect      @          _ss        _vnwd      .,	///
	label("Variable containing number of defects")

  TEXT     tx_unit        @	     _ls        _iwd       .,	///
	label("Variable containing sample units:")
  VARNAME  vn_unit        @          _ss        _vnwd      .,	///
	label("Variable containing sample units")
END

INCLUDE p1_opts
INCLUDE p2_opts
INCLUDE addplot
INCLUDE gr_twoway_98

SCRIPT PREINIT
BEGIN
	script p1_opts_createAsNoRange
	script p1_opts_setDefaultConnected
	script p2_opts_createAsRange
	script p2_opts_setDefaultRline
END

SCRIPT POSTINIT
BEGIN
	p2_opts.settabtitle "Control limits"
END

PROGRAM command
BEGIN
	put "cchart "
	varlist main.vn_defect
	varlist main.vn_unit

	beginoptions
		put " " /program p1_opts_output
		put " " /program p2_opts_cl_output
		put " " /program addplot_output
		put " " /program gr_twoway_output
	endoptions
END
/* end */

⌨️ 快捷键说明

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