Form TextBox Issues

Growler

Registered User.
Local time
Today, 11:39
Joined
Oct 15, 2010
Messages
11
I'm running into an issue where the Access form allows the user to enter in 255 characters for TransmittalDetails1 through 5, but will only allow around 50 characters for TransmittalDetails6. Do you know why this is?
Thanks

AccessForm2.jpg
 
Is TransmittalDetails6 perhaps set as a text box rather than a Memo field?
 
How would I be able to check this? And, to mitigate this, I copy and pasted TransmittalDetails5, and renamed it TransmittalDetails6, so it would retain the same properties... So I am not sure if that is the issue.
 
You'll need to check the underlying table in design view and check the Data Type of TransmittalDetails6
 
If TransmittalDetails5 is a text box, the default field size for text boxes is 50, so perhaps in copying it the copied version (TransmittalDetails6) has reverted to the default rather than the expanded size of 250 of TransmittalDetails5.
 
It's a text box, the default field size for text boxes is 50 with a maximum of 255. So I suspect in copying and pasting you loose the expanded field size, so you will need to change the field size, in the design view.
 
It's a text box, the default field size for text boxes is 50 with a maximum of 255. So I suspect in copying and pasting you loose the expanded field size, so you will need to change the field size, in the design view.
Right, I want to adjust the size of the text box... but there's no place for me to do so in Design View. Can you point me to it please?

Thanks

DesignView.jpg
 
I'm guessing it is of type Text Box... But so are TransmittalDetails 1 through 5

AccessForm-Datatype.jpg
You are showing the TEXT BOX properties but you should be looking in the TABLE at the FIELD properties.
 
How do I get there? All I have is a Property Sheet for my form.

You open the TABLE in design view and then go select that field and look at the FIELD SIZE for it.
 
Last edited:
Here's a sample:

attachment.php
 

Attachments

  • fieldsize.jpg
    fieldsize.jpg
    31.9 KB · Views: 299
You open the TABLE in design view and then go select that field and look at the FIELD SIZE for it.
I'm sorry, I'm not familiar at all with Access... my boss just told me to see if I could solve this issue for her. She gave me only one file to look at, TRANSMITTALS.mdb, and when I open it, all it shows me on the left-hand menu is "FORMS", and on the right is "PROPERTY SHEET".

That's all I see. How do I open this form in a table?
 
There is a drop down at the top of your left hand menu, switch it to tables.
 
I'm sorry, I'm not familiar at all with Access... my boss just told me to see if I could solve this issue for her. She gave me only one file to look at, TRANSMITTALS.mdb, and when I open it, all it shows me on the left-hand menu is "FORMS", and on the right is "PROPERTY SHEET".

That's all I see. How do I open this form in a table?

I'm assuming you have Access 2007 based on your description. See below for how to get to the tables and design view:

attachment.php


attachment.php



attachment.php
http://www.access-programmers.co.uk/forums/attachment.php?attachmentid=34139&stc=1&d=1287159348
 

Attachments

  • changenavpaneview01.jpg
    changenavpaneview01.jpg
    20.8 KB · Views: 145
  • changenavpaneview02.jpg
    changenavpaneview02.jpg
    16.4 KB · Views: 141
  • changenavpaneview03.jpg
    changenavpaneview03.jpg
    22.7 KB · Views: 138
There is a drop down at the top of your left hand menu, switch it to tables.
I did this... but when I switch it to TABLES view... the TRANSMITTAL form I need to work on does not appear
TablesView.jpg
 
You aren't gathering that you do not need the form. You need the table that is bound to the form. You should not be looking for the form you should be looking for the table that the form's RECORD SOURCE is based on.
 
You aren't gathering that you do not need the form. You need the table that is bound to the form. You should not be looking for the form you should be looking for the table that the form's RECORD SOURCE is based on.
Got it. The only thing I really needed clarification on I guess was what you just said right here. Thank you for your help.

-Dan
 
Got it. The only thing I really needed clarification on I guess was what you just said right here. Thank you for your help.

-Dan

So did you find out if the field size was set too small?
 

Users who are viewing this thread

Back
Top Bottom