For some reason, after my SaveFileDialog, my application will never show a MessageBox. Is there something I'm missing? Or is this a problem with threads?
I run the application as a Windows Form application using VS 2010 Express.
I have no exceptions.
To add: When I look at the code, everything seems to be going well. Which is strange, so I think this is a problem of time.
Indicated by LarsTech and others, MessageBoxes do appear, however the focus is gone; in other words, the MessageBox is being squeezed out of other windows or minimized. This is problem.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.Globalization; using System.IO; namespace SpeedDating { class Program { [STAThread] static void Main(string[] args) { string filename = "test.test";
Robotrock
source share