Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / General PowerPoint Questions / September 2006

Tip: Looking for answers? Try searching our database.

Can you connect text boxes like you do in Publisher?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
momnotjon - 18 Sep 2006 07:01 GMT
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.
Luc - 18 Sep 2006 07:13 GMT
Momnotjon,
Not possible i'm afraid in PPT 2003.

Signature

Luc Sanders
(MVP - PowerPoint)

>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.
John Wilson - 18 Sep 2006 08:46 GMT
You cant but this vba might interest you. Select a
Signature


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

> 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.
John Wilson - 18 Sep 2006 08:49 GMT
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

Signature

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

> 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.

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.