Hi,
I use an input-form for entering data into a listview. I can open multiple input-forms
by selecting them in the listview and press a button called bbEdtNote. But input-forms
with the same name in the listview column "name" will not be shown.
Is there a code to ignore duplicate names so I can display input-forms with the same
name in the listview column "name".
This is the code I have to open multiple input-forms at once:
private void bbEdtNote_ItemClick(object sender, DevExpress,XtraBars.ItemClickEventArgs
e)
{
if (lvNotes.selectedItems.count == 0) return
foreach (ListViewItem lvi in this.lvNotes.SelectedItems)
{
OpenSticky(lvi)
}
Can PLEASE someone help me?
Greetings, Peter Kiers