I'm working on an rather small application (C#, winform) that is kind of front-end to MS Access database file stored on shared drive. While it is possible that drive could be down I am checking connection while loading Main Form.
I would like to know your opinions on how to deal with this problem.
I came up with ideas like:
- Application shows only MessageBox with an error message and close itself (before actually showing up), as it won't be useful at all.
- Application load itself and then display an error-message to not make users confused (if they click warning before reading the explanation).
What are yours best practices?