I want to right pad my string with blank spaces. The following function works for all characters except the blank.
myString.PadRight(50,"x")
Edit:
myString.PadRight(50) does pad a string with blank spaces, but when this string is used in the following statement, the blank padding is gone.
myCheckBox.Text = myString.PadRight(50)