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

📄 cross.dlg

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

*!  VERSION 1.1.0  17nov2004

*/

VERSION 9.0

INCLUDE _std_large
INCLUDE _ht200
INCLUDE header
HELP hlp1, view("help cross")
RESET res1

DIALOG main, tabtitle("Main")	///
	label("cross - Form every pairwise combination of two datasets")
BEGIN
  GROUPBOX gb_using       _lft     _top      _iwd       _ht4,		///
	label("Form pairwise combinations of current data with")
  TEXT     tx_using       _ilft    _ss       _inwd      .,		///
	label("Filename:")
  FILE     fi_using       @        _ss       @          .,		///
	label("Browse...")						///
	filter("Stata Dataset (*.dta)|*.dta|All Files (*.*)|*.*")	///
	defext(dta) error("Filename")
END

PROGRAM command
BEGIN
	require main.fi_using
	put "cross using "
	put `"""'
	put main.fi_using
	put `"""'
END

⌨️ 快捷键说明

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