ErrorLogger _logger = new ErrorLogger(); // The logger for this classs

        public HomeForm()                        // The initial start up Constructor
        {
            InitializeComponent();
            this.Icon = Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
            DBMaster dbMaster = new DBMaster();

            dbMaster.GetDBNames(); //  This method sets all the Database names required for the application to work
            InitialConditions();   //Sets all the conditions (Mainly Display Conditions)
        }