用vbs实现选择颜色
更新时间:2008年08月01日 23:22:22 作者:
用vbs实现选择颜色的两种方法,一种带组件,一种不带
如果不用组件的话,代码如下:
set ie = createobject("internetexplorer.application")
ie.navigate "about:blank"
do until ie.readystate = 4 : wscript.sleep 25 : loop
set doc = ie.document
set body = doc.body
set win = doc.parentwindow
body.innerhtml = "<OBJECT id=dlg CLASSID='clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b'></OBJECT>"
body.innertext = doc.getElementById("dlg").choosecolordlg
win.clipboarddata.setdata "text", body.innertext
ie.quit
如果用组件的话,代码如下:
flag = 1+2
initialColor = &hff32ea
color = OpenColor(initialColor, flag)
MsgBox "Selected color: " & hex(color)
function OpenColor(initColor, flags)
set comdlg = CreateObject("MSComDlg.CommonDialog")
comdlg.Color = initColor
comdlg.Flags = flags
comdlg.ShowColor
OpenColor = comdlg.Color
end function
组件相关文件下载http://xiazai.jb51.net/jbtools/vb6controls.rar
set ie = createobject("internetexplorer.application")
ie.navigate "about:blank"
do until ie.readystate = 4 : wscript.sleep 25 : loop
set doc = ie.document
set body = doc.body
set win = doc.parentwindow
body.innerhtml = "<OBJECT id=dlg CLASSID='clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b'></OBJECT>"
body.innertext = doc.getElementById("dlg").choosecolordlg
win.clipboarddata.setdata "text", body.innertext
ie.quit
如果用组件的话,代码如下:
flag = 1+2
initialColor = &hff32ea
color = OpenColor(initialColor, flag)
MsgBox "Selected color: " & hex(color)
function OpenColor(initColor, flags)
set comdlg = CreateObject("MSComDlg.CommonDialog")
comdlg.Color = initColor
comdlg.Flags = flags
comdlg.ShowColor
OpenColor = comdlg.Color
end function
组件相关文件下载http://xiazai.jb51.net/jbtools/vb6controls.rar
相关文章
VBS教程:VBscript语句-For...Next 语句
VBS教程:VBscript语句-For...Next 语句...2006-11-11VBS 脚本不能运行 提示Windows无法访问指定设备路径或文件
Windows无法访问指定设备路径或文件,您可能没有合适的权限访问这个项目.2009-10-10vbscript获取文件的创建时间、最后修改时间和最后访问时间的方法
这篇文章主要介绍了vbscript获取文件的创建时间、最后修改时间和最后访问时间的方法,本文通过FileSystemObject对象实现,需要的朋友可以参考下2014-08-08
最新评论