Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Marilyn Marilyn is offline
external usenet poster
 
Posts: 110
Default Is there a Character Limit for Word 2007 Headers

Hello,
Is there a max number of characters set for footers in Word 2007. I have a
1 page document with a lot of information in the footer area and when I hit
enter on the last line I cant see anything that I'm typing. I have cleared
the formatting but I still cant see any new information being typed after
the last line.

Any Help is appreciated.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Is there a Character Limit for Word 2007 Headers

There is no limit for the header/footer per se; the header/footer will
expand downward/upward to accommodate as much text as you want to put in it.
If you're using one of the building blocks that contains content controls,
there may be a limit to the amount of text the CC can contain.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Marilyn" wrote in message
...
Hello,
Is there a max number of characters set for footers in Word 2007. I have
a
1 page document with a lot of information in the footer area and when I
hit
enter on the last line I cant see anything that I'm typing. I have
cleared
the formatting but I still cant see any new information being typed after
the last line.

Any Help is appreciated.


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey Greg Maxey is offline
external usenet poster
 
Posts: 264
Default Is there a Character Limit for Word 2007 Headers

On Nov 6, 12:51*pm, "Suzanne S. Barnhill" wrote:
There is no limit for the header/footer per se; the header/footer will
expand downward/upward to accommodate as much text as you want to put in it.
If you're using one of the building blocks that contains content controls,
there may be a limit to the amount of text the CC can contain.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org

"Marilyn" wrote in message

...



Hello,
Is there a max number of characters set for footers in Word 2007. *I have
a
1 page document with a lot of information in the footer area and when I
hit
enter on the last line I can’t see anything that I'm typing. *I have
cleared
the formatting but I still can’t see any new information being typed after
the last line.


Any Help is appreciated.- Hide quoted text -


- Show quoted text -


Ms Barnhill,

Nothing to indicate CC text is limited he

http://support.microsoft.com/default.aspx/kb/211489
  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Is there a Character Limit for Word 2007 Headers

But is it possible to impose a limit, as one can with text form fields?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Greg Maxey" wrote in message
...
On Nov 6, 12:51 pm, "Suzanne S. Barnhill" wrote:
There is no limit for the header/footer per se; the header/footer will
expand downward/upward to accommodate as much text as you want to put in
it.
If you're using one of the building blocks that contains content controls,
there may be a limit to the amount of text the CC can contain.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org

"Marilyn" wrote in message

...



Hello,
Is there a max number of characters set for footers in Word 2007. I have
a
1 page document with a lot of information in the footer area and when I
hit
enter on the last line I can’t see anything that I'm typing. I have
cleared
the formatting but I still can’t see any new information being typed
after
the last line.


Any Help is appreciated.- Hide quoted text -


- Show quoted text -


Ms Barnhill,

Nothing to indicate CC text is limited he

http://support.microsoft.com/default.aspx/kb/211489

  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey[_2_] Greg Maxey[_2_] is offline
external usenet poster
 
Posts: 668
Default Is there a Character Limit for Word 2007 Headers

Yes by using the OnExit event. However, while I didn't have any problem
today, this event has been plagued with a bug since Word2007 was released so
it may not be reliable:

Private Sub Document_ContentControlOnExit(ByVal ContentControl As
ContentControl, Cancel As Boolean)
If Len(ContentControl.Range.Text) 10 Then
Cancel = True
MsgBox "The limit for this CC is 10 characters"
End If
End Sub

The code above is very basic and as written limits the text length in "all"
CCs to 10.

AFAIK, there is no equivelant to form field "Maximum length" attribute.



Suzanne S. Barnhill wrote:
But is it possible to impose a limit, as one can with text form
fields?

"Greg Maxey" wrote in message
...
On Nov 6, 12:51 pm, "Suzanne S. Barnhill" wrote:
There is no limit for the header/footer per se; the header/footer
will expand downward/upward to accommodate as much text as you want
to put in it.
If you're using one of the building blocks that contains content
controls, there may be a limit to the amount of text the CC can
contain. --
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org

"Marilyn" wrote in message

...



Hello,
Is there a max number of characters set for footers in Word 2007. I
have a
1 page document with a lot of information in the footer area and
when I hit
enter on the last line I can’t see anything that I'm typing. I have
cleared
the formatting but I still can’t see any new information being typed
after
the last line.


Any Help is appreciated.- Hide quoted text -


- Show quoted text -


