コード例 #1
0
 public GameBoardWindow(string airdate)
 {
     //Make this a random game
     InitializeComponent();
     DB          = new JCluesFunctions();
     CurrentGame = DB.LoadGame(Convert.ToDateTime(airdate));
     PopulateBoard(1);
 }
コード例 #2
0
        //Load
        public GameBoardWindow(int id)
        {
            InitializeComponent();
            DB = new JCluesFunctions();
            Scraper sc = new Scraper();

            CurrentGame = sc.Parse_Page(id);
            PopulateBoard(1);
        }
コード例 #3
0
        public GameBoardWindow()
        {
            //Make this a random game
            InitializeComponent();
            DB          = new JCluesFunctions();
            CurrentGame = DB.LoadGame(Convert.ToDateTime("9/6/2004 12:00:00 AM"));

            PopulateBoard(1);
        }
コード例 #4
0
        private void Commit_Pages()
        {
            string[]        paths = System.IO.Directory.GetFiles("downloaded_games/");
            JCluesFunctions DB    = new JCluesFunctions();

            Progress.Maximum = paths.Length;
            for (int i = 1; i < paths.Length; i++)
            {
                //DB.InsertGame(Parse_Page(i));
                Progress.Value++;
            }
        }
コード例 #5
0
        public DBSelection()
        {
            InitializeComponent();
            if (System.IO.File.Exists("./Jclues.mdf"))
            {
                JCluesFunctions DB       = new JCluesFunctions();
                DataTable       airdates = DB.LoadAirdates();;
                dataGrid.DataContext = airdates.DefaultView;
                this.Show();
            }
            else
            {
                string           messageBoxText = "Database not found please download and scrape from j-archives before using this option";
                string           caption        = "Database Not Found!";
                MessageBoxImage  icon           = MessageBoxImage.Warning;
                MessageBoxButton button         = MessageBoxButton.OK;
                MessageBox.Show(messageBoxText, caption, button, icon);
                MainMenu window = new MainMenu();
                this.Close();
                window.Show();
            }

            //dataGrid.SelectedItem = dataGrid.Items[0];
        }