If I declare a constant like this:
then Visual Basic uses a 2-byte integer to store my constant.Code:Const NUM_EMPLOYEES As Integer = 4
If I instead declare the constant this way:
will Visual Basic use a 16-byte Variant to store the constant????Code:Const NUM_EMPLOYEES = 4




Reply With Quote