You can use the 'other textbox', if you are able to ensure that code will
run on this presentation (i.e. not for distribution).
Enable Macros on your presentation. Do step 1 from this page:
http://billdilworth.mvps.org/install_add-in.htm
Select your slide, then click View => Toolbars => Control Toolbox
From the pop-up list, select the textbox and draw this on your slide.
Double click on the new textbox (this should open the Visual Basic Editor
window)
Add this code:
Private Sub TextBox1_Change()
With TextBox1
If Len(.Text) > 10 Then
.Text = Left(.Text, 10)
.BackColor = vbRed
Else
.BackColor = vbWhite
End If
End With
End Sub
You can play with the text box properties to make the appearance correct.
In short, this code will check the length of the text in the textbox and if
it is too long, ignore the extra stuff and turn the background red. As long
as the text is an ok length, the background will be white.
I can send you a demo if you would like.
--
Bill Dilworth
Microsoft PPT MVP Team
Users helping fellow users.
===============
Please spend a few minutes checking vestprog2@
out
www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.
Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..