答案 0 :(得分:2)
只需使用您的格式向文本框添加一个更改事件
Private Sub TextBox1_Change()
Me.TextBox1.Text = Format(Me.TextBox1.Text, "#" & Application.ThousandsSeparator & "###")
End Sub
答案 1 :(得分:0)
我知道了。
因此,右键单击ActiveX文本框->查看代码。
Private Sub TextBox12_Change()
TextBox12.Value = Format(TextBox12.Value, "###,##")
End Sub