在 .net 1.1 中将日期/时间设置为日期时间选择器

发布于 2024-08-14 08:44:48 字数 107 浏览 6 评论 0原文

我的一个应用程序中有一个日期时间选择器。加载获胜表单时,我需要日期时间选择器默认为今天日期之后的星期三。知道如何做到这一点吗?我们在此应用程序中使用 .Net 1.1。

谢谢, 麦克风

I have a datetime picker in one of our apps. When loading up the win form I need the date time picker to default to the Wednesday following todays date. Any idea how to do this? We are using .Net 1.1 for this app.

Thanks,
Mike

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

混浊又暗下来 2024-08-21 08:44:48

这应该可以...只需添加天数,直到下周三

Public Function GetNextDayOfWeek(ByVal dow As DayOfWeek) As DateTime
       Dim d = DateTime.Now.AddDays(1)
       While d.DayOfWeek <> dow
           d = d.AddDays(1)
       End While

       Return d
   End Function

this should do it...just add days until you hit the next wednesday

Public Function GetNextDayOfWeek(ByVal dow As DayOfWeek) As DateTime
       Dim d = DateTime.Now.AddDays(1)
       While d.DayOfWeek <> dow
           d = d.AddDays(1)
       End While

       Return d
   End Function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文