C colin9876 Active Member Licensed User Dec 22, 2010 #1 Dim scorestr as string Dim n as int whats the simplest way to do scorestr="Your score is ";n Ive tried this but it didnt work ... scorestr="Your score is " ++ numberformat(n,1,0) ?!
Dim scorestr as string Dim n as int whats the simplest way to do scorestr="Your score is ";n Ive tried this but it didnt work ... scorestr="Your score is " ++ numberformat(n,1,0) ?!
Erel B4X founder Staff member Licensed User Longtime User Dec 22, 2010 #2 B4X: scorestr = "Your score is " & NumberFormat(n, 1, 0) Upvote 0