User281315223 posted
If you want to store the value as "035", you'll need to store it as a String instead of an integer.
Integers will ignore any leading zeroes when they are read and used by default, so this is completely normal behavior. Have you consider storing it as a String and when you need to actually grab the value, using the AsInt() method?