Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
mustang mustang is offline
external usenet poster
 
Posts: 15
Default 2003 Form fields losing formatting in 2007

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx, all
form fields revert to Times New Roman font but if they are opened as a .doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default 2003 Form fields losing formatting in 2007

This doesn't make any sense. Documents always open in the format in which
they are saved. What *exactly* are you doing?

--

Graham Mayor - Word MVP

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




"Mustang" wrote in message
...
Hi there,

I have some forms, created in Word 2003, which when opened as a .docx, all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default 2003 Form fields losing formatting in 2007

This doesn't make any sense. Documents always open in the format in which
they are saved. What *exactly* are you doing?

--

Graham Mayor - Word MVP

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




"Mustang" wrote in message
...
Hi there,

I have some forms, created in Word 2003, which when opened as a .docx, all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
mustang mustang is offline
external usenet poster
 
Posts: 15
Default 2003 Form fields losing formatting in 2007

Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx, all
form fields revert to Times New Roman font but if they are opened as a .doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.

  #5   Report Post  
Posted to microsoft.public.word.docmanagement
mustang mustang is offline
external usenet poster
 
Posts: 15
Default 2003 Form fields losing formatting in 2007

Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx, all
form fields revert to Times New Roman font but if they are opened as a .doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default 2003 Form fields losing formatting in 2007

Fields? What sort of fields? Is the surrounding text OK? If it is, the
following macro may fix it. Run the macro on the opened template and choose
the option to add the charformat switch then save it with a new name.

Sub ChangeSwitch()
Dim oRng As Range
Dim iFld As Integer
Dim strChoice As String
strChoice = MsgBox("Replace Mergeformat switch with Charformat switch?" _
& vbCr & "Click 'No' to remove formatting switch completely", _
vbYesNoCancel, "Replace Formatting Switch")
If strChoice = vbCancel Then GoTo UserCancelled
If strChoice = vbNo Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
.Code.Text = Replace(.Code.Text, " \* MERGEFORMAT", "")
.Code.Text = Replace(.Code.Text, " \* CHARFORMAT", "")
End If
End With
Next iFld
End If
If strChoice = vbYes Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
If InStr(1, .Code, "MERGEFORMAT") 0 Then
.Code.Text = Replace(.Code.Text, "MERGE", "CHAR")
End If
If InStr(1, .Code, "CHARFORMAT") = 0 Then
.Code.Text = .Code.Text & "\* CHARFORMAT "
End If
.Update
End If
End With
Next iFld
End If
Exit Sub
UserCancelled:
MsgBox "User Cancelled", vbInformation, "Replace Formatting Switch"
End Sub

http://www.gmayor.com/installing_macro.htm

Could you send me one of the errant templates in Word 2003 and 2007 formats
so that I can see where the problem lies and investigate a solution to fix
it?
Use the link on the home page of my web site.

--

Graham Mayor - Word MVP

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



"Mustang" wrote in message
...
Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx,
all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default 2003 Form fields losing formatting in 2007

Fields? What sort of fields? Is the surrounding text OK? If it is, the
following macro may fix it. Run the macro on the opened template and choose
the option to add the charformat switch then save it with a new name.

Sub ChangeSwitch()
Dim oRng As Range
Dim iFld As Integer
Dim strChoice As String
strChoice = MsgBox("Replace Mergeformat switch with Charformat switch?" _
& vbCr & "Click 'No' to remove formatting switch completely", _
vbYesNoCancel, "Replace Formatting Switch")
If strChoice = vbCancel Then GoTo UserCancelled
If strChoice = vbNo Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
.Code.Text = Replace(.Code.Text, " \* MERGEFORMAT", "")
.Code.Text = Replace(.Code.Text, " \* CHARFORMAT", "")
End If
End With
Next iFld
End If
If strChoice = vbYes Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
If InStr(1, .Code, "MERGEFORMAT") 0 Then
.Code.Text = Replace(.Code.Text, "MERGE", "CHAR")
End If
If InStr(1, .Code, "CHARFORMAT") = 0 Then
.Code.Text = .Code.Text & "\* CHARFORMAT "
End If
.Update
End If
End With
Next iFld
End If
Exit Sub
UserCancelled:
MsgBox "User Cancelled", vbInformation, "Replace Formatting Switch"
End Sub

http://www.gmayor.com/installing_macro.htm

Could you send me one of the errant templates in Word 2003 and 2007 formats
so that I can see where the problem lies and investigate a solution to fix
it?
Use the link on the home page of my web site.

--

Graham Mayor - Word MVP

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



"Mustang" wrote in message
...
Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx,
all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



  #8   Report Post  
Posted to microsoft.public.word.docmanagement
mustang mustang is offline
external usenet poster
 
Posts: 15
Default 2003 Form fields losing formatting in 2007

Thank you very much.

This worked and we also tried just applying styles and this worked also. We
found that the Normal style was not set up correctly. Still not sure why we
didnt run into this in the previous version but everyone is happy now it is
all fixed.

