Group:  Other Microsoft Office Products ยป microsoft.public.powerpoint
Thread: Can you connect text boxes like you do in Publisher?

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

Can you connect text boxes like you do in Publisher?
momnotjon 18.09.2006 06:01:02
I would like to know if you can connect different text boxes so the text will
flow from one to the next.

I want to connect text boxes on different slides.
Re: Can you connect text boxes like you do in Publisher?
"Luc" <notreal[ at ]pandora.be> 18.09.2006 06:13:36
Momnotjon,
Not possible i'm afraid in PPT 2003.

--
Luc Sanders
(MVP - PowerPoint)


"momnotjon" <momnotjon[ at ]discussions.microsoft.com> schreef in bericht
news:AD59F2DD-7144-42C2-B707-FC8A9F7239CA[ at ]microsoft.com...
[Quoted Text]
>I would like to know if you can connect different text boxes so the text
>will
> flow from one to the next.
>
> I want to connect text boxes on different slides.


RE: Can you connect text boxes like you do in Publisher?
John Wilson 18.09.2006 07:46:02
You cant but this vba might interest you. Select a
--

Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html


"momnotjon" wrote:

[Quoted Text]
> I would like to know if you can connect different text boxes so the text will
> flow from one to the next.
>
> I want to connect text boxes on different slides.
RE: Can you connect text boxes like you do in Publisher?
John Wilson 18.09.2006 07:49:01
Sorry I didnt mean to post that!

This vba cuts lines beyond 6 from a placeholder that is selected and pastes
it into a placeholder on the target slide. Note the traget slide must exist
and be a title + text layout. This is pretty bare bones code and if you know
vba you can maybe play with it.

Sub linecut()
Dim imaxlines As Integer
Dim itarget As Integer
imaxlines = 6 'change the value if needed
itarget = InputBox("Target slide?")
On Error GoTo Err

With ActiveWindow.Selection.ShapeRange.TextFrame.TextRange
..Copy
..Lines(imaxlines + 1, .Lines.Count).Delete
End With
With
ActivePresentation.Slides(itarget).Shapes.Placeholders(2).TextFrame.TextRange
..Paste
..Lines(1, imaxlines).Delete
End With

Exit Sub
Err:
MsgBox ("Error, is anything selected?")
End Sub

--

Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html


"momnotjon" wrote:

[Quoted Text]
> I would like to know if you can connect different text boxes so the text will
> flow from one to the next.
>
> I want to connect text boxes on different slides.

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net