快捷登录,享 免费下载
首页 > 教程资讯 > 教程详情

InsideClipboard的教程

补充锦囊 完美下载小客服 2021-03-30
文章分享
软件首页

完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。

InsideClipboard可以帮你把每次要复制到其他地方的东西(文本或位图等等)记录在此软件中。主复制窗口程序仅仅提供最基本的类型:文本和位图;不显示储存的所有列表等。InsideClipboard(复制记录器)是一款非常实用的系统小工具。你每次把复制的东西复制到其他地方(文本或位图等等),被复制的数据则会记录在此软件中。主复制窗口程序仅仅提供最基本的类型:文本和位图;不显示储存的所有列表;显示出的内容为:二进制和十六进制的形式,允许你保存当前的具体格式

"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。

本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。

InsideClipboard

InsideClipboard

软件大小:45.92 KB

高速下载

相关问答

更多
  • GWT中复制到剪贴板 js+flash实现复制 兼容性比较好

    但是用flash就可以复制。例子就是VeryCd,看“复制选中的连接”按钮是一个flash。看来flash的安全沙箱没有限制将内容复制到剪贴板      但是也是有限制的:  1 根据ZeroClipborad的人们说,这些flash必须通过网络加载。  Zero Clipboard Does Not Work From Local Disk This is a security restriction by Adobe Flash Player. Unfortunately, since we are utilizing the JavaScript-to-Flash interface ("ExternalInterface") this only works while truly online (if the page URL starts with "http://" or "https://"). It won't work running from a local file on disk. However, there is a way for you to edit your local Flash Player security settings and allow this. Go to this website: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html And add the path to your local "ZeroClipboard.swf" file to the trusted files list, or try the "allow all" option.   2 flash虽然提供复制功能,但是前提是要通过用户的一次点击。意思就是不能在javascript中通过函数的方式setText就复制到剪贴板,而是调用了这个setText函数后,用户的鼠标在flash上有了一次点击,才可以。 This library is fully compatible with Flash Player 10, which requires that the clipboard copy operation be initiated by a user click event inside the Flash movie.   这里和使用flash上传文件的swfupload有同样的问题。  使用ZeroClipboard,可以将网页内容复制到剪贴板。但是ZeroClipboard没有GWT封装,我们项目是用GWT的,所以就学着swfupload的GWT封装,把ZeroClipboard也封装成GWT可以调用的形式。 1 先封装了一个zeroclipboard.jar  2 项目中使用的是GXT控件库,为了和控件紧密结合,写了一个ZClipboardBinder类,将两者结合起来 3 使用方法见下(Zeroclipboard_test.java)复制代码 代码如下:package zero.clipboard.test.client; import java.util.Date; import zero.clipboard.test.client.ZClipboardBinder.ClipboardListener; import com.extjs.gxt.ui.client.widget.LayoutContainer; import com.extjs.gxt.ui.client.widget.button.Button; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.RootPanel; /** * Entry point classes define <code>onModuleLoad()</code>. */ public class Zeroclipboard_test implements EntryPoint { public void onModuleLoad() { LayoutContainer c = new LayoutContainer(); c.setSize(400, 300); Button btn = new Button("Copy Hello World"); // 将控件和ZeroClipboard绑定 // ZClipboardBinder.bind(btn, "Hello World"); ZClipboardBinder.bind(btn, new ClipboardListener() { @Override public String prepareCopy() { return (new Date()).toString(); } }); c.add(btn); RootPanel.get().add(c); } } 相关下载都在附件中了。  attachment.zip 示意结果  点击按钮后——其实是点击了上面的flash,使用ctrl+v,就能看到结果。 现在发现有很多有意义的功能都不能用javascript实现,例如多文件上传和复制到剪贴板,都是通过flash做中介,“曲线”实现的 ,不知道最后HTML5有没有解决这些问题,不用我们兜兜转转。Zero Clipboard 开源的 JavaScript+flash 复制库类 

  • 关于MSFlexgrid控件(注册)的一个小问题

    未安装VC使用activeX控件- -Tag: 串口控件 注册 在使用串口控件时,在没有装VC的机器上碰到问题regsvr32 注册成功,但仍然不能使用,经查找是LicenseKey的问题只需在创建控件时增加下列几行即可WCHAR pwchLicenseKey[] = { 0x0043, 0x006F, 0x0070, 0x0079, 0x0072, 0x0069, 0x0067, 0x0068, 0x0074, 0x0020, 0x0028, 0x0063, 0x0029, 0x0020, 0x0031, 0x0039, 0x0039, 0x0034, 0x0020 }; BSTR bstrLicense = ::SysAllocStringLen(pwchLicenseKey, sizeof(pwchLicenseKey)/sizeof(WCHAR)); if(!m_ComPort.Create(NULL,0,CRect(0,0,0,0),AfxGetMainWnd(), IDC_MSCOMM1,NULL,FALSE,bstrLicense)) { AfxMessageBox("Failed to create OLE Communications Control\n"); return -1; //fail to create }......::SysFreeString(bstrLicense);具体参考原文见下:-----------------------------------------------------------------------------------------------------This article was previously published under Q151771 SUMMARYThe LicReqst sample illustrates how to use the IClassFactory2 interface to request an object's License key. The following file is available for download from the Microsoft Download Center:Licreqst.exeFor additional information about how to download Microsoft Support files, click the following article number to view the article in the Microsoft Knowledge Base: 119591 How to Obtain Microsoft Support Files from Online Services Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help to prevent any unauthorized changes to the file. NOTE: Use the -d option when running Licrqst.exe to decompress the file and recreate the proper directory structure. MORE INFORMATIONThe LicReqst sample is a dialog-based MFC application that illustrates how to use the IClassFactory2 interface to request an object's License key. LicReqst displays the ProgID of each of the currently registered ActiveX controls in a Listbox. When one of the displayed ProgID's is selected, an instance of the corresponding control is created and then asked for it's License key. If a valid key is returned, LicReqst displays the key and enables the "Copy to Clipboard" button that allows the License key to be copied to the Clipboard. The License key can then easily be pasted into code that uses the CWnd::CreateControl method to dynamically create an instance of the Control. LicReqst creates a textual version of the License key data in the form of a declaration of an array of WCHAR when copying the key to the Clipboard. This is done because the License key data could contain non-printable characters. A human-readable version of the License key data is also provided for reference and is included inside a Comment block in the final string that is copied to the Clipboard. For example, if an object uses the string "Copyright (c) 1994" (without the quotes) for its License key, LicReqst would generate the following block of text that could be copied to and pasted from the Clipboard: /* Copyright (c) 1994 */ WCHAR pwchLicenseKey[] = { 0x0043, 0x006F, 0x0070, 0x0079, 0x0072, 0x0069, 0x0067, 0x0068, 0x0074, 0x0020, 0x0028, 0x0063, 0x0029, 0x0020, 0x0031, 0x0039, 0x0039, 0x0034, 0x0020 }; You can use the previous block of text in code that creates an instance of the Licensed object, and you can use the pwchLicenseKey variable to specify the object's License key. For example, if MFC code is dynamically creating an instance of a Licensed ActiveX Control using the Create method of a Visual C++ Component Gallery generated wrapper class, the pwchLicenseKey variable can be used in the Create call like this: BSTR bstrLicense = ::SysAllocStringLen(pwchLicenseKey, sizeof(pwchLicenseKey)/sizeof(WCHAR)); m_MyControl.Create(NULL, WS_VISIBLE, CRect(10,10,10,10), this, 2, NULL, FALSE, bstrLicense); ::SysFreeString(bstrLicense); Note how a BSTR is created from the pwchLicenseKey variable and how the BSTR is then used for the License key parameter in the Create call. NOTE: The code in this sample that generates the text copied to the Clipboard makes the assumption that it is being executed on a little endian system (Intel x86-class processors). Because of this, it will not work correctly on big endian system. For these systems, it is still possible to use the Helper function used internally by the sample to request the License key from an object. The sample uses a Helper function called RequestLicenseKey() to get the License key from an object based on its ProgID. The source code for the RequestLicenseKey() function is shown later in the Sample Code section. To find other locations of interest in the sample source code, use the Find in Files feature of the Visual C++ Developer Studio to search for the string named SAMPLE CODE. This string has been used to tag each of the modified sections in the source code. NOTE: Running the LicReqst sample on a licensed machine to obtain an object's License key, and then distributing that key to allow applications to be developed on other non-licensed machines, may be a violation of established copyrights. For more information and to determine if an object's License key can be legally redistributed, refer to the License Agreement provided with the object or contact the creator of the object. Sample Code// Compile options needed: none/////////////////////////////////////////////////////////////////////// // SAMPLE CODE - Implementation of the RequestLicenseKey function// // The RequestLicenseKey function uses the IClassFactory2 interface// to request a License key from an object specified by its ProgID.// // Parameters:// // [out] BSTR& bstrLicenseKey// Upon return, this BSTR will contain either a valid// License key or an error message. It is the caller's// responsibility to call ::SysFreeString on this BSTR.// // [in] CString strProgID// Specifies the ProgID of the object from which to request the// License key.// // // Return Value:// // A BOOL specifying success or failure. If TRUE is returned,// the License key was retrieved successfully and the// bstrLicenseKey parameter contains a valid License key. If// FALSE is returned, the License key was not retrieved// successfully and the bstrLicenseKey parameter contains a// descriptive error string.// // Regardless of the return value, it is the responsibility of// the caller to call ::SysFreeString on the returned bstrLicenseKey// parameter.// BOOL RequestLicenseKey(BSTR& bstrLicenseKey, CString strProgID) { USES_CONVERSION; LPCLASSFACTORY2 pClassFactory; CLSID clsid; BOOL bValidKeyReturned = FALSE; // Get the CLSID of the specified ProgID. if (SUCCEEDED(CLSIDFromProgID(T2OLE(strProgID), &clsid))) { // Create an instance of the object and query it for // the IClassFactory2 interface. if (SUCCEEDED(CoGetClassObject(clsid, CLSCTX_INPROC_SERVER, NULL, IID_IClassFactory2, (LPVOID *)(&pClassFactory)))) { LICINFO licinfo; // Check to see if this object has a runtime License key. if (SUCCEEDED(pClassFactory->GetLicInfo(&licinfo))) { if (licinfo.fRuntimeKeyAvail) { HRESULT hr; // The object has a runtime License key, so request it. hr = pClassFactory->RequestLicKey(0, &bstrLicenseKey); if (SUCCEEDED(hr)) { if(bstrLicenseKey == NULL) bstrLicenseKey = ::SysAllocString( L""); else // You have the license key. bValidKeyReturned = TRUE; } else // Requesting the License key failed. switch(hr) { case E_NOTIMPL: bstrLicenseKey = ::SysAllocString( L""); break; case E_UNEXPECTED: bstrLicenseKey = ::SysAllocString( L""); break; case E_OUTOFMEMORY: bstrLicenseKey = ::SysAllocString( L""); break; case CLASS_E_NOTLICENSED: bstrLicenseKey = ::SysAllocString( L""); break; default: bstrLicenseKey = ::SysAllocString( L""); } } else bstrLicenseKey = ::SysAllocString( L""); } else bstrLicenseKey = ::SysAllocString( L""); // Make sure you release the reference to the class factory. pClassFactory->Release(); } else bstrLicenseKey = ::SysAllocString( L""); } else bstrLicenseKey = ::SysAllocString( L""); // Return a BOOL specifying whether or not you were able to get a // valid license key. return bValidKeyReturned; }

  • 用电脑怎样画电路图?

    PROTEL99 若将其粘贴到WORD文档中还要做一定的技术处理,否则图幅不合适,栅格要去掉.请参考下文: 广大无线电工作者和科技文档编辑者在惊喜之余,却经常对在Word文档中难以插入自己的电路图感到困惑。针对这一问题,本文介绍了一种既不用格式转换(所谓格式转换就是将Protel原理图文件*.S01转换为后缀为.SCP文件,通过参数设置再改成后缀为.HGL文件插入到Word文档中(这种方法只适用于Word 6.0和Word 5.0。),也不用屏幕截取(屏幕截取就是利用一些专门的屏幕抓软件如Capture或HyperSnap进行截取,其打印输出效果不甚理想)或是复印粘贴的方法,而用一种简单易行的方法,暂将此法称之为“选取粘贴法”,它对于电路图插入Word97文档中非常有效(当然也适用于Word95、Word6.0、Word200)。下面以Protel Design System V2.3为例进行说明,具体步骤主要分为以下三大部分。   1、选取前的准备   1) 启动程序栏Protel Design System中的电路图编辑器Schematic Editor。   2) 打开将要插入Word97文档中的电路图文件,或按功能键Alt+F,O。   3)执行选单命令Options/Preferences项,或按功能键Alt+O,P,对工作参数进行设置,运行命令后,屏幕弹出Preferences对话框,更改工作平面的格点颜色即Grid Color选项,改为白色,颜色数为323,缺省为灰色,颜色数为215。更改工作平面格点颜色的目的是为了避免将工作图纸的灰色网格一起粘贴到Word文档中去。然后再更改Add Template to Clipboard项,缺省设置是打钩,其意义在于,在执行Copy或Cut命令时,除复制被选择的图件到Windows剪贴板中,以WMF格式存储,但是对于是Protel程序本身的剪贴板,图纸样板是不会被一起复制的。因此,如要将Protel图形复制到Word文档中,就一定不要选择此项,这一点非常关键,否则,复制到Word文档中的图形将是一整张Protel图纸,它将已打印好的Word文档完全遮盖住了。   4)执行选单命令Options/Sheet,或按功能键Alt+O,S,屏幕弹出绘图纸属性设置对话框,选择Sheet项,更改图纸底色,改为白色,颜色数为323,缺省为淡黄色,颜色数为216。更改图纸底色的目的是避免将工作图纸淡黄色的底色粘贴到Word文档中去。   2、图件或原理图的选择   要同时复制多个图件,首先要介绍如何选择(Select)图件,因为复制一组图件,是以被选到的图件为目标物,选择图件的方法有三种:   1)单个选 如要选择一组图件中的多个图件,一般采用以下两种方法:   ① 按住Shift键,再用鼠标单击目标图件,被单击到的图件会变成黄色(缺省色),即已被选择。   ② 执行选单命令Edit/Toggle Selection,或按功能键Alt+E,T,此时光标由箭头变为十字,用十字光标单击目标图件,被选择到的会变成黄色。 如果解除选择状态,可按住Shift键,再用鼠标左键单击目标图件,被单击到的图件就会解除选择状态。   2)鼠标框选一组图件   首先将光标移到目标物左上方,按住鼠左键不放,拖拽到目标物右下方后松开鼠标左键即可,被框选起来的图件变色和被加上方框,那些图件即被选中。同时也可用另外一种方法实现一组图件的选取:执行选单命令Edit/Selection/Inside Area,或按功能键Alt+E,S,I,出现十字光标后,在目标物左上方单击一下鼠标左键,放开后将光标移置目标物的右下方,再单击鼠标左键,好可将方框内的图件加以选择。 如要解除一组图件的选择状态,执行选单命令Edit/DeSelect/Inside Area,或按功能键Alt+E,E,I。执行命令后,十字光标会出现在工作区,用鼠标框选目标物,被框选到的图件就会解除被选择状态。   3) 选择整个工作区中的图件   如果要复制整张图中的图件,可执行选单命令Edit/Select/All ,或按功能键Alt+E,S,A。执行后全部的图件都会变色和被加上方框,此时所有图件均被选中。如要解除整张图中所有图件的选择,可执行选单命令Edit/DeSelect/ All,或按功能键Alt+E,E,A,即可解除被选择状态,使所有图件恢复原来的颜色。   3、图件或原理图的复制和粘贴   当选择好目标物后,执行选单命令Edit/Copy,或按快捷键Ctrl+Ins对目标物进行复制。然后进入Word97程序,执行选单栏文件/打开命令,或按快捷键Ctrl+O对将编排文档进行编辑,将鼠标光标移置要插入的位置,接着执行选单栏编辑/粘贴命令,或按快捷键Ctrl+V,把已复制好的图件或原理图插入到Word97文档中,利用鼠标调节图形框的大小,使要插入的Protel图形适中。   至此,通过以上三大步骤的操作,就完成了Protel图形在Word97文档中的嵌入。这种方法的优点是操作简便,不需格式转换,插入的图形可随意缩放、移动,同时丝毫不会影响输出图形的分辩率,在Word97中打印出的图形与在Protel Design System打印出的图形毫无分别。不足之处是:有时粘贴到Word97文档中的原理图的个别图件(全部在四周)会失去元件脚,这时不必担心,只要记住图件的位置,用电路图编辑器Schematic Editor 的绘图工具(Drawing Tools)中的画直线工具或按功能键Alt+P,D,L,画上丢失的元件脚即可。这样粘贴上的Protel图形就非常完美了。顺便提一下,如将Protel98中的图形嵌入Word97文档中的方法与上面介绍的方法大致相同,稍微的差别是Add Template to Clipboard和工作平面的格点颜色即Grid Color 选项在选单命令Options/Preferences/Grapthical下选择,图纸底色 的设置选项在选单命令Options/Document Options/Sheet Options选择,其它操作与Protel Design System V2.3 完全相同。 PROTEL原理图嵌入Word文档的实现与分析 自从澳大利亚Protel Technology公司的计算机辅助电路设计软件Tango进入中国市场以来,它以操作简便、功能强大等优点逐步得到了广大用户的青睐。Protel 3.x虽然易学易用,但终将被淘汰。随着Microsoft公司的Windows 3.x,Windows 95,Windows 98操作平台的相继亮相,Protel Design System V1.0、V2.x、V、3.x,以至如今的 Protel98/99SE。Protel Design System包括下面几个部分:   (1)Advanced Schematic,它的主要功能是绘制电路图、编辑零件库及生成网络表文件。   (2)Advanced PCB Design,它的主要功能是用来设计负责制电路板。   (3)Advanced PLD,主要用来设计可编程逻辑器件(PLD)。   (4)其它模拟程序,如类比电路模拟器(Analog Simulator)、数字电路模拟器(Digital Simulator)及混合信号模拟器(Mixed Signal Simulator)等,这些模拟器可让电子工程师们在还没实际做出电路和印制电路板之前,能验证一下所设计的的电路是否正确,或评估其可行性。   Protel Design System还有许多优点,如:完全支持中文Windows,可随意执行“复制”、“粘贴”命令;可在电路图中随意填写各种字体的中英文字;可直接在原理图中随意粘贴图片、绘制几何图形、波形,甚至机械结构;可产生或读取OrCAD的图形文件及零件库文件;完全支持Windows所使用的打印机和绘图仪,并可预览打印效果等等。以上的功能及优点是DOS版本下的Protel 3.x所完全不能比拟的。   与此同时,广大无线电工作者和科技文档编辑者在惊喜之余,却经常对在Word文档中难以插入自己的电路图感到困惑。针对这一问题,本文介绍了一种既不用格式转换(所谓格式转换就是将Protel原理图文件*.S01转换为后缀为.SCP文件,通过参数设置再改成后缀为.HGL文件插入到Word文档中(这种方法只适用于Word 6.0和Word 5.0。),也不用屏幕截取(屏幕截取就是利用一些专门的屏幕抓软件如Capture或HyperSnap进行截取,其打印输出效果不甚理想)或是复印粘贴的方法,而用一种简单易行的方法,暂将此法称之为“选取粘贴法”,它对于电路图插入Word97文档中非常有效(当然也适用于Word95、Word6.0、Word200)。下面以Protel Design System V2.3为例进行说明,具体步骤主要分为以下三大部分。   1、选取前的准备   1) 启动程序栏Protel Design System中的电路图编辑器Schematic Editor。   2) 打开将要插入Word97文档中的电路图文件,或按功能键Alt+F,O。   3)执行选单命令Options/Preferences项,或按功能键Alt+O,P,对工作参数进行设置,运行命令后,屏幕弹出Preferences对话框,更改工作平面的格点颜色即Grid Color选项,改为白色,颜色数为323,缺省为灰色,颜色数为215。更改工作平面格点颜色的目的是为了避免将工作图纸的灰色网格一起粘贴到Word文档中去。然后再更改Add Template to Clipboard项,缺省设置是打钩,其意义在于,在执行Copy或Cut命令时,除复制被选择的图件到Windows剪贴板中,以WMF格式存储,但是对于是Protel程序本身的剪贴板,图纸样板是不会被一起复制的。因此,如要将Protel图形复制到Word文档中,就一定不要选择此项,这一点非常关键,否则,复制到Word文档中的图形将是一整张Protel图纸,它将已打印好的Word文档完全遮盖住了。   4)执行选单命令Options/Sheet,或按功能键Alt+O,S,屏幕弹出绘图纸属性设置对话框,选择Sheet项,更改图纸底色,改为白色,颜色数为323,缺省为淡黄色,颜色数为216。更改图纸底色的目的是避免将工作图纸淡黄色的底色粘贴到Word文档中去。   2、图件或原理图的选择   要同时复制多个图件,首先要介绍如何选择(Select)图件,因为复制一组图件,是以被选到的图件为目标物,选择图件的方法有三种:   1)单个选 如要选择一组图件中的多个图件,一般采用以下两种方法:   ① 按住Shift键,再用鼠标单击目标图件,被单击到的图件会变成黄色(缺省色),即已被选择。   ② 执行选单命令Edit/Toggle Selection,或按功能键Alt+E,T,此时光标由箭头变为十字,用十字光标单击目标图件,被选择到的会变成黄色。 如果解除选择状态,可按住Shift键,再用鼠标左键单击目标图件,被单击到的图件就会解除选择状态。   2)鼠标框选一组图件   首先将光标移到目标物左上方,按住鼠左键不放,拖拽到目标物右下方后松开鼠标左键即可,被框选起来的图件变色和被加上方框,那些图件即被选中。同时也可用另外一种方法实现一组图件的选取:执行选单命令Edit/Selection/Inside Area,或按功能键Alt+E,S,I,出现十字光标后,在目标物左上方单击一下鼠标左键,放开后将光标移置目标物的右下方,再单击鼠标左键,好可将方框内的图件加以选择。 如要解除一组图件的选择状态,执行选单命令Edit/DeSelect/Inside Area,或按功能键Alt+E,E,I。执行命令后,十字光标会出现在工作区,用鼠标框选目标物,被框选到的图件就会解除被选择状态。   3) 选择整个工作区中的图件   如果要复制整张图中的图件,可执行选单命令Edit/Select/All ,或按功能键Alt+E,S,A。执行后全部的图件都会变色和被加上方框,此时所有图件均被选中。如要解除整张图中所有图件的选择,可执行选单命令Edit/DeSelect/ All,或按功能键Alt+E,E,A,即可解除被选择状态,使所有图件恢复原来的颜色。   3、图件或原理图的复制和粘贴   当选择好目标物后,执行选单命令Edit/Copy,或按快捷键Ctrl+Ins对目标物进行复制。然后进入Word97程序,执行选单栏文件/打开命令,或按快捷键Ctrl+O对将编排文档进行编辑,将鼠标光标移置要插入的位置,接着执行选单栏编辑/粘贴命令,或按快捷键Ctrl+V,把已复制好的图件或原理图插入到Word97文档中,利用鼠标调节图形框的大小,使要插入的Protel图形适中。   至此,通过以上三大步骤的操作,就完成了Protel图形在Word97文档中的嵌入。这种方法的优点是操作简便,不需格式转换,插入的图形可随意缩放、移动,同时丝毫不会影响输出图形的分辩率,在Word97中打印出的图形与在Protel Design System打印出的图形毫无分别。不足之处是:有时粘贴到Word97文档中的原理图的个别图件(全部在四周)会失去元件脚,这时不必担心,只要记住图件的位置,用电路图编辑器Schematic Editor 的绘图工具(Drawing Tools)中的画直线工具或按功能键Alt+P,D,L,画上丢失的元件脚即可。这样粘贴上的Protel图形就非常完美了。顺便提一下,如将Protel98中的图形嵌入Word97文档中的方法与上面介绍的方法大致相同,稍微的差别是Add Template to Clipboard和工作平面的格点颜色即Grid Color 选项在选单命令Options/Preferences/Grapthical下选择,图纸底色 的设置选项在选单命令Options/Document Options/Sheet Options选择,其它操作与Protel Design System V2.3 完全相同