View Single Post
  #2   Report Post  
Posted to microsoft.public.word.tables
Cooz
 
Posts: n/a
Default Freeze row height then put button to view entire cell

Hi Graham,

Yes, there is.
Place the following macro in your document:

Sub ViewAnswer()
Selection.Rows(1).HeightRule = wdRowHeightAuto
End Sub

You can do this by recording any macro in your document, choose Tools |
Macro Macro's - edit the macro and replace with the one above.

Add a column to your table. In every cell of this column, place the
following field:
{ MACROBUTTON ViewAnswer Doubleclick to view answer }
Be sure to insert the { } by pressing Ctrl-F9. Type the rest.

Whenever a user docubleclicks the Macrobutton field, the current row height
is set to auto fit.

Good luck,
Cooz
--
PS: If this is a satisfying answer to your question and you're logged in via
the Microsoft site, please click Yes to "Did this post answer the question?".
Thanks.


"Graham Smith 450-458-0101" wrote:

I am creating a script/questionaire that will be used by different people. I
would like to create a form Word Table where I could enter a question in one
cell then wrap the text in the answer cell, allow the person who is writing
the answer to use as man lines as they want but freeze the height of the
answer cell (to 3 lines) - THEN put a 'button' on/near the answer cell that
would allow someone viewing the completed questionaire to choose wether they
want to view the entire answer.... phew. I've got everything done (thanks to
the forum) except for the 'putting the button on/near the cell to view the
entire contents' part. I know I can just select the cell and go to row -
auto fit but is there another way.
Thanks