Thanks for the reply there. I was able to understand part of what you meant and used the following line to get the dialog box to add text to the first column in the list view.
CODE
fileinfoViewer.Items.Add(openSingleFile.FileName);
The problem I have now encountered is that this does not just add the name of the file but the path to the file as well so it adds:
C:\New Folder\TestImport.doc
When all I want to add is:
TestImport.doc
I've tried using all sorts of things as well like:
CODE
string fileNameOnly = System.IO.Path.GetFileName(openSingleFile);
fileinfoViewer.Items.Add(fileNameOnly);
I can't get anything at all to work though, I just keep getting error/debug messages no matter what I try. This is only the start of my problems as well!
Anything at all to point me in the right direction would be a great help!