zoukankan      html  css  js  c++  java
  • 用CreateObject 函数创建某个对象时,先查找到其对应的class 。以下是常见的class

    如有侵权,请联系删除

    https://wenku.baidu.com/view/926a5e1ba8956bec0975e3e8.html

    createobject("vbscript.regexp") '正则表达式

    createobject("scripting.dictionary") '字典

    CreateObject("MSXML2.XMLHTTP") '创建一个xmlhttp对象

    CreateObject("htmlfile") '创建一个Dom对象

    createobject("adodb.recordset")   '数据库记录操作

    createobject("scripting.filesystemobject")   '文件操作

    createobject("wscript.shell")   'shell

    createobject("wscript.network")   '网络操作

    createobject("microsoft.xmlhttp")   'xmlhttp远程获取文件用的

    createobject("msxml2.xmlhttp.4.0")   'xmlhttp远程获取文件用的

    createobject("adodb.stream")   '数据流传输

    createobject("adodb.connection")   '数据库连接

    createobject("word.application")   'word

    createobject("excel.application")   'excel

    createobject("mswc.adrotator")   '广告

    createobject("scripting.dictionary")   'hash表操作

    createobject("powerpoint.application")   'ppt

    createobject("Microsoft.XMLDOM")   'XML操作

    createobject("excel.sheet")   '

    createobject("frontpage.application")   '

    createobject("access.application")   'ACCESS

    createobject("msgraph.application")   '

    createobject("photoshop.application")   '

    关于SQL Server

    createobject("SQLDMO.SQLSERVER")

    createobject("SQLDMO.Login")

    createobject("SQLDMO.Backup")

    createobject("SQLDMO.User")

    createobject("SQLDMO.BackupDevice")

    createobject("SQLDMO.Database")

    createobject("SQLDMO.Restore")

  • 相关阅读:
    37. Sudoku Solver(js)
    36. Valid Sudoku(js)
    35. Search Insert Position(js)
    34. Find First and Last Position of Element in Sorted Array(js)
    33. Search in Rotated Sorted Array(js)
    32. Longest Valid Parentheses(js)
    函数的柯里化
    俞敏洪:我和马云就差了8个字
    vue路由传值params和query的区别
    简述vuex的数据传递流程
  • 原文地址:https://www.cnblogs.com/lidapengwww/p/12830300.html
Copyright © 2011-2022 走看看