Hello,
I am trying to make a template. There will be 2 stationary frames for text
and one linked frame for overflow to another page. I have already linked the
2 frames. The first one is on page 1 and the second one is on page 2. That
all works fine. But if there is overflow from page 2 I know I need to make a
page 3 and link that frame to page 2. But what if there is no text overflow
to page 3.....will it print a blank page? How do I make it so it knows to
automatically overflow (if necessary)?
|
|
0
|
|
|
|
Reply
|
Utf
|
12/19/2009 8:11:01 PM |
|
Set up the document with the third page containing a text box that is linked
to that on page 2 and use a macro containing the following code to print the
document:
Dim LastPage As String
With ActiveDocument
With .Shapes(2).TextFrame
If .Overflowing = True Then
LastPage = "3"
Else
LastPage = "2"
End If
End With
.PrintOut Range:=wdPrintFromTo, From:="1", To:=LastPage
End With
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"MRupel" <MRupel@discussions.microsoft.com> wrote in message
news:AB1C74DA-6448-4A97-B7DD-148C762AEC7E@microsoft.com...
> Hello,
>
> I am trying to make a template. There will be 2 stationary frames for
> text
> and one linked frame for overflow to another page. I have already linked
> the
> 2 frames. The first one is on page 1 and the second one is on page 2.
> That
> all works fine. But if there is overflow from page 2 I know I need to
> make a
> page 3 and link that frame to page 2. But what if there is no text
> overflow
> to page 3.....will it print a blank page? How do I make it so it knows to
> automatically overflow (if necessary)?
|
|
0
|
|
|
|
Reply
|
Doug
|
12/19/2009 9:45:51 PM
|
|
Thank you Doug! Haven't tried it yet but I'm working on it. Something else came to mind.... When the text overflows to the new page I need for the other 2 stationary fields to be on the newly created page. Not only for printing reasons but also for data entry reasons. Any thoughts?
|
|
0
|
|
|
|
Reply
|
MRupel
|
12/19/2009 11:02:24 PM
|
|
You could have an empty paragraph before the first textbox to which you add
a bookmark (say "Box1") and then if the .Overflowing property of the second
textbox is true, format that paragraph in that bookmark so that it has a
page break before it, using:
Dim LastPage As String
With ActiveDocument
With .Shapes(1).TextFrame
If .Overflowing = True Then
LastPage = "2"
Else
LastPage = "1"
End If
End With
If LastPage = "2" Then
.Bookmarks("Box1").Range.ParagraphFormat.PageBreakBefore = True
End If
.PrintOut Range:=wdPrintFromTo, From:="1", To:=LastPage
End With
MsgBox LastPage
You may want to reduce the size of the linespacing for the paragraph to
which the bookmark is applied to the minimum so that the empty paragraph
doesn't screw up the layout any more than cannot be avoided.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"MRupel" <user@msgroups.net/> wrote in message
news:u4NFV9PgKHA.1460@TK2MSFTNGP06.phx.gbl...
> Thank you Doug! Haven't tried it yet but I'm working on it. Something
> else came to mind.... When the text overflows to the new page I need for
> the other 2 stationary fields to be on the newly created page. Not only
> for printing reasons but also for data entry reasons. Any thoughts?
>
>
> ---
> frmsrcurl:
> http://msgroups.net/microsoft.public.word.docmanagement/linking-frames-for-text-overflow
|
|
0
|
|
|
|
Reply
|
Doug
|
12/19/2009 11:19:23 PM
|
|
Also, I was trying to do this with Word 97 or something and I saved it .doc and .txt but neither would retain the formatting. So I am going to use Word 2000. Will the Word 2000 document open in Word 2007?
|
|
0
|
|
|
|
Reply
|
MRupel
|
12/20/2009 12:17:17 AM
|
|
I am not sure too what formatting you are referring. regular Word
formatting would be retained if a document was saved as a Word document
(.doc); it will not be retained if the document is saved as a text file
(.txt).
Word 2007 will open Word 97 - 2003 documents in compatibility mode.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"MRupel" <user@msgroups.net/> wrote in message
news:#IcbLnQgKHA.2104@TK2MSFTNGP05.phx.gbl...
> Also, I was trying to do this with Word 97 or something and I saved it
> .doc and .txt but neither would retain the formatting. So I am going to
> use Word 2000. Will the Word 2000 document open in Word 2007?
>
> ---
> frmsrcurl:
> http://msgroups.net/microsoft.public.word.docmanagement/linking-frames-for-text-overflow
|
|
0
|
|
|
|
Reply
|
Doug
|
12/20/2009 3:47:48 AM
|
|
Hi Doug,
Thank you so much for your help. I've been trying to make a one page
template where there are three areas for text input. The problem I'm having
is: if there is more text than just the first page I need it to create a
second or third page with the 3 areas. How can I do this?
|
|
0
|
|
|
|
Reply
|
Utf
|
12/20/2009 6:35:01 PM
|
|
Is this question related to something different from that in respect of
which I have provided the previous responses. If so, maybe you should not
be using text boxes.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"MRupel" <MRupel@discussions.microsoft.com> wrote in message
news:0933631C-701E-45EB-A981-07D8830D3EA5@microsoft.com...
> Hi Doug,
>
> Thank you so much for your help. I've been trying to make a one page
> template where there are three areas for text input. The problem I'm
> having
> is: if there is more text than just the first page I need it to create a
> second or third page with the 3 areas. How can I do this?
|
|
0
|
|
|
|
Reply
|
Doug
|
12/20/2009 7:39:13 PM
|
|
This is actually one and the same....if not text boxes then what ?
|
|
0
|
|
|
|
Reply
|
Utf
|
12/20/2009 7:53:01 PM
|
|
Any thoughts? Anyone?
|
|
0
|
|
|
|
Reply
|
Utf
|
12/21/2009 1:02:01 AM
|
|
Did not the information that I posted for your previously do what you want?
--
Hope this helps,
Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.
"MRupel" <MRupel@discussions.microsoft.com> wrote in message
news:119A5A8E-8A82-453E-BA02-9647E45EA10C@microsoft.com...
> This is actually one and the same....if not text boxes then what ?
|
|
0
|
|
|
|
Reply
|
Doug
|
12/21/2009 3:15:14 AM
|
|
It seems that the "box1" is inside the main content area instead of above it.
I also need a "box2" to generate below the main content area. Any thoughts?
|
|
0
|
|
|
|
Reply
|
Utf
|
12/21/2009 5:47:01 PM
|
|
No problem.....thank you so much for your help.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/21/2009 9:00:02 PM
|
|
|
12 Replies
877 Views
(page loaded in 0.208 seconds)
Similiar Articles: linking frames for text overflow - microsoft.public.word ...Hello, I am trying to make a template. There will be 2 stationary frames for text and one linked frame for overflow to another page. I have alr... How does text overflow work on added pages? - microsoft.public ...linking frames for text overflow - microsoft.public.word ... How does text overflow work on added pages? - microsoft.public ... linking frames for text overflow ... Adding and Linking Dates to Another Field - microsoft.public ...linking frames for text overflow - microsoft.public.word ... Adding and Linking Dates to Another Field - microsoft.public ... Linked Tables - adding field and getting ... Error 6 Overflow - microsoft.public.vb.general.discussion ...linking frames for text overflow - microsoft.public.word ... MP3v2 Tag Reader Writer and I am getting Error 6 Overflow ... 12 - 1) As Byte ' write the frame ... Place existing text into SmartArt automatically?? - microsoft ...linking frames for text overflow - microsoft.public.word ... How do I make it so it knows to automatically overflow (if ... Text Frames, UWEC If you position the icon over ... Problem printing Word doc with links to other Word files: only 1st ...linking frames for text overflow - microsoft.public.word ..... for the other 2 stationary fields to be on the newly created page. Not only for printing ... if the ... how do I surpress the printout of an empty field and its label ...linking frames for text overflow - microsoft.public.word ... how do I surpress the printout of an empty field and its label ... linking frames for text overflow ... how do I flow text box to second page? - microsoft.public.word ...linking frames for text overflow - microsoft.public.word ..... is more text than just the first page I need it to create a > second or third page with the 3 areas. Style Separator Used in a Frame (MS Word 2007) - microsoft.public ...Word 2007 will open Word 97 - 2003 ... field code - microsoft.public.word.vba ... Link Pivot Tables on one filter ... frames for text overflow - Microsoft Office Word ... GetScrollPos etc. & IE8 - microsoft.public.vb.general ...linking frames for text overflow - microsoft.public.word ... GetScrollPos etc. & IE8 - microsoft.public.vb.general ... (Watch out for frames and IFRAMES, though. symbolic link not working via share ? - microsoft.public.windows ...I have a shared folder on a win2008 server, which has several folders and files which are read for domain users, and also a symbolic link to another... Snapshot of screen - microsoft.public.vb.general.discussion ...... Metafile, Microsoft Symbolic Link, Native, Object Descriptor, ObjectLink, OEM Text ... speaking: *time*), do not overflow ... contents of these shorter time-frames ... Overlay one form on top of another? - microsoft.public.access ...linking frames for text overflow - microsoft.public.word ... Overlay one form on top of another? - microsoft.public.access ... Try this link: http://www.microsoft.com ... linking frames for text overflow - microsoft.public.word ...Hello, I am trying to make a template. There will be 2 stationary frames for text and one linked frame for overflow to another page. I have alr... linking frames for text overflow - Microsoft Office Word Forum ...Microsoft Word Help ... Hello, I am trying to make a template. There will be 2 stationary frames for text and ... Set up the document with the third page containing a ... On the Move to InDesign: Linking Two Text Frames | CreativePro.com... discovered that in InDesign all you have to do is click the link box or overflow symbol in the first frame and then click the second frame! The text automatically links ... About Text Frame Overflows in Office 2010Programmatically Working with Shapes in Office 2010: Learn how text overflow is handled in a text frame in Microsoft Excel 2010. Text Frames in Scribus | Linux JournalTo connect frames in this way, select the frame with the overflow text ... which frame is used first, or which the text flows into. Because of this lack, when linking frames ... InDesign CS3: Working with Text Frames, UWECIf you position the icon over a pre-existing text frame, the Place icon turns into a Link icon. To place the text, click once Any overflow text is placed into the new frame ... How to Calculate Text Overflow in OpenOffice | eHow.comCheck the box next to "Follow text flow" and click "OK." To link more frames with text overflow, click the first framed text box to select it. Click the "Link Frames ... Scribus Video Tutorials - Scribus WikiText frames, polygons, linking text frames and polygons, text overflow. Measure for Measure. Creating text frames, polygons (with a star shape) linking text from a text frame ... Publisher 2003: Working with Linked Text Boxes, UWECGo to Previous Frame: additional text in a previous text box: Text in Overflow: additional text not ... Select the text box with text in overflow. Click CREATE TEXT BOX LINK Your ... CSS - text-overflow - QuirksMode - for all your browser quirksThe text-overflow declaration allows you to deal with clipped text: that is, text that does not fit into its box. The ellipsis value causes three periods to be ... 7/23/2012 12:50:21 AM
|