THank you guys for your help.
I have been able to edit the code and it does pull in the values correctly now.
I read somewhere that with the report view, the image was optional, thats why I did not included it after the date.
I removed the area in red and it worked fine.
As I said before. I am pretty fluent in VBA, but getting into VB im a bit lost in some places. Especially in the area of talking back and forth to the server. You'll be seeing alot of me! Thanks again!Code:Do While Not oRS.EOF Set lvwItem = ListView1.ListItems.Add(, , oRS.Fields.Item("Date_Entered").Value, "mm/dd/yyy")) lvwItem.SubItems(1) = oRS.Fields.Item("Loan_Number").Value lvwItem.SubItems(2) = Format(oRS.Fields.Item("Investor").Value) lvwItem.SubItems(3) = oRS.Fields.Item("State").Value lvwItem.SubItems(4) = Format(oRS.Fields.Item("Doc_Type").Value) oRS.MoveNext Loop




Reply With Quote