2010-03-04 18 views

Répondre

3

Essayez ceci:

score.ToString("0.000000") 
+0

greate il fonctionne – Tyzak

0

après la virgule zéro Ajouter est comme ça

Dim tot as String
Dim totAmt comme Double
totAmt = 10,10
tot = String.Format ("{0: 00.000}", totAmt)
OutPut: 10,100

Après le point décimal Retirez zéro est comme ça

totAmt = 10,750
tot = Math.Round (totAmt, 2)
sortie: 10,75

sloved