J
John
I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off? Thanks.
John
there a way to turn this feature off? Thanks.
John
I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off?
John said:I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off? Thanks.
Hi, John.
I agree with Arvin on the use of a trailing space in a field, however, if
you need it for some downstream contatenation or calculated field, build it
on the fly in a query.
=[FirstField] & " " & [SecondField] or, for multiple spaces,
=[FirstField] & Space(5) & [SecondField]
Hope that helps.
Sprinks
John said:I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off? Thanks.
John
John said:I am sorry. I guess I should have been a little more specific. I use the
textbox to enter a substring that is used to search for a substring in
another larger string. This textbox substring may have trailing blanks.
I agree with everyone that normally you don't want to store strings with
trailing blanks. I assume from everyone's answer that there is no way to
turn off the automatic truncation of trailing spaces in textboxes?
John
Hi, John.
I agree with Arvin on the use of a trailing space in a field, however, if
you need it for some downstream contatenation or calculated field, build it
on the fly in a query.
=[FirstField] & " " & [SecondField] or, for multiple spaces,
=[FirstField] & Space(5) & [SecondField]
Hope that helps.
Sprinks
John said:I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off? Thanks.
John
John said:I am sorry. I guess I should have been a little more specific. I use the
textbox to enter a substring that is used to search for a substring in
another larger string. This textbox substring may have trailing blanks.
I agree with everyone that normally you don't want to store strings with
trailing blanks. I assume from everyone's answer that there is no way to
turn off the automatic truncation of trailing spaces in textboxes?
John
Hi, John.
I agree with Arvin on the use of a trailing space in a field, however, if
you need it for some downstream contatenation or calculated field, build it
on the fly in a query.
=[FirstField] & " " & [SecondField] or, for multiple spaces,
=[FirstField] & Space(5) & [SecondField]
Hope that helps.
Sprinks
John said:I notice that Access XP (SP3) truncates trailing spaces in textboxes. Is
there a way to turn this feature off? Thanks.
John