driftx0
driftx0
CC#
Created by driftx0 on 4/14/2024 in #help
ListView control not updating with data in Windows Forms application
some data from database using class called Search
8 replies
CC#
Created by driftx0 on 4/14/2024 in #help
ListView control not updating with data in Windows Forms application
if (Program.DataListView.InvokeRequired) { Program.DataListView.Invoke(new MethodInvoker(delegate { Program.UpdateDataListView(AdvancedDataListResult); })); } else { Program.UpdateDataListView(AdvancedDataListResult); }
8 replies
CC#
Created by driftx0 on 4/14/2024 in #help
ListView control not updating with data in Windows Forms application
I'm already do invoke like this but nothing change
8 replies