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

📄 tsreport.dlg

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

VERSION 8.0

INCLUDE _std_small
INCLUDE header

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

DIALOG main, label("tsreport - Report time-series aspects of dataset")  /*
		*/ tabtitle("Main")
BEGIN
  GROUPBOX	gb_opts		_lft	_top	_iwd	_ht9h,		/*
		*/	label("Options")

  CHECKBOX	ck_report	_indent	_ss	_inwd	.,		/*
		*/ label("Display number of gaps in the time series")	/*
		*/	option(report)

  CHECKBOX	ck_report0	@	_ms	@	.,		/*
		*/	label("Display count of gaps even if no gaps")  /*
		*/	option(report0)

  CHECKBOX	ck_list		@	_ms	@	.,		/*
		*/	label("Display gaps data in tabular list")	/*
		*/	option(list)

  CHECKBOX	ck_panel	@	_ms	@	.,		/*
		*/	label("Do not count panel changes as gaps")	/*
		*/	option(panel)
END

INCLUDE ifin

PROGRAM command
BEGIN
	put "tsreport "
	INCLUDE _ifin_pr
	beginoptions
		option main.ck_report
		option main.ck_report0
		option main.ck_list
		option main.ck_panel
	endoptions
END

⌨️ 快捷键说明

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