Which statement assigns the string strAddress to label lblAddress while removing only trailing spaces?
a. lblAddress.Text = TrimStart(strAddress)
b. strAddress.TrimEnd = lblAddress.Text
c. lblAddress.Text = strAddress.Trim()
d. lblAddress.Text = strAddress.TrimEnd()
d. lblAddress.Text = strAddress.TrimEnd()
You might also like to view...
Define the three types of data filters and give an example of when each may be used
What will be an ideal response?
When you add a new field to the form, unless it is placed after all the other controls, you will have to adjust the ________
A) width B) default value C) record source D) tab order
When a table is created, it is automatically surrounded by a 1/2 pt. single-line border
Indicate whether the statement is true or false
The primary use of default arguments is to ____ the parameter list of existing functions without requiring any change in the calling argument lists already in place within a program.
A. extend B. shorten C. improve the accuracy of D. eliminate