When I enter data into a form field on a form I would like to use the tab button to tab over and line up different lines. For example:
Line1 tab1data tab2data
Line2 tab1data tab2data
Never even tried but it sounds like you are trying to add more than one data element into a field. You should probably have a field on the form for each element and if you need them to be in one field in the database, concatenate them when you are writing the record.
Then you could put the pieces together Line1 = "tab1data" & Chr(9) & "tab2data"
By default MS Access does not allow a tab to be used as a part of the data. Tab moves to the next field Shift + Tab moves to the previous.
If the reason you want the tab embedded in the data is for exporting it to another application this can be handled with the export specification that Access can give you and the Tab is one of several options.
This form field is a field that contains text that is printed in a report. I'm just trying to format the text when I enter it into the form field so that it lines up the way I want it to. Right now I'm using spaces to line the text up between lines, but if I could use the tab key to create space between words and line the text up it would be a lot easier.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.