MSDN won't let me "bump" so I need to make a new thread, my question wasn't answered.
I was asking how to make every item in a combobox point to a different .exe file and I got this answer:
"You could store the path to the EXEs in the .Tag property of each item. Then, if you wanted to start that EXE:
Process.Start(Item.Tag)"
But I have 2 questions:
1. Does this mean in the String Editor I would type
TheItemToGoInTheCombobox.D:\Programs\program.exe
The2ndItemToGoInTheCombobox.D:\Programs\program2.exe
2. Where would I put "Process.Start(Item.Tag)"?