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
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.