Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Cranky[_2_] Cranky[_2_] is offline
external usenet poster
 
Posts: 16
Default Bullet points in template text form fields

Morning

Is there any way to allow users to bullet point items in a text form
field within a locked template? (Word 2000) For that matter, to allow
users to use italics and bold as well...?

Thanks in advance

Steve
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Bullet points in template text form fields

Only by using a macro that unlocks the form, applies the setting and locks
it again.
eg for Italics

Dim bProtected As Boolean
'Unprotect the file
If ActiveDocument.ProtectionType wdNoProtection Then
bProtected = True
ActiveDocument.Unprotect Password:=""
End If
Selection.Font.Italic = wdToggle
'Reprotect the document.
If bProtected = True Then
ActiveDocument.Protect _
Type:=wdAllowOnlyFormFields, NoReset:=True, Password:=""
End If


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Cranky wrote:
Morning

Is there any way to allow users to bullet point items in a text form
field within a locked template? (Word 2000) For that matter, to allow
users to use italics and bold as well...?

Thanks in advance

Steve



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Cranky[_2_] Cranky[_2_] is offline
external usenet poster
 
Posts: 16
Default Bullet points in template text form fields

Graham Mayor wrote:
Only by using a macro that unlocks the form, applies the setting and locks
it again.
eg for Italics

Dim bProtected As Boolean
'Unprotect the file
If ActiveDocument.ProtectionType wdNoProtection Then
bProtected = True
ActiveDocument.Unprotect Password:=""
End If
Selection.Font.Italic = wdToggle
'Reprotect the document.
If bProtected = True Then
ActiveDocument.Protect _
Type:=wdAllowOnlyFormFields, NoReset:=True, Password:=""
End If


Ah, that'd create problems with the software utilising Word. Ah well.
Thanks Graham.
Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I convert Word bullet points to plain text? mikeTrust Microsoft Word Help 3 June 1st 07 08:33 AM
Can you link text form fields within a Word 2003 template? Bacon Microsoft Word Help 4 October 16th 06 04:20 PM
Add bullet points to TOC JethroUK Microsoft Word Help 3 March 2nd 06 02:36 PM
Bullet Points Karen Microsoft Word Help 2 December 5th 05 09:51 PM
Bullet points. TwoTonTed Microsoft Word Help 5 December 1st 04 11:08 AM


All times are GMT +1. The time now is 12:03 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"