am trying to teach myself visual basic 2008 but i have encountered a problem with;
Dim a As Integer
Dim b As Integer
Dim c As single
a = 23
b = 7
Debug.Write(a / b)
c = Convert.ToDouble(a / b)
i have tried it with strict option on, and pops an error while on putting it off it never returns a thing?
can someone please guide me on this
Dim a As Integer
Dim b As Integer
Dim c As single
a = 23
b = 7
Debug.Write(a / b)
c = Convert.ToDouble(a / b)
i have tried it with strict option on, and pops an error while on putting it off it never returns a thing?
can someone please guide me on this