说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 经贸类选修课教程
1)  elective courses in economy and trade
经贸类选修课教程
2)  economic and trade curriculums
高校经贸类课程
3)  elective course
选修课程
1.
Since the 1950s in our country,the attention given to elective courses by curriculum project or teaching plan has been divided into four stages: firstly put forward in the 1960s,and renewed and tried in the 1980s,and then tested and explored in the 1990s,and finally topped and innovated in the new century.
我国自上个世纪50年代以来,课程方案或教学计划对选修课程的关注可以分为四个阶段:60年代初次提出,80年代恢复尝试,90年代实验探索,新世纪突破创新。
2.
In connection with the characteristics of chemistry course, the teaching object of higher normal school and the world chemical education reform,this article explores the necessity of offering an elective course of Chemistry and Society in higher normal school, and discusses on the teaching content and quomodo, as well as some issues concerned.
文章从化学学科的特点、高师培养的目标、国内外化学教育改革等方面探讨了高师化学专业开设化学与社会选修课程的必要性 ;讨论了化学与社会选修课的教学内容、教学形式及教学时应注意的问
4)  elective courses
选修课程
1.
How are the new achievements of science and technology development promptly reflected into medical teaching ? How to reasonably set up more elective courses and improve the teaching quality of elective courses? This is one of questions which must be considered in the university educational reform.
如何把科学技术发展的新成就、新成果及时地反映到医学教学中来?如何合理地开设更多的选修课程,并不断提高选修课的教学质量?这是高等医学院校教学改革中必须要考虑的问题之一。
2.
To set up a proper number of elective courses, which is sufficient and efficient to a certain number of students, is very important to colleges and universities carrying out credit system in curriculum programming.
本文为探讨实行学分制高校所关心的“关于选修课程的开设量问题”,在充分考虑情感因素的重要作用基点上 ,建立了一个方便操作、符合实际的情感性概率模型 。
3.
The design of arts elective courses in colleges should keep to the following principles: humanism,systemization,common understanding,experience,developing the national spirit,advancing with times and stability.
艺术类选修课程是大学生文化素质教育的重要途径。
5)  optional course
选修课程
1.
This paper analyzes the data of the offerings of optional courses in cultural quality for three terms,which are arranged in the teaching program of NIIT with a compulsory requirement of credits for the students.
针对南京工业职业技术学院在教学计划中设置文化素质选修课并明确提出学分要求的文化素质教育途径,对三个学期的文化素质选修课程的开设情况进行了数据统计和分析,找出了存在的主要问题,并提出了加强课程建设与管理的建议。
2.
So far, the optional course has a history of 200 years.
而首次提出在普通高中开设选修课程问题的是在1963年,也就是说我国高中真正开设选修课程的时间是比较晚的。
6)  selective courses
选修课程
1.
With the changes of education condition and social setting, offering selective courses in College English teaching is an option to realize the multi-standards by Demands of Course.
选修课程的内容包括语言技能类、语言文化类和专业英语类课程。
2.
This thesis is intended to identify and formulate, in the light of curriculum development theory, the theoretical and practical underpinnings of the design of the selective courses in the stage of advanced college English in engineering universities and colleges.
本论文运用课程发展理论分析研究了理工科院校大学英语后续阶段选修课程设置的理论与现实依据。
补充资料:Autocad VBA初级教程 (第八课:图层操作)
 

先简单介绍两条命令:


1、这条语句可以建立图层:
ThisDrawing.Layers.Add("新建图层")
在括号中填写图层的名称。


2、设置为当前的图层
ThisDrawing.ActiveLayer=图层对象
注意,等号右边的变量不能用图层名称,必须使用一个有效的图层变量


以下一些属性在图层比较常用:
LayerOn 打开关闭
Freeze 冻结
Lock锁定
Color 颜色
Linetype 线型



看一个例题:
1、先在已有的图层中寻找一个名为“新建图层”的图层
2、如果找到这个图层,显示该图层的信息,并提示用户是否需要设置为当前图层,如果用户确认,则设置为当前图层。
3、如果图层没有找到,新建一个名为“新建图层”的图层,设置为黄色,HIDDEN线型,并把这个图层设置为当前图层


Sub mylay()


Dim lay0 As AcadLayer '定义作为图层的变量
Dim lay1 As AcadLayer


findlay = 0 '寻找图层的结果的变量,0没有找到,1找到


For Each lay0 In ThisDrawing.Layers '在所有的图层中进行循环


  If lay0.Name = "新建图层" Then '如果找到图层名
    findlay = 1 '把变量改为1标志着图层已经找到
    msgstr = lay0.Name + "已经存在" + vbCrLf
    msgstr = msgstr + "图层状态:" + IIf(lay0.LayerOn = True, "打开", "关闭") + vbCrLf
    msgstr = msgstr + "图层" + IIf(lay0.Freeze = True, "已经", "没有") + "冻结" + vbCrLf
    msgstr = msgstr + "图层" + IIf(lay0.Lock = True, "已经", "没有") + "锁定" + vbCrLf
    msgstr = msgstr + "图层颜色号:" + CStr(lay0.Color) + vbCrLf
    msgstr = msgstr + "图层线型:" + lay0.Linetype + vbCrLf
    msgstr = msgstr + "图层线宽:" + CStr(lay0.Lineweight) + vbCrLf
    msgstr = msgstr + "打印开关" + IIf(lay0.Plottable = False, "关闭", "打开") + vbCrLf + vbCrLf
    msgstr = msgstr + "是否设置为当前图层?"
    If MsgBox(msgstr, 1) = 1 Then '如果用户点击确定
       If Not lay0.LayerOn Then lay0.LayerOn = True '打开
       ThisDrawing.ActiveLayer = lay0 '把当前图层设为已经存在的图层

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条