I just want to know, what exactly the difference between the functions CStr() and Str() and also the .ToString()? With the code provided below, what's the difference between the three?
Label1.Text = CStr(Int(Rnd() * 10))
and
Label1.Text = Str(Int(Rnd() * 10))
and
Label1.Text = Int(Rnd() * 10).ToString
When I used this condition
If Label1.Text = "7" Then
'Some code here
End If
...the Str() function didn't work here. What difference did it make? thanks in advance :))
