I have 4 fields that I need to merge into one. Field
namesbccustbcloanbcdocbcdateI have tried making them text fields and I
can merge the values that way but can not get leading zeros to stay in
place. Codethis.rawValue = bccust.rawValue + "" + bcnote.rawValue + "" +
bcdoc.rawValue + "" + bcdate.rawValue;What I need is a way to say the
bccust is 10 char long and if the user does not enter 10 char it puts
leading zeros. bcloan is 5 char long and if the user does not enter 5
char it puts leading z...