// 関連情報を取得する. private void downloadLatestDBZipToolStripMenuItem_Click_1(object sender, EventArgs e) { if (threadCheck() == true) return; if (TDCGExplorer.DownloadArcNamesZipFromServer() == true) { TDCGExplorer.GetArcNamesZipInfo(); } else { MessageBox.Show(TextResource.HttpError, TextResource.DownloadCaption, MessageBoxButtons.OK); return; } if (TDCGExplorer.DownloadTagNamesZipFromServer() == true) { TDCGExplorer.GetTagNamesZipInfo(); DisplayDB(); } else { MessageBox.Show(TextResource.HttpError, TextResource.DownloadCaption, MessageBoxButtons.OK); return; } DisplayDB(); MessageBox.Show(TextResource.SuccessModRefServer, TextResource.DownloadCaption, MessageBoxButtons.OK); }