I\'m trying to populate a listview from another class, but I\'m geting this error:
\" Cross-thread operation not valid: Control \'listView1\' accessed from a thread other than t
You are trying to update the GUI thread from you background thread. You will need to use Invoke on the control you would like to update. You can check the InvokeRequired property on that control to see whether or not you will need to use Invoke to update the control