Dim pDoc as Word.Document
Set pDoc = Documents.Open(FileName:="C:\.......txt",
Format:=wdOpenFormatText)
If that doesn't work with your file format, use
Set pDoc = Documents.Open(FileName:="C:\.......txt", _
Format:=FileConverters("[Format]").OpenFormat)
Where [Format] is whatever you select in the 'Files of type' list to open
your file if you're doing it manually.
Per said:
I want to import a DOS-file into Word 2000 with norwegian characters using
VBA Documents.Open.
Can anyone tell how.