A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Captions inside text box



 
 
Thread Tools Display Modes
  #1  
Old November 1st, 2007, 08:17 PM posted to microsoft.public.word.tables
Bobcat
external usenet poster
 
Posts: 14
Default Captions inside text box

Figure captions inside text box are not recognized when creating a Table of
Figures, including 'in line wrapping' style. I'm attempting to creating
floating photos with attached figure captions and then create a Table of
Figures.
How can I do that in Office 2003?
  #2  
Old November 1st, 2007, 08:45 PM posted to microsoft.public.word.tables
Jay Freedman
external usenet poster
 
Posts: 9,488
Default Captions inside text box

Bobcat wrote:
Figure captions inside text box are not recognized when creating a
Table of Figures, including 'in line wrapping' style. I'm attempting
to creating floating photos with attached figure captions and then
create a Table of Figures.
How can I do that in Office 2003?


Use frames instead of text boxes. (Text boxes are in Word's graphics layer,
which is invisible to the TOC/TOF mechanism. Frames, while they're
positionable like text boxes, are in the text layer.)

Existing text boxes can be converted to frames -- select the box, click
Format Text Box, go to the Text Box tab, and click Convert to Frame. Or you
can use a macro to convert them all in one shot:

Sub TBtoFrame()
Dim TB As Shape
For Each TB In ActiveDocument.Shapes
If TB.Type = msoTextBox Then
TB.ConvertToFrame
End If
Next
End Sub

New frames can be inserted from the button on the Forms toolbar (which you
can Alt+drag to any other toolbar for convenience). Or you can define a
paragraph style that includes a frame, which appears when you apply the
style to text.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:41 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.