Preview Type Window (Form)
-
Hi all, I have an application that cycles through Directories and finds Duplicate Image files (By Name). It shows the original file name (FileInfo.Name) and the possible Duplicate (FileInfo.FullName) in the a CheckedListBox container on the form What I want to do next is create a MouseHover Event that will show a form a bit like a tooltip with a preview of both Pictures in it. I suppose I have a few questions. 1. Is a CheckedListBox the best solution for this to show the data? As the code runs through I store them in a List which I then convert to an Array and AddRange onto the container. 2. What is the best way to get the preview to come up? I want it to dissapear as the user moves from one ListItem to another. The other issue is how can I get the MouseHover event to tell me which index I am on so I can retrieve the file paths to the imagine. Suggestions greatly appreciated, and pointing to other online info that could me also greatly appreciated. Regards /TH