Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法(如果需要,以编程方式)在 Access 中预自定义文本框,以便用户可以输入“时间”,格式为 18:00:00,但冒号已经可用并且不能被“覆盖”用户? 我的意思是用户不需要输入冒号。它们将标准在文本框中可用。
您可以将格式设置为时间并使用输入掩码。
Me.MyTime.Format = "Long Time" Me.MyTime.InputMask = "00:00:00;0;_"