//Check files needed (Weather and Login Data) are available and runs the program if they are
 private static void FileCheckAndRun()
 {
     Weather.PopulateWeatherArrayLists();
     Weather.PopulateLoginArrayLists();
     Application.Run(new Login());
 }