Yeah what Rho said AND what bplus said because this works too!
Wait this doesn't work because i/10 never ='s or exceeds 1
Code: (Select All)
Dim formatString As String
formatString = "##.##"
For i = 0 To 9
'Print Using "##.##"; i / 10; "-"; (i + 1) / 10; " |";
Print Using formatString; i / 10;
Print " -";
Print Using formatString; (i + 1) / 10;
Print " |";
'For j = 1 To freq(i) / 10 this doesn't do anything because freq() not declared
' Print "*";
'Next j
Print
Next i
Wait this doesn't work because i/10 never ='s or exceeds 1
Code: (Select All)
'For j = 1 To freq(i) / 10 this doesn't do anything because freq() not declared
' Print "*";
'Next j
b = b + ...