void LoadFile()
        {
            General.CheckForExitsFile(Application.StartupPath + "//" + FirmsP);
            General.CheckForExitsFile(Application.StartupPath + "//" + StocksP);
            General.CheckForExitsFile(Application.StartupPath + "//" + BState);
            General.CheckForExitsFile(Application.StartupPath + "//" + EState);
            General.CheckForExitsFile(Application.StartupPath + "//" + CState);
            General.CheckForExitsFile(Application.StartupPath + "//" + CPState);

            if (General.CheckIsFileNull(BState))
            {
                General.WriteToFileValue(BState, 0, false);
            }

            if (General.CheckIsFileNull(EState))
            {
                General.WriteToFileValue(EState, 0, false);
            }

            if (General.CheckIsFileNull(CState))
            {
                General.WriteToFileValue(CState, 0, false);
            }

            if (General.CheckIsFileNull(CPState))
            {
                General.WriteToFileValue(CPState, 0, false);
            }

            General.CheckForExitsDirectory(Application.StartupPath + "//CounterpartyAgentsList//");
            General.CheckForExitsDirectory(Application.StartupPath + "//Report//");

            /*General.CheckForExitsFile(WorkersSalaryDataFilePath);
             * General.CheckForExitsFile(FoodDataFilePath);
             * General.CheckForExitsFile(FirmDataFilePath);
             * General.CheckForExitsFile(FuelDataFilePath);
             * General.CheckForExitsFile(ResultsDataFilePath);
             * General.CheckForExitsFile(CashDataFilePath);
             * General.CheckForExitsFile(RelDataFilePath);
             * General.CheckForExitsFile(Shop0DataFilePath);
             * General.CheckForExitsFile(Shop1DataFilePath);
             * General.CheckForExitsFile(CounterpartyDataFilePath);
             * General.CheckForExitsFile(RawMatDataFilePath);
             * General.CheckForExitsFile(RawMat0DataFilePath);
             * General.CheckForExitsFile(CounterpartySPASDataFilePath);
             * General.CheckForExitsFile(CounterpartyEndOfDataFilePath);
             * General.CheckForExitsFile(TransportDataFilePath);
             */
        }