I am having trouble stopping debug mode within my mobile app using VS2008 in .net 2.0 mode. I am following MS best practtices as to how forms should be loaded using ShowDialog. Once a particualr form of mine is loaded and then I click the stop debugging button the app stays open (freezes) and then I need to do a soft reset on the device. This is how I am opening the form:
frmLimnology frm = new frmLimnology(Si te, true);
frm.Owner = this;
frm.ShowDialog( );
Anyone run into something similar?
thanks
frmLimnology frm = new frmLimnology(Si te, true);
frm.Owner = this;
frm.ShowDialog( );
Anyone run into something similar?
thanks
Comment