Hi Trent.
Thanks so much for the detailed explanation. That makes everything crystal clear. I will definitely be using the listview in the future
My philosophy is "if it ain't broke, don't fix it
But I will keep your exellent advice handy for the future.
Thanks again.
Just as an FYI, the only reason that I was going to use the listview was that it looked like it might be easier to put an image in the first column. Instead, I went to a DataGridView and added an unbound image column. I put this code in the BrowseDialogClosed() event handler and it worked just fine:
{
loRow.Cells[
}
The browse dialog is working just fine. I have the ListView set up as bound to the same BO that the browse dialog is populating. But listview does not get populated. The Requery() method wants to call a method on the BO to populate it but that BO has already been poulated by the browse dialog I just want to tell the listview to go populate itself from the BO that was populated by the browse dialog.
Thanks for trying to help.
Thanks!