_coef_table_common_report_pr.idlg

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

IDLG
55
字号
/*
  _coef_table_common_report_pr.idlg

*!  VERSION 1.0.0  13oct2004

  To be included within a DIALOG.

*/

PROGRAM check_table
BEGIN
	if report.ck_notable {
		call gaction report.ck_noheader.disable
		call gaction report.ck_nolegend.disable
		call gaction report.ck_verbose.disable
	}
	if !report.ck_notable {
		call gaction report.ck_noheader.enable
		call program check_legend
		call program check_header
	}
END

PROGRAM check_header
BEGIN
	if report.ck_noheader {
		call gaction report.ck_nolegend.disable
		call gaction report.ck_verbose.disable
	}
	if !report.ck_noheader {
		call gaction report.ck_nolegend.enable
		call program check_legend
	}
END

PROGRAM check_legend
BEGIN
	if report.ck_nolegend {
		call gaction report.ck_verbose.disable
	}
	if !report.ck_nolegend {
		call gaction report.ck_verbose.enable
	}
END

PROGRAM _coef_table_common_cmd
BEGIN
	option report.ck_notable
	option report.ck_noheader
	option report.ck_nolegend
	option report.ck_verbose
END

/* END: _coef_table_common_report_pr.idlg */

⌨️ 快捷键说明

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