(* 一般的清空combobox方法 combobox1.clear; ... combobox9.clear; *) procedure TForm1.Button1Click(Sender: TObject); var i: integer; begin for i:=0 to self.ComponentCount-1 do begin if self.Components[i] is TCombobox then TCombob…
word的类库使用的是word2007版本的类库,类库信息见下面图片,折腾了半天,终于找到入口,网上 很多说的添加或者修改word的高级属性中的自定义属性都是错误的,感觉都是在copy网上的代码,自己终于摸索成功了,Mark下. 直接上代码,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Collect…
在html5中,给元素添加自定义属性需要用到data-*,比如data-name,添加完data-自定义属性之后通过元素的dataset属性来访问其值. dataset与getAttribute/setAttribute的对比 在此之前的访问属性的方式我们用getAttribute/setAttribute html 结构: <div id='div' name='divName'>我是div</div> javascript结构: var div = document.getEl…
Learn how to set an elements background image to embedded SVG. This method has an added benefit of not incurring any HTTP requests, as the SVG is simply embedded into the CSS. They can also be resized by changing the width and height of the element c…
Learn how to set an SVG as the background image of an element. Background images can be resized by changing the width and height of the element containing background image, so it’s easy to create multiple sizes of the same icon. However, each backgro…
为 Microsoft Word 创建自动化客户端 启动 Visual Studio .NET. 在文件菜单上,单击新建,然后单击项目.从 Visual C# 项目类型中选择 Windows 应用程序.默认情况下会创建 Form1. 添加对 Microsoft Word 对象库的引用.为此,请按照下列步骤操作: 在项目菜单上,单击添加引用. 在 COM 选项卡上,找到 Microsoft Word 对象库,然后单击选择. 注意:Microsoft Office 2003 包含主 Interop…