在 VBA 中格式化文本框 4 位小数
无论如何,您是否可以将文本框格式设置为始终具有四位小数?我知道如何使用 C# 和 Visual Basic 使用屏蔽文本框来完成此操作,但由于缺乏功能,vba 更具挑战性。任何帮助将不胜感激。谢谢
Public Sub UserForm_Initialize()
TextBox6.Text = Format(Number, "###.####")
End Sub
Is there anyway that you can format a textbox format to have four decimal places at all time? I know how to do it with C# and Visual Basic using a masked textbox, but vba is a bit more challeging due to the lack of function. Any help would be greatly appreciated. Thanks
Public Sub UserForm_Initialize()
TextBox6.Text = Format(Number, "###.####")
End Sub
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只是格式字符串不正确。它应该看起来像这样:
You just have the format string incorrect. It should look like this:
尝试:
Try: