I have a ListBox that's tied in with a Dialog.FileBrowse action. Basically, the Dialog.FileBrowse action just adds strings to the ListBox, each time that a file-selection is made:
eg.
C:\example1.txt
C:\example2.txt
C:\example3.txt
I need to get a value returned, to determine if the same string gets added twice. I can get a value returned okay, if the same string is added twice in a row, or sequentially ...
eg.
C:\example1.txt
C:\example1.txt
but how do I get a value returned if the string not added sequentially?
eg.
C:\example1.txt
C:\example2.txt
C:\example1.txt
In other words, how would I get a value returned on the fact that C:\example1.txt has been added a second time, but a little later in the game?![]()

Reply With Quote
