This should be a simple but I'm vapor locked. I have a variable, dimmed as a string that has a number it represents. I want to pad the right side of the string with 0,s that's zeros so the variable is 10 characters long. For example I want the variable that equals 456 to be 4560000000. I tried the following code
strNumber = Format(str1,"0000000000)
but this places the zeros on the left side and I need them on the right.
Thanks
strNumber = Format(str1,"0000000000)
but this places the zeros on the left side and I need them on the right.
Thanks