Byte変数の有効範囲は0
~255
です。
Dim b As Byte
b = 30
' The following statement causes an error because the value is too large.
'b = 256
のような数値の範囲を見つける方法30 = 256
Byte変数の有効範囲は0
~255
です。
Dim b As Byte
b = 30
' The following statement causes an error because the value is too large.
'b = 256
のような数値の範囲を見つける方法30 = 256
私はあなたの質問を誤解しているかもしれませんが、データ型のドキュメントを見ましたか? http://msdn.microsoft.com/en-us/library/vstudio/47zceaw7%28v=vs.120%29.aspx
ドキュメントには、すべてのデータ型の有効な範囲が明示的に記載されています。