wscript/vbscript 的日历 UI 小部件
我是 Windows 脚本编写的新手。 是否有一个日历 UI 小部件,我可以使用 wsh 来获取用户输入? 我基本上需要从用户那里获取日期。
I'm a newbie to windows scripting. Is there a Calendar UI widget which I can use from wsh to get user input? I basically need to get a Date from the user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VBScript 仅具有
InputBox
函数用户输入:您可以使用它来提示用户输入其区域设置支持的任何日期格式的日期字符串(“8/10/2009”、“8/10/09”、“2009 年 8 月 10 日”、“ Aug 10, 2009”等),然后使用 <代码>DateValue函数。如果需要,您可能需要一个 HTML 应用程序。 请访问 Microsoft TechNet 脚本中心,了解有关 HTA 的信息和提示。
VBScript only has the
InputBox
function for the user input: you can use it to prompt the user for a date string in whatever date format is supported by their locale ("8/10/2009", "8/10/09", "August 10, 2009", "Aug 10, 2009" etc) and then convert it to a Date variant using theDateValue
function.If you need, you probably want an HTML Application. Check out Microsoft TechNet Script Center for info and tips on HTAs.