Hi, Thanks to my superiors our office now stores files in a different directory-structure. All project related files, including dwgs, have moved to a new location. And I'm supposed to supervise the transfer for AutoCAD files. So far so good, I wrote a little app to re-attach xrefs (convert paths to relative paths). But... Our architects/designers use a lot of rasterimages in their drawings. I've looked at the AutoCAD VBA-Objectmodel, but there no such thing as a RasterImages collection. I tried to access them via a selectionset but a selectionset only returns selectable entities. And when am image is not loaded.... Does anyone have a sollution? Or am I condemned to open and check 10000+ drawings? See also code below. thanks in advance. Michel [code]Dim objIma As AcadRasterImage Dim SS As AcadSelectionSet Dim gpCode(0) As Integer Dim Filter(0) As Variant Dim i As Integer Dim objItem As ListItem On Error Resume Next Set SS = ThisDrawing.SelectionSets.Add("images") If Err.Number <> 0 Then ThisDrawing.SelectionSets("images").Delete Set SS = ThisDrawing.SelectionSets.Add("images") End If On Error GoTo 0 gpCode(0) = 0 Filter(0) = "image" SS.Select acSelectionSetAll, , , gpCode, Filter If SS.Count > 0 Then For i = 0 To SS.Count - 1 Set objIma = SS(i) Set objItem = formImages.lstvwImages.ListItems.Add(, , objIma.Name) objItem.SubItems(1) = objIma.ImageFile Next i End If SS.Delete[/code]