John B.
john at winhaven.net
Thu Oct 2 01:56:37 CDT 2003
Just cleaning some code and I was wondering how much difference is it going to make if I declare this: Const conPropNotFoundError = 3270 If Err = conPropNotFoundError Then... versus this: Const conPropNotFoundError as Long = 3270 If Err = conPropNotFoundError Then...