Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
mja mja is offline
external usenet poster
 
Posts: 6
Default Templates open in "Normal View" not "Print View"

I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved the
templates in Print View. Other templates open in "Print view" as expected.

How can I control how templates will open?


  #2   Report Post  
Posted to microsoft.public.word.docmanagement
mja mja is offline
external usenet poster
 
Posts: 6
Default Templates open in "Normal View" not "Print View"

Also I should add I'm using Word 2000 and Hotdocs 6.

Futhermore it also seems I cannot set the zoom. A template that's saved to
be 100% percent keeps opening at 150%. How do I set this?


"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved the
templates in Print View. Other templates open in "Print view" as expected.

How can I control how templates will open?



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
mja mja is offline
external usenet poster
 
Posts: 6
Default Templates open in "Normal View" not "Print View"

Also I should add I'm using Word 2000 and Hotdocs 6.

Futhermore it also seems I cannot set the zoom. A template that's saved to
be 100% percent keeps opening at 150%. How do I set this?


"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved the
templates in Print View. Other templates open in "Print view" as expected.

How can I control how templates will open?



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Templates open in "Normal View" not "Print View"

See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved the
templates in Print View. Other templates open in "Print view" as expected.

How can I control how templates will open?



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Templates open in "Normal View" not "Print View"


See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved the
templates in Print View. Other templates open in "Print view" as expected.

How can I control how templates will open?





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
mja mja is offline
external usenet poster
 
Posts: 6
Default Templates open in "Normal View" not "Print View"

Well, OK, thanks. Apparently I have to type a space or something and then
save the template file with the view and zoom I want. Then if I open the dot
file or make a doc from it, using Word, I get the right view and zoom.

But if I create a doc from Hotdocs, using the same templates, I don't get
the right view, but I do get the right zoom. So I guess there's some bug in
Hotdocs.

Some of the templates are opening in normal view and some in web view. It
drives me crazy.

It's not that I care, but all these lawyers think the formatting broke when
they see documents in 'normal view.'


"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved
the templates in Print View. Other templates open in "Print view" as
expected.

How can I control how templates will open?





  #7   Report Post  
Posted to microsoft.public.word.docmanagement
mja mja is offline
external usenet poster
 
Posts: 6
Default Templates open in "Normal View" not "Print View"


Well, OK, thanks. Apparently I have to type a space or something and then
save the template file with the view and zoom I want. Then if I open the dot
file or make a doc from it, using Word, I get the right view and zoom.

But if I create a doc from Hotdocs, using the same templates, I don't get
the right view, but I do get the right zoom. So I guess there's some bug in
Hotdocs.

Some of the templates are opening in normal view and some in web view. It
drives me crazy.

It's not that I care, but all these lawyers think the formatting broke when
they see documents in 'normal view.'


"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved
the templates in Print View. Other templates open in "Print view" as
expected.

How can I control how templates will open?





  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Templates open in "Normal View" not "Print View"

You can force any view with auto macros in the document template - The
following will set it to print view and 100% zoom. Add the macros to the
normal template and the settings will apply to all documents regardless of
what the document thinks it should be

Change the 100 to any preferred zoom level. If you want normal rather than
print layout view swap the apostrophe from the beginning of the line where
indicated to the other.

See http://www.gmayor.com/installing_macro.htm for more information and
installation instructions

Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

--

Graham Mayor - Word MVP

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



"mja" wrote in message
...
Well, OK, thanks. Apparently I have to type a space or something and then
save the template file with the view and zoom I want. Then if I open the
dot file or make a doc from it, using Word, I get the right view and zoom.

But if I create a doc from Hotdocs, using the same templates, I don't get
the right view, but I do get the right zoom. So I guess there's some bug
in Hotdocs.

Some of the templates are opening in normal view and some in web view. It
drives me crazy.

It's not that I care, but all these lawyers think the formatting broke
when they see documents in 'normal view.'


"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved
the templates in Print View. Other templates open in "Print view" as
expected.

How can I control how templates will open?







  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Templates open in "Normal View" not "Print View"

You can force any view with auto macros in the document template - The
following will set it to print view and 100% zoom. Add the macros to the
normal template and the settings will apply to all documents regardless of
what the document thinks it should be

Change the 100 to any preferred zoom level. If you want normal rather than
print layout view swap the apostrophe from the beginning of the line where
indicated to the other.

See http://www.gmayor.com/installing_macro.htm for more information and
installation instructions

Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
End Sub

--

Graham Mayor - Word MVP

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



"mja" wrote in message
...
Well, OK, thanks. Apparently I have to type a space or something and then
save the template file with the view and zoom I want. Then if I open the
dot file or make a doc from it, using Word, I get the right view and zoom.

But if I create a doc from Hotdocs, using the same templates, I don't get
the right view, but I do get the right zoom. So I guess there's some bug
in Hotdocs.

Some of the templates are opening in normal view and some in web view. It
drives me crazy.

It's not that I care, but all these lawyers think the formatting broke
when they see documents in 'normal view.'


"Suzanne S. Barnhill" wrote in message
...
See http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm

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

"mja" wrote in message
...
I have some Hotdocs Templates that I have developed. Some of them open in
"Normal View" and not "Print View." This happens even though I've saved
the templates in Print View. Other templates open in "Print view" as
expected.

How can I control how templates will open?







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
Why the "text box" does not show during "normal" page view? WorkingWithWord Page Layout 1 November 12th 08 09:01 PM
My "print view" keeps switching to "outline view" by itself! Kirsten[_2_] Page Layout 0 June 12th 08 07:34 PM
Where is "view header" and "view footer" in the idiotic new menus ocbizlaw Microsoft Word Help 6 October 9th 07 01:39 AM
Can I change the default view from "print layout" to "draft?" Dick DeManss Microsoft Word Help 4 April 23rd 07 04:42 AM
How do I get a Word document (Word2003) to open to "Normal" view? JElliott Microsoft Word Help 1 January 31st 06 06:10 PM


All times are GMT +1. The time now is 05:41 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"