I currently have a macro(written for MS Word) which inserts a selected file
from a directory.

[VBA]Sub GeneralUsertextClauses()
With Dialogs(wdDialogInsertFile)
.name = varUSERTEXT
.Show
End With
End Sub [/VBA]

varusertext is referenced as follows:
Global Const varUSERTEXT As String = "w:\zzword97\usertext\"

How can I ensure that the selected file isn't an attachment when used with
Outlook but is just inserted into the body of the text (word is my editor)?