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.
如何限制用户在文本框中输入某些数据类型...例如在用于日期的文本框中如何确保用户不会输入无效日期?
据我所知,您不能将输入限制为文本框,例如限制单元格输入的方式(通过数据验证)。您需要通过文本框的 Change 或 Exit 事件捕获输入并在那里验证输入类型。如果输入无效,则将文本框的 Text 属性设置为等于“”(空字符串)并显示警报。