Thanks very much for your time

"Graham Mayor" wrote:

Fields? What sort of fields? Is the surrounding text OK? If it is, the
following macro may fix it. Run the macro on the opened template and choose
the option to add the charformat switch then save it with a new name.

Sub ChangeSwitch()
Dim oRng As Range
Dim iFld As Integer
Dim strChoice As String
strChoice = MsgBox("Replace Mergeformat switch with Charformat switch?" _
& vbCr & "Click 'No' to remove formatting switch completely", _
vbYesNoCancel, "Replace Formatting Switch")
If strChoice = vbCancel Then GoTo UserCancelled
If strChoice = vbNo Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
.Code.Text = Replace(.Code.Text, " \* MERGEFORMAT", "")
.Code.Text = Replace(.Code.Text, " \* CHARFORMAT", "")
End If
End With
Next iFld
End If
If strChoice = vbYes Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
If InStr(1, .Code, "MERGEFORMAT") 0 Then
.Code.Text = Replace(.Code.Text, "MERGE", "CHAR")
End If
If InStr(1, .Code, "CHARFORMAT") = 0 Then
.Code.Text = .Code.Text & "\* CHARFORMAT "
End If
.Update
End If
End With
Next iFld
End If
Exit Sub
UserCancelled:
MsgBox "User Cancelled", vbInformation, "Replace Formatting Switch"
End Sub

http://www.gmayor.com/installing_macro.htm

Could you send me one of the errant templates in Word 2003 and 2007 formats
so that I can see where the problem lies and investigate a solution to fix
it?
Use the link on the home page of my web site.

--

Graham Mayor - Word MVP

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



"Mustang" wrote in message
...
Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx,
all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



.

  #9   Report Post  
Posted to microsoft.public.word.docmanagement
mustang mustang is offline
external usenet poster
 
Posts: 15
Default 2003 Form fields losing formatting in 2007

Thank you very much.

This worked and we also tried just applying styles and this worked also. We
found that the Normal style was not set up correctly. Still not sure why we
didnt run into this in the previous version but everyone is happy now it is
all fixed.

Thanks very much for your time

"Graham Mayor" wrote:

Fields? What sort of fields? Is the surrounding text OK? If it is, the
following macro may fix it. Run the macro on the opened template and choose
the option to add the charformat switch then save it with a new name.

Sub ChangeSwitch()
Dim oRng As Range
Dim iFld As Integer
Dim strChoice As String
strChoice = MsgBox("Replace Mergeformat switch with Charformat switch?" _
& vbCr & "Click 'No' to remove formatting switch completely", _
vbYesNoCancel, "Replace Formatting Switch")
If strChoice = vbCancel Then GoTo UserCancelled
If strChoice = vbNo Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
.Code.Text = Replace(.Code.Text, " \* MERGEFORMAT", "")
.Code.Text = Replace(.Code.Text, " \* CHARFORMAT", "")
End If
End With
Next iFld
End If
If strChoice = vbYes Then
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type wdFieldFormCheckBox And _
.Type wdFieldFormDropDown And _
.Type wdFieldFormTextInput Then
If InStr(1, .Code, "MERGEFORMAT") 0 Then
.Code.Text = Replace(.Code.Text, "MERGE", "CHAR")
End If
If InStr(1, .Code, "CHARFORMAT") = 0 Then
.Code.Text = .Code.Text & "\* CHARFORMAT "
End If
.Update
End If
End With
Next iFld
End If
Exit Sub
UserCancelled:
MsgBox "User Cancelled", vbInformation, "Replace Formatting Switch"
End Sub

http://www.gmayor.com/installing_macro.htm

Could you send me one of the errant templates in Word 2003 and 2007 formats
so that I can see where the problem lies and investigate a solution to fix
it?
Use the link on the home page of my web site.

--

Graham Mayor - Word MVP

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



"Mustang" wrote in message
...
Sorry didnt explain myself very well. My team saved some of our 2003
templates as 2007 templates (no changes were made except file format) and
when we create documents from the dotx template, our fields which were
previously Arial are now Times New Roman.

It could be something we have done inadvertantly.

Thanks

"Mustang" wrote:

Hi there,

I have some forms, created in Word 2003, which when opened as a .docx,
all
form fields revert to Times New Roman font but if they are opened as a
.doc,
they are in the correct font of Arial.

Anyone got any ideas why and how I can fix this?

Thanks very much.



.

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 losing formatting Jo Page Layout 1 May 12th 08 06:51 PM
How do I mail merge a form without losing the form fields when me. TGM Mailmerge 1 May 30th 06 12:11 PM
How do I use a form then mailmerge without losing the form fields Someone who's stuck Mailmerge 1 June 23rd 05 10:01 AM
Losing formatting in Form Fields in Word 2003 Andy Tables 1 April 12th 05 03:58 PM
Losing check boxes form fields when saving as a web page. joshua Microsoft Word Help 1 April 9th 05 05:31 PM


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

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

About Us

"It's about Microsoft Word"