日期时间选择器控件,有问题的行为

发布于 2024-08-07 20:07:31 字数 152 浏览 10 评论 0原文

表单上绑定到表字段的日期时间控件工作正常。
如果我将选择器添加到选项卡控件中,则会在加载表单时引发此错误:

调用 Windows 日期和计时器选取器控件时发生错误。

有解决这个问题的方法吗?

A datetime control on a form, bound to a table field, works fine.
If I add the picker inside a tab control it raises this error when I load the form:

An error occured in a call to the Windows Date and Timer Picker control.

Is any workaround for this problem?

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

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

发布评论

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

评论(2

っ〆星空下的拥抱 2024-08-14 20:07:31

如果您正在初始化 DTPicker 的值并且它不可见,您将收到该错误:

// a shortcut to get it visible if it's not in the selected tab:

DTPicker.SetFocus
DTPicker.Value = Now

if you are initializing the value of the DTPicker and it's not visible you'll get that error:

// a shortcut to get it visible if it's not in the selected tab:

DTPicker.SetFocus
DTPicker.Value = Now
听风念你 2024-08-14 20:07:31

请参阅我网站上的日历提示页面

可能,很可能会有很多当您分发 MSCal.OCX 时,会出现版本问题。

一种替代方案是 MonthCalendar 是完全由 API 生成的月日历,直接从 Common Control DLL 派生。我的网站上有几个可下载日历表格的链接。由于这些是表单,您也可以对它们执行任何您想要的操作。

您还可以使用 Litwin/Getz/Gilbert(出版商 Sybex www.developershandbook.com)编写的《Access 开发人员手册》中提供的日历表单。这些书非常值得花钱。每次我打开一本,我都会节省这本书的价格。

See the Calendar Tips page at my website

There could, likely will, be lots of version problems when you go to distribute the MSCal.OCX..

One alternative is MonthCalendar is a completely API generated Month Calendar derived directly from the Common Control DLL. There are links to several downloadable calendar forms at my website. As these are forms you can also do anything with them you want.

You can also use the calendar form which comes in the Access Developers Handbook by Litwin/Getz/Gilbert, publisher Sybex www.developershandbook.com. These books are well worth spending money. Every time I open one I save the price of the book.

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