将VB文本框内输入的数字转为货币形式
3个回答
展开全部
用数字格式函数format(12000,"#,##0.00")就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub TextBox1_Leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.Leave, TextBox2.Leave
Dim str As String = TextBox1.Text.Trim()
If Not String.IsNullOrEmpty(str) And IsNumeric(str) Then
TextBox1.Text = FormatCurrency(str)
End If
End Sub
Dim str As String = TextBox1.Text.Trim()
If Not String.IsNullOrEmpty(str) And IsNumeric(str) Then
TextBox1.Text = FormatCurrency(str)
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Text1.Text = Format(Val(Text1.Text), "#,##0.00")
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询