This is my code to select multiple rows and it works. But when i use the search bar the selected rows un-select themselves
//Enabling multiple row selection
dataGridViewCompanies.MultiSelect = true;
dataGridViewCompanies.SelectionMode = GridViewSelectionMode.FullRowSelect;
Any tips on how to keep the selected rows after i search so i can select as many as i want!
Thanks