1)  take
执行键
2)  implement
执行
1.
Several things worth taking notice of in declaring and implementing the Item of CME;
继续医学教育项目申报、执行中应注意的问题
2.
The problems in the implement of bill code and its countermeasures;
清单规范执行中的问题及解决方案
3.
The quality opera- tors should understand the technics and raw materials,should implement standards roundly and strictly,so that to judge the quality of chemical product good or bad and accord with the standards or not;to detect the product quality problems in time;to table a proposal for developing pro.
质量工作者必须要了解化工产品的生产工艺条件和原材料,必须全面严格执行标准,方可判断化工产品质量的优劣及符合标准与否;方可及时发现产品质量问题,为生产提供改进方案或完善生产操作条件,从而确保或提高产品质量。
3)  Execution
执行
1.
A Brief Talk on Establishment and Execution of University Financial Budget;
浅谈高校财务预算的编制与执行
2.
A Study of Compromise Effectiveness in Civil Execution;
民事执行和解协议效力问题研究
3.
Problems and countermeasures of execution work;
执行工作存在的问题与对策
4)  implementation
执行
1.
Policy Escapism during the implementation of Policies;
论政策执行中的政策规避
2.
Interest Games in the Process of China's Public Policy Implementation;
中国公共政策执行过程中的利益博弈
3.
Study on Family Planning Policy Implementation in Countryside of China by Interest Games;
农村计划生育政策执行中的利益博弈研究
5)  Enforcement
执行
1.
The Harmonization of Rules in Recognition and Enforcement of Foreign Judgments;
论国际民商事判决承认与执行规范的趋同化
2.
Rethinking on Principle of Non-stopping the Enforcement of Administrative Act in Administrative Law of Remedies;
行政救济法上不停止执行原则的再思考
3.
On Recognition and Enforcement of Foreign Maritime Arbitration Awards;
论外国海事仲裁裁决的承认与执行
6)  execute
执行
1.
If the geo-logical prospecting company executes the new system timely,it will be very helpful to make the accounting more standard,to re flect the asset situation and to improve the financial manage-ment level in the geological prospecting company as well.
地勘企业适时执行《企业会计制度》,可以进一步规范地勘企业的会计核算行为,对真实、完整地反映地勘企业的资产状况,提高地勘企业的财务管理水平,具有现实指导作用。
2.
Most of all,it is more important to be executed.
从国外内部控制的COSO报告和SOX法案经验说明,我国的内部控制要想得到有效地发挥作用,需要注意的问题是:要有良好的内外部环境,主要有完善公司治理机制,为内部控制系统的构建提供基础,构造一个良好的内部环境;实现有效的外部监控,为内部控制系统作用的发挥提供有效的外部环境;在内外部环境得到完善的前提下,要着重执行。
参考词条
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

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