wscript/vbscript 的日历 UI 小部件

发布于 2024-08-02 00:29:26 字数 79 浏览 4 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

臻嫒无言 2024-08-09 00:29:26

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 the DateValue function.

If you need, you probably want an HTML Application. Check out Microsoft TechNet Script Center for info and tips on HTAs.

迷荒 2024-08-09 00:29:26
<html>
    <head>
    <title>calendar</title>
    <hta:application
         scroll="no"
         singleinstance="no"
         windowstate="normal"
    >
</head>
<script type="text/vbscript">
    Sub cal1_click()
        ddate.value=cal1.value 
        div1.style.visibility="hidden"
    End Sub
</script>
<body>
<div>
<input id="ddate" type="text" value="click here" onclick="div1.style.visibility='visible'">
<div id="div1" style="visibility:hidden;">
    <object id="cal1" 
            classid="clsid:8E27C92B-1264-101C-8A2F-040224009C02">
    </object>
</div>
</div>
</body>
</html>
<html>
    <head>
    <title>calendar</title>
    <hta:application
         scroll="no"
         singleinstance="no"
         windowstate="normal"
    >
</head>
<script type="text/vbscript">
    Sub cal1_click()
        ddate.value=cal1.value 
        div1.style.visibility="hidden"
    End Sub
</script>
<body>
<div>
<input id="ddate" type="text" value="click here" onclick="div1.style.visibility='visible'">
<div id="div1" style="visibility:hidden;">
    <object id="cal1" 
            classid="clsid:8E27C92B-1264-101C-8A2F-040224009C02">
    </object>
</div>
</div>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文