MS Office Forum / Word / Mailmerge and Fax / June 2005
merge with txt file need translation
|
|
Thread rating:  |
Totoro - 16 Jun 2005 15:50 GMT Hi, I'm working with soft who extract data in a txt file and launch word and merge with this data txt file. This Txt file contain some accentuated caracters. everything is ok with Word 2000 but with Word 2002, only in particular conditions, word automaticaly translate this file in japanese code so the result of the merge is unreadable. It seems like it happend with particular group of accentuated caracters because I have some extract file with accentuated caracters correctly opened without translation. In a other way, I have a txt file word wants to translate, I try to manually operate the merge, word ask for translation, I cut this txt file in some little txt files containing less than 9 records ... word never ask to translate any of them ...
Any Ideas ??
thx a lot
 Signature A++ Laurent
"Tu sais que tu es comme le H de Hawaï ?" "s't'a dire ?" "Tu sers à rien, ch't'ai cassssééééé là !!"
Peter Jamieson - 17 Jun 2005 13:14 GMT If you can create a text file that uses Unicode UTF-8 format, with a suitable Unicode Byte Order Marker (BOM) , I /think/ Word will recognise the file correctly, but it may still pop up an encoding dialog box.
The only other approach I know that /may/ solve this is to use some form of automation to convert the source into a format that does work. For example, use Word automation to open the file and save it as a Word document, then use that as the data source for your merge. In this case you can specify the encoding when you open the file.
If you convert to a Word .doc file, you may encounter performance problems and (possibly) restrictions on the column count. But otherwise, that is probably the best option.
To do the conversion, you need a simple macro, but you might need to do more to cope with different file names and so on.
E.g.
Sub ConvertToUTF8() ' convert to a UTF8 format text file
' Needs error checking etc. Dim oDoc as Word.Document
' change msoEncodingWestern to be the encoding you need. I think this should work.
Set oDoc = Documents.Open("the path name of the file you need to convert.txt", _ False, , False, , , , , , _ wdOpenFormatEncodedText, _ msoEncodingWestern, _ False, False, , True)
' Several of the parameters here are optional or ' irrelevant - you can probably remove the lines from ' ReadOnlyRecommended to SaveAsAOCLetter
oDoc.SaveAs _ FileName:="the path name of the file to convert to.txt", _ FileFormat:=wdFormatUnicodeText, _ AddToRecentFiles:=False, _ ReadOnlyRecommended:=False, _ EmbedTrueTypeFonts:=False, _ SaveNativePictureFormat:=False, _ SaveFormsData:=False, _ SaveAsAOCLetter:=False, _ Encoding:=msoEncodingUTF8, _ InsertLineBreaks:=False, _ AllowSubstitutions:=False, _ LineEnding:=wdCRLF
oDoc.Close Savechanges:=False Set oDoc = Nothing End Sub
or
Sub ConvertToWord() ' convert to a Word document file
' Needs error checking etc. Dim oDoc as Word.Document
' change msoEncodingWestern to be the encoding you need. I think this should work.
Set oDoc = Documents.Open("the path name of the file you need to convert.txt", _ False, , False, , , , , , _ wdOpenFormatEncodedText, _ msoEncodingWestern, _ False, False, , True)
' Several of the parameters here are optional or ' irrelevant - you can probably remove the lines from ' ReadOnlyRecommended to Encoding
oDoc.SaveAs _ FileName:="the path name of the file to convert to.doc", _ FileFormat:=wdFormatDocument, _ AddToRecentFiles:=False, _ ReadOnlyRecommended:=False, _ EmbedTrueTypeFonts:=False, _ SaveNativePictureFormat:=False, _ SaveFormsData:=False, _ SaveAsAOCLetter:=False, _ Encoding:=msoEncodingUTF8, _ InsertLineBreaks:=False, _ AllowSubstitutions:=False, _ LineEnding:=wdCRLF
oDoc.Close Savechanges:=False Set oDoc = Nothing End Sub
 Signature Peter Jamieson
> Hi, > I'm working with soft who extract data in a txt file and launch word and [quoted text clipped - 13 lines] > > thx a lot Totoro - 20 Jun 2005 09:56 GMT thx a lot for reply
i will try to force convertion in unicode format before opening word.
 Signature A++ Laurent
-Le Mordor Gandalf, c'est à droite ou à gauche? - A gauche.
Totoro - 22 Jun 2005 10:43 GMT Totoro a utilisé son clavier pour écrire :
> thx a lot for reply > > i will try to force convertion in unicode format before opening word. Ok, I force file conversion in UNICODE format before launching word , and now, Word is launching, the data files is attached and opened correctly with word 2000, 2002, 2003.
 Signature A++ Laurent
In the Navy, yes, you can sail the seven seas. In the Navy, yes, you can put your mind at ease. In the Navy, come on now people, make a stand. In the Navy, can't you see we need a hand. In the Navy, come on, protect the motherland. In the Navy, come on and join your fellow, man. In the Navy, come on, people, and make a stand. In the Navy, in the Navy.
Peter Jamieson - 22 Jun 2005 18:12 GMT OK, thanks for the feedback.
Peter Jamieson
> Totoro a utilisé son clavier pour écrire : >> thx a lot for reply [quoted text clipped - 4 lines] > now, Word is launching, the data files is attached and opened correctly > with word 2000, 2002, 2003. bilisa - 23 Jun 2005 11:38 GMT How did you do that. I have the same problem I think..
> Totoro a utilisé son clavier pour écrire : > > thx a lot for reply [quoted text clipped - 4 lines] > and now, Word is launching, the data files is attached and opened > correctly with word 2000, 2002, 2003.
|
|
|