Ms Barnhill,

Nothing to indicate CC text is limited he

http://support.microsoft.com/default.aspx/kb/211489


--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Is there a Character Limit for Word 2007 Headers

Okay, so that can't be the issue in this case.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Greg Maxey" wrote in message
...
Yes by using the OnExit event. However, while I didn't have any problem
today, this event has been plagued with a bug since Word2007 was released
so it may not be reliable:

Private Sub Document_ContentControlOnExit(ByVal ContentControl As
ContentControl, Cancel As Boolean)
If Len(ContentControl.Range.Text) 10 Then
Cancel = True
MsgBox "The limit for this CC is 10 characters"
End If
End Sub

The code above is very basic and as written limits the text length in
"all" CCs to 10.

AFAIK, there is no equivelant to form field "Maximum length" attribute.



Suzanne S. Barnhill wrote:
But is it possible to impose a limit, as one can with text form
fields?

"Greg Maxey" wrote in message
...
On Nov 6, 12:51 pm, "Suzanne S. Barnhill" wrote:
There is no limit for the header/footer per se; the header/footer
will expand downward/upward to accommodate as much text as you want
to put in it.
If you're using one of the building blocks that contains content
controls, there may be a limit to the amount of text the CC can
contain. --
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org

"Marilyn" wrote in message

...



Hello,
Is there a max number of characters set for footers in Word 2007. I
have a
1 page document with a lot of information in the footer area and
when I hit
enter on the last line I can’t see anything that I'm typing. I have
cleared
the formatting but I still can’t see any new information being typed
after
the last line.

Any Help is appreciated.- Hide quoted text -

- Show quoted text -


Ms Barnhill,

Nothing to indicate CC text is limited he

http://support.microsoft.com/default.aspx/kb/211489


--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)




  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey Greg Maxey is offline
external usenet poster
 
Posts: 264
Default Is there a Character Limit for Word 2007 Headers

On Nov 6, 4:42*pm, "Suzanne S. Barnhill" wrote:
Okay, so that can't be the issue in this case.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org

"Greg Maxey" wrote in message

...



Yes by using the OnExit event. *However, while I didn't have any problem
today, this event has been plagued with a bug since Word2007 was released
so it may not be reliable:


Private Sub Document_ContentControlOnExit(ByVal ContentControl As
ContentControl, Cancel As Boolean)
If Len(ContentControl.Range.Text) 10 Then
*Cancel = True
*MsgBox "The limit for this CC is 10 characters"
End If
End Sub


The code above is very basic and as written limits the text length in
"all" CCs to 10.


AFAIK, there is no equivelant to form field "Maximum length" attribute.


Suzanne S. Barnhill wrote:
But is it possible to impose a limit, as one can with text form
fields?


"Greg Maxey" wrote in message
....
On Nov 6, 12:51 pm, "Suzanne S. Barnhill" wrote:
There is no limit for the header/footer per se; the header/footer
will expand downward/upward to accommodate as much text as you want
to put in it.
If you're using one of the building blocks that contains content
controls, there may be a limit to the amount of text the CC can
contain. --
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USAhttp://word.mvps.org


"Marilyn" wrote in message


...


Hello,
Is there a max number of characters set for footers in Word 2007. I
have a
1 page document with a lot of information in the footer area and
when I hit
enter on the last line I can’t see anything that I'm typing. I have
cleared
the formatting but I still can’t see any new information being typed
after
the last line.


Any Help is appreciated.- Hide quoted text -


- Show quoted text -


Ms Barnhill,


Nothing to indicate *CC text is limited he


http://support.microsoft.com/default.aspx/kb/211489


--
Greg Maxey


See my web sitehttp://gregmaxey.mvps.org
for an eclectic collection of Word Tips.


Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)- Hide quoted text -


- Show quoted text -


Yes. Roger that.
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
Word 2007 Fix for 255 Character Limit Suzanne Mailmerge 3 June 2nd 22 02:20 PM
Hyperlink character limit mohill Microsoft Word Help 8 February 2nd 06 12:38 AM
Character limit LMB New Users 4 December 2nd 05 01:35 PM
Word 2000 autocorrect or autotext character limit mhillig1 Microsoft Word Help 1 February 16th 05 09:59 PM
255 character limit in Word mail merge Gibson Mailmerge 1 December 7th 04 10:36 AM


All times are GMT +1. The time now is 11:11 AM.

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"