VB.net 禁用周末和未来的日历日期
我一直在尽力寻找一些有关如何禁用未来日期时间选择器日期以及所有周末日期的代码示例,但我找不到任何代码示例!我唯一能找到的是 ASP.net 代码。
如果有人知道如何在 VB 中执行此操作,请分享! :o)
谢谢,
大卫
I've been trying my best to find some code examples on how to disable the datetimepicker dates in the future and also all the weekend dates but i am unable to find any! Only thing i can find is ASP.net code.
If anyone knows how to do this in VB then please do share! :o)
Thanks,
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置 DateTimePicker.MaxDate 属性。您必须通过验证用户的选择来拒绝周末。使用 DateTime.DayOfWeek 属性。
Set the DateTimePicker.MaxDate property. You'll have to reject weekend days by validating the user's selection. Use the DateTime.DayOfWeek property.