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

📄 infile_dict.dlg

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

*! VERSION 1.1.1  01apr2005

*/

VERSION 9.0

INCLUDE _std_small
INCLUDE header
HELP hlp1, view("help infile2")
RESET res1

DIALOG main, tabtitle("Main")		///
	label("infile - Import ASCII data in fixed format")
BEGIN
  TEXT     tx_dict   _lft      _top      _iwd        .,		///
	label("Dictionary filename:")

  FILE     fi_dict   @         _ss       @           .,		///
	error("Dictionary filename") label("Browse...")		///
	defext(raw)						///
	filter("Stata Dictionary (*.dct)|*.dct|All (*.*)|*.*")

  TEXT     tx_using  @         _ls       @           .,		///
	label("ASCII dataset filename:")

  FILE     fi_using  @         _ss       @           .,		///
	option(using) defext(raw) label("Browse...")		///
	error("ASCII dataset filename")				///
	filter("Raw Files (*.raw)|*.raw|Text Files (*.txt)|*.txt|All (*.*)|*.*")

  CHECKBOX ck_clear  _lft      _xls      _iwd        .,		///
	option(clear) nomem					///
	label("Replace data in memory")
END

INCLUDE ifin

SCRIPT POSTINIT
BEGIN
	script ifin_setNotDataDependent
END

DIALOG opt, tabtitle("Options")
BEGIN
  CHECKBOX ck_auto   _lft      _top      _iwd        .,		///
	option(automatic)					///
	label("Create value labels from non-numeric data")
END

PROGRAM command
BEGIN
	put "infile "
	require main.fi_dict
	put "using "
	put `"""' main.fi_dict `"""'
	put " " /program ifin_output
	beginoptions
		if main.fi_using {
			optionarg /quoted main.fi_using
		}
		option opt.ck_auto
		option main.ck_clear
	endoptions
END

⌨️ 快捷键说明

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