You can set an integer to DBNull (SQL null essentially) if you wish -
Dim myInt as integer = DBNull.Value
which is what a null integer coming from a database would be set to. if you are just coding, and not using a database, you could just manually set the integer to -1 and assume that as null, it really depends on the application though.