If I declare a constant like this:
Code:
Const NUM_EMPLOYEES As Integer = 4
then Visual Basic uses a 2-byte integer to store my constant.

If I instead declare the constant this way:
Code:
Const NUM_EMPLOYEES = 4
will Visual Basic use a 16-byte Variant to store the constant????