Bonjour,

Je voudrais ajouter un 0 à la fin d'un string mais ça marche pas
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
dim thisString as string
thisString = "605.1"
thisString = thisString & "0"
'retourne 605.1 mais je voudrais 605.10
Quelqu'un a une idée ?