I have a table where I am reading three columns refNo, product, short description. based on the product, description pairing i pass the refno through. I am using a input dialog to display dict.Keys.ToArray where the product is the key, and it passes the associated refno. I would like to display in the drop down “product” + “short description”.
i.e. refno is 2, product is 100001, short description is Widget Name, I’d want the dropdown to show amongst the other options 100001 Widget Name. Because I can’t memorize all product numbers.
Like I said, it’s easy for me to do this with just a dictionary with one key and one value as strings but how would one do this if they had a dictionary with two keys and one value?