Save a File Using a File Save Dialog Box

2016-02-19 09:24 9 1 收藏

get新技能是需要付出行动的,即使看得再多也还是要动手试一试。今天图老师小编跟大家分享的是Save a File Using a File Save Dialog Box,一起来学习了解下吧!

【 tulaoshi.com - Web开发 】

Demonstration script that allows you to enter a file name in a File Save dialog box, and then saves a sample text file (consisting entirely of the current date) under that file name. 

Supported Platforms

Windows Server 2003
 No

Windows XP
 Yes

Windows 2000
 No

Windows NT 4.0
 No

Windows 98
 No


Script Code

代码如下:

Set objDialog = CreateObject("SAFRCFileDlg.FileSave") 

objDialog.FileName = "C:ScriptsScript1.vbs" 
objDialog.FileType = "VBScript Script" 
intReturn = objDialog.OpenFileSaveDlg 

If intReturn Then 
    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    Set objFile = objFSO.CreateTextFile(objDialog.FileName) 
    objFile.WriteLine Date 
    objFile.Close 
Else 
    Wscript.Quit 
End If 

来源:http://www.tulaoshi.com/n/20160219/1590677.html

延伸阅读
标签: Web开发
Form: http://www.webreference.com/programming/javascript/mk/ Author:Mark Kahn Many developers have a large library of JavaScript code at their fingertips that they developed, their collegues developed, or that&nb...
标签: Web开发
Description Adds the BITS_Update.dll extension file.  代码如下: strComputer = "." Set objWMIService = GetObject _     ("winmgmts:{authenticationLevel=pktPrivacy}\\" _         & strComput...
功能说明: 辨识文件类型。 语 法: file [-beLvz][-f <名称文件][-m <魔法数字文件...][文件或目录...]  补充说明: 通过file指令,我们得以辨识该文件的类型。 参 数: -b 列出辨识结果时,不显示文件名称。 -c 详细显示指令执行过程,便于排错或分析程序执行的情形。 -f<名称文件 指定名称文...
标签: 服务器
Linux系统中file命令的使用详解   命令简介: 该命令用来识别文件类型,也可用来辨别一些文件的编码格式。它是通过查看文件的头部信息来获取文件类型,而不是像Windows通过扩展名来确定文件类型的。 执行权限 :All User 指令所在路径:/usr/bin/file 命令语法: 代码如下: file [ -bchikLnNprsvz ] [ ...
无论学习那种语言都难免要接触到文件系统,要经常和文件打交道。Java当然也不例外,有些网友觉得IO的设计很烦琐,有的时候我也有这样的感觉,其实用的熟练了,倒是觉得这个东西还是挺方便的。在介绍Java IO之前首先介绍一下非常重要的一个类File。 在看到这个类的名字后你一定认为它代表一个文件,事实上这样认为并不准确,因为Java中...

经验教程

222

收藏

78
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部