FORMATANDO TEXTBOX 2 CASAS DECIMAIS
Tenho uma tabela do SQL que esta como tipo MONEY quando eu trago o valor para um textbox ele vem como 1,0000.
Como eu faço pra formatar e ficar como 1,00
Como eu faço pra formatar e ficar como 1,00
http://www.macoratti.net/13/01/vbn_fnm1.htm
GUIMANCINE,
Existem alguns jeitos... cabe a você decidir o melhor:
==================================
Método Strings.FormatNumber
https://msdn.microsoft.com/pt-br/library/microsoft.visualbasic.strings.formatnumber(v=vs.110).aspx
==================================
Use the FormatNumber function in Visual Basic .NET
http://www.vb-helper.com/howto_net_format_number.html
==================================
VB .NET - Formatando números com ToString
http://www.macoratti.net/13/01/vbn_fnm1.htm
==================================
Veja também:
==================================
HERANCA TEXTBOX - NAO E USER CONTROL - VB
http://www.vbmania.com.br/index.php?modulo=detalhe&id=9447&pagina=1
==================================
[][ô]s,
Tunusat.
Existem alguns jeitos... cabe a você decidir o melhor:
==================================
Método Strings.FormatNumber
https://msdn.microsoft.com/pt-br/library/microsoft.visualbasic.strings.formatnumber(v=vs.110).aspx
==================================
Use the FormatNumber function in Visual Basic .NET
http://www.vb-helper.com/howto_net_format_number.html
FormatNumber(1.23456, 2)
==================================
VB .NET - Formatando números com ToString
http://www.macoratti.net/13/01/vbn_fnm1.htm
strValor = valor.ToString([Ô]R$ #,###.00[Ô])
==================================
Veja também:
==================================
HERANCA TEXTBOX - NAO E USER CONTROL - VB
http://www.vbmania.com.br/index.php?modulo=detalhe&id=9447&pagina=1
==================================
[][ô]s,
Tunusat.
se esta Money la e vc quer representar em $$ no text
txtform.text = formatcurrency(valor do bd)
txtform.text = formatcurrency(valor do bd)
Tópico encerrado , respostas não são mais permitidas