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

📄 gr_copy.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.1  18nov2002
program define gr_copy
	version 8

	syntax namelist(min=1 max=2) [ , replace ]
	local n : word count `namelist'
	if (`n'==1) {
		gr_current from : , query
		local to `namelist'
	}
	else {
		gettoken from to : namelist
		local to `to'					// sic
	}

	gs_stat exists `from'

	if ("`from'"=="`to'") exit

	if "`replace'" != "" {
		gs_stat type : `to'
		if ("`type'"=="exists") graph drop `to'
		else 	di as txt "(note: graph `to' not found)"
	}
	else	gs_stat !exists `to'

	gr_replay `from', name(`to') nodraw
end

⌨️ 快捷键说明

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