' Change the FileAs field to contain the CompanyName followed by the 
    FullName of the Contact
    Set CurFolder = Application.ActiveExplorer.CurrentFolder
    Set AllItems = CurFolder.Items
    NumItems = CurFolder.Items.Count
    MsgBox "Changing FileAs to Company & FullName: " & NumItems
    'Loop through all of the items in the folder
    For I = 1 to NumItems
    Set CurItem = AllItems.Item(I)
    ' Test to see if the Message Class needs to be changed
    If CurItem.FileAs <> CurItem.CompanyName Then
    ' Change the Message Class
    CurItem.FileAs = CurItem.CompanyName & ", " & CurItem.FullName
    ' Save the changed item
    CurItem.Save
    'msgBox I &" " &CurItem.FileAs
    End If
    Next
    MsgBox "Done."
    End Sub