Пример #1
0
        private void Btn_CharacterUpdate_Click(object sender, EventArgs e)
        {
            Thread th = new Thread(new ThreadStart(() =>
            {
                DBDownloader.InfoDownload("characters");
            }));

            th.Start();
        }
Пример #2
0
        private void Btn_ArtistUpdate_Click(object sender, EventArgs e)
        {
            Thread th = new Thread(new ThreadStart(() =>
            {
                DBDownloader.InfoDownload("artists");
            }));

            th.Start();
        }
Пример #3
0
        private void Btn_DBUpdate_Click(object sender, EventArgs e)
        {
            Thread th = new Thread(new ThreadStart(() =>
            {
                DBDownloader.DBDownload();
            }));

            th.Start();
        }