LuisE,
I think what I've got between the lines below might do what you want.
_____________________________________
Sub MyTextSave()
With Dialogs(wdDialogFileSaveAs)
.Format = wdFormatDOSText
.Name = ActiveDocument.Path & "\" & ActiveDocument.Name
If .Display Then
myFileName = WordBasic.FileNameInfo(.Name, 1)
End If
End With
If Len(myFileName) > 1 Then
If Not Right(myFileName, 4) = ".txt" Then
myFileName = myFileName & ".txt"
End If
ActiveDocument.SaveAs myFileName, wdFormatDOSText
ActiveDocument.Close wdSaveChanges
End If
If Application.Documents.Count < 1 Then
Application.Quit
End If
End Sub
________________________________________
You can certainly open Notepad.exe and load a specific text file from an
office application using Shell. You can also create a text file using the
Scripting.FileSystemObject object without involving Notepad. I doubt you
really want or need Notepad opened but perhaps you could explain a bit more
about what you want your users to input and what the final outcome should
be.
Steve Yandl