I have a Dataset that has several fields of which one is called Name and a corresponding field called Alias. Name is a unique field which is really Name & ID while Alias is only Name. ListView only displays Name.
I want to click on Alias and in some magical way be able to query on Name. All the data is available while populating the ListvLiew and could easily be collected (Public Array?) while populating the ListView.
I guess I could populate a second (hidden) ListView2 while ListView1 displays Alias while the query uses the corresponding Name in ListView2.
If anybody has a better solution or a hint it would be certainly be appreciated.