I get threadstateexception was unhandled
whenever I try to open a file dialogue.
I only get it when running Visual studio(2012) with Release setting, when I change back to Debug everything seems to work as intended.
The application crashed on the last line, ShowDialog();
What am I doing wrong? Is there an code error or are there some settings in VS I'm missing?
I have copied all subfiles I'm using from Debug to release it that matters. I've tried searching for this issue, but my Google-fu is lacking.
Some cropped Code:
[STAThread]
public static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
public static bool compareListViewWithFile(int listViewIndex)
{
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "Comma Separated Value files (.csv)|*.csv|All Files (*.*)|*.*";
openFileDialog1.FilterIndex = 1;
if (currentListView.Items == null || currentListView.Items.Count == 0)
{
openFileDialog1.Title = "Choose first file";
DialogResult userClickedOK = openFileDialog1.ShowDialog();
// etc
}
}