R
Rob
Hi,
I'm trying to trim the extension from a file name. I have been able to get
the extension now I just need to get only the name. Here's what I have.
Dim Item As Object
Dim Atmt As Attachment
Dim fExt As String
Dim fName As String
For Each Atmt In Item.Attachments
fExt = Right(Atmt.FileName, 4) 'returns the .??? extension
fName =
Thanks Much.
Rob
I'm trying to trim the extension from a file name. I have been able to get
the extension now I just need to get only the name. Here's what I have.
Dim Item As Object
Dim Atmt As Attachment
Dim fExt As String
Dim fName As String
For Each Atmt In Item.Attachments
fExt = Right(Atmt.FileName, 4) 'returns the .??? extension
fName =
Thanks Much.
Rob