In my program I open a new SQL connection like so:
SqlCeConnection con = new SqlCeConnection(conString);
con.Open();
I can't quite work out when it stopped working, but now, whenever I debug, the program ignores everything past the first line. For example, if I put a breakpoint on "con.Open();" then the breakpoint is not processed - the form is shown as if nothing has happened.
However, if I have a button on the form, it will fire any of those events without hassle.
If more details are required, let me know, and thanks for helping!