I am just learning and I found that I should be Declaring my variables as strings or integers from the start. I learned that I can use an * number to determin length.

Example: Dim yourName as String * 10

But if I try and do this to an integer it doesn't like it (Dim yourAge as Integer * 2)

So, does this mean I have to declare it as a string then reference it later using the val() or is there a different way to define allowed integer length?