问题描述: 修改一个前辈的代码,在我自己电脑上面运行的很好,但是放到要用户电脑(win7 x64)上面却跑不了,报个如题的错误. 查了下是COMDLG32.OCX的问题,用到控件的地方是: Dim oDialog f_File_CommonDialog=False Set oDialog = CreateObject("MSComDlg.CommonDialog") 解决方法: 1. 注册控件: 找到这个控件COMDLG32.OCX, 用户电脑上面没有( 这里可下:链接), 放到..W…
Event Type:    WarningEvent Source:    Health Service ScriptEvent Category:    NoneEvent ID:    1Date:        2/13/2009Time:        12:18:09 PMUser:        N/AComputer:    BADDC01Description:AD Op Master Response : The script ‘AD Op Master Response’…
Hello Guys! I am trying to create a simple VBS script to automatically open some .tif images from a specified path on a server with Microsoft Office Document Imaging. There is a COM available, but it did not work when I used scripts found on the web:…
例如:win7 win10的系统,有时候运行某些软件会出现:429 , ActiveX 部件不能创建对象 的情况. 提示: "运行时错误'429': ActiveX 部件不能创建对象"... 或: "Run-time error '429' ActiveX componnent can't create object"... 原因: 出现以上原因是由于操作系统的“dao350.dll”文件没注册成功造成的. 处理方法:手工注册此文件:点击“开始”→“运行”1\在弹出…
1.学学基础的VB语法 https://www.yiibai.com/vba/vba_programming_charts.html 2.找一个样例看看 VBA编程实现自动回复邮件 https://blog.csdn.net/tclxspy/article/details/50714783 3.改造样例 取msdn上看看开发文档 https://docs.microsoft.com/zh-cn/office/vba/outlook/concepts/getting-started/using-m…
var Plane = function () { this.blood = 100; this.attack = 1; this.defense = 1; }; var plane = new Plane(); plane.blood = 500; plane.attack = 5; plane.defense = 5; var clonePlane = Object.create(plane); console.log(clonePlane.blood); console.log(clone…
var emptyObject = Object.create(null); var emptyObject = Object.create(null); var emptyObject = {}; var emptyObject = new Object(); 区别: var o; // create an object with null as prototype o = Object.create(null); o = {}; // is equivalent to: o = Object…
创建一个具有指定原型且可选择性地包含指定属性的对象. 语法 Object.create(prototype, descriptors) 参数 prototype 必需.  要用作原型的对象.  可以为 null. descriptors 可选.  包含一个或多个属性描述符的 JavaScript 对象. "数据属性"是可获取且可设置值的属性.  数据属性描述符包含 value 特性,以及 writable.enumerable 和 configurable 特性.  如果未指定最后三个…
if (!Object.create) { Object.create = (function(){ function F(){} return function(o){ if (arguments.length != 1) { throw new Error('Object.create implementation only accepts one parameter.'); } F.prototype = o; return new F() } })() }…
Object.create(prototype, descriptors) :创建一个具有指定原型且可选择性地包含指定属性的对象 参数:prototype 必需.  要用作原型的对象. 可以为 null.descriptors 可选. 包含一个或多个属性描述符的 JavaScript 对象.“数据属性”是可获取且可设置值的属性. 数据属性描述符包含 value 特性,以及 writable.enumerable 和 configurable 特性. 如果未指定最后三个特性,则它们默认为 fals…