全局对象:(全局对象不需要声明,直接使用即可)
APP:代表整个应用程序,当前的应用程序
Screen屏幕:屏幕对象主要属性:height、width、mousepointer、mouseicon、twipsperpixelx(水平方向)、twipsperpixely(垂直方向 )
err:错误,判断程序出现什么异常
主要属性:number:(错误号) 用户使用513--65535,系统:0--512
Description(错误描述)
Source
主要方法:clear(把当前的错误对象清空)、raise
clipboard:剪切板:主要方法:settext 设置文本(字符串 )
Forms:集合对象
printer(s):输出
debug:用于调试 主要方法:assert,print
对象的创建:全局对象自动创建,手动创建:new/createojbect/getobject
对象的撤销:自动撤销,手动撤销:set objecvar=nothing
With……end with,可嵌套 with .other……end with(.other表示使用上面语块的子对象处理,不加点,表示是一个单独的对象)