Hi All - I am using this code to print all items from a listbox that come from searching multiple files for a string. Once the listbox populates, I have an image load that goes with the search. How can I include the image with what prints out?
Code:
Private Sub PrintList_Click()
With ThisWorkbook.Sheets("listbox")
For i = 0 To Me.ListBox1.ListCount - 1
.Cells(i + 1, "A").Value = Me.ListBox1.Column(0, i)
Next i
.PrintOut
End With
Sheets("listbox").Cells.ClearContents
End Sub