If dll file not found or it deleted, then what your app show? "your app encountered a problem and needs to close" Remove this window with your exception.
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { Application.Run(new Form1()); } catch (Exception ex) { MessageBox.Show(ex.Message); } }