Posted 25 January 2022, 4:30 pm EST
Hello
I am using a C1List bound to a database table with “canned messages”. Two columns Description and Message. Like a key/value pair,
I need to be able to select a row and drag the text string from the message column to the text box. I have seen lots of examples like this
DragDrop.DoDragDrop(listbox1, listbox1.SelectedItem.ToString(), DragDropEffects.Copy);
from the windows listbox control but there is no selected item property available for me to get the data in row(s). How do I accomplish this with your control?