Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout,microsoft.public.word.programming,microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Doug Robbins - Word MVP wrote:
Why do you need to use that type of textbox? We are sending out a word document to different users with certain topics where they can write a few paragraphs about it. We are using a Textbox as the widget where they can write about the topics. We expect users will not write more than N number of words for each topic, but in case they do, we want the textbox to increase in size so that they can see the entire text they have written without scrolling and ensure we can print the entire text when they send the document back to us, if we wish to, without having to copy the text from the textbox to a different document. Is there another way to achieve what we want? Any suggestions would be appreciated. "s" wrote in message ... I added a Textbox to a Word 2007 document by going to the Developer option(in the File menu), then chose Design Mode, then Legacy Tools-Text box Field. The MultiLine and Enterkey properties are set to True and the rest are default. The textbox is of size so that it can take some 10 rows of lines. Is there a feature I can choose/set so that when more than 10 rows of lines are entered the text box will automatically expand? The rows need to increase so the textbox needs to expand downwards to accommodate the text more than 10 lines. Can someone please advise if there is an inbuilt way/feature to do it in Word 2007 or do I have to use some VBA code to do that? I set the AutoSize to true, but when I go out of the Design mode and try entering text, the Textbox shrinks to a size which can hold only one character per line. |
#2
![]()
Posted to microsoft.public.word.docmanagement,microsoft.public.word.newusers,microsoft.public.word.pagelayout,microsoft.public.word.programming
|
|||
|
|||
![]()
Use a table, 1 row, 1 column.
Set the table properties, advanced, so that the width will not resize. Then the table can expand in height as someone types into it. It you need to protect the document and use a form field, use the Legacy Field / tools, and insert a plain old text form field. -- Frank H Rockford, IL "s" wrote: Doug Robbins - Word MVP wrote: Why do you need to use that type of textbox? We are sending out a word document to different users with certain topics where they can write a few paragraphs about it. We are using a Textbox as the widget where they can write about the topics. We expect users will not write more than N number of words for each topic, but in case they do, we want the textbox to increase in size so that they can see the entire text they have written without scrolling and ensure we can print the entire text when they send the document back to us, if we wish to, without having to copy the text from the textbox to a different document. Is there another way to achieve what we want? Any suggestions would be appreciated. "s" wrote in message ... I added a Textbox to a Word 2007 document by going to the Developer option(in the File menu), then chose Design Mode, then Legacy Tools-Text box Field. The MultiLine and Enterkey properties are set to True and the rest are default. The textbox is of size so that it can take some 10 rows of lines. Is there a feature I can choose/set so that when more than 10 rows of lines are entered the text box will automatically expand? The rows need to increase so the textbox needs to expand downwards to accommodate the text more than 10 lines. Can someone please advise if there is an inbuilt way/feature to do it in Word 2007 or do I have to use some VBA code to do that? I set the AutoSize to true, but when I go out of the Design mode and try entering text, the Textbox shrinks to a size which can hold only one character per line. . |
#3
![]()
Posted to microsoft.public.word.docmanagement,microsoft.public.word.newusers,microsoft.public.word.pagelayout,microsoft.public.word.programming
|
|||
|
|||
![]()
Frank H wrote:
Use a table, 1 row, 1 column. Set the table properties, advanced, so that the width will not resize. Then the table can expand in height as someone types into it. It you need to protect the document and use a form field, use the Legacy Field / tools, and insert a plain old text form field. I did that. The only problem is if excess text is typed in one row (which is more than the page width) it does not go into the next row, which is what we want. Frank H Rockford, IL Thanks for the suggestion. |
#4
![]()
Posted to microsoft.public.word.docmanagement,microsoft.public.word.newusers,microsoft.public.word.pagelayout,microsoft.public.word.programming
|
|||
|
|||
![]()
If you set the cell option to wrap the text then wrap it will.
If users can ignore the limits of the fixed space that you have provided, then there doesn't seem a lot of point having a box layout in which to enter text. You may as well simply insert a text form field in the body of the document. You can print the content of the field simply enough with a macro eg Sub PrintField() With ActiveDocument .FormFields("Text1").Select .PrintOut Range:=wdPrintSelection End With End Sub or you can extract the content of fields to another document or data file - http://www.gmayor.com/ExtractDataFromForms.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org s wrote: Frank H wrote: Use a table, 1 row, 1 column. Set the table properties, advanced, so that the width will not resize. Then the table can expand in height as someone types into it. It you need to protect the document and use a form field, use the Legacy Field / tools, and insert a plain old text form field. I did that. The only problem is if excess text is typed in one row (which is more than the page width) it does not go into the next row, which is what we want. Frank H Rockford, IL Thanks for the suggestion. |
#5
![]()
Posted to microsoft.public.word.docmanagement,microsoft.public.word.newusers,microsoft.public.word.pagelayout,microsoft.public.word.programming
|
|||
|
|||
![]()
Graham Mayor wrote:
If you set the cell option to wrap the text then wrap it will. That did it. Thanks for the suggestion. If users can ignore the limits of the fixed space that you have provided, then there doesn't seem a lot of point having a box layout in which to enter text. You may as well simply insert a text form field in the body of the document. You can print the content of the field simply enough with a macro eg Sub PrintField() With ActiveDocument .FormFields("Text1").Select .PrintOut Range:=wdPrintSelection End With End Sub or you can extract the content of fields to another document or data file - http://www.gmayor.com/ExtractDataFromForms.htm Thanks for that information also. Frank H wrote: Use a table, 1 row, 1 column. Set the table properties, advanced, so that the width will not resize. Then the table can expand in height as someone types into it. It you need to protect the document and use a form field, use the Legacy Field / tools, and insert a plain old text form field. I did that. The only problem is if excess text is typed in one row (which is more than the page width) it does not go into the next row, which is what we want. Frank H Rockford, IL Thanks for the suggestion. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
making textbox to be auto sizable | New Users | |||
making textbox to be auto sizable | Page Layout | |||
making textbox to be auto sizable in Word 2007 | Microsoft Word Help | |||
How do I jump from textbox to textbox within a page? | Microsoft Word Help | |||
Making an Auto Text entry | Microsoft Word Help |