I've migrated a .Net legacy .Net project from .Net 1.1 to .Net 3.5 and when I try and run it I'm getting the following error:
Cross-thread operation not valid: Control 'grpLogin' accessed from a thread other than the thread it was created on.
When the a thread (Which I assume is not the UI thread) changes the enabled property of a button to true.
I reckon something changed in the framework to add this restriction, is there a way to make this work without overhauling the entire app?
Can I make VS (I'm using VS 2008)run the App as .Net 1.1 (I'm not even sure that this is the problem)
The application is merely a test application for an API which I've been told to reverse engineer, so and I don't really have the bandwidth to fix all it's issues. I know it worked previously but I don't have an old version of VS installed so I had to convert it over to VS 2008.