private void SynchroGoodInfo_Click(object sender, EventArgs e) { if (!m_bIsStartFresh) { MessageBox.Show("请先启动线程!"); return; } if (DataContrl.GetAccCount() < 1) { MessageBox.Show("请先导入帐号!"); return; } string strShow = string.Format("此操作将会对未同步过的账号进行商品同步,完成后需要重启程序,要执行吗?"); if (DialogResult.OK != MessageBox.Show(strShow, "询问", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)) { return; } //同步商品信息 //开始同步商品信息,只对未同步过的账号进行同步 DataContrl.InitSynAccount(); }
private void btnModifyPrice_Click(object sender, EventArgs e) { if (!m_bIsStartFresh) { MessageBox.Show("请先启动线程!"); return; } if (DataContrl.GetAccCount() < 1) { MessageBox.Show("请先导入帐号!"); return; } int iCount = DataContrl.GetModifyCount(); if (iCount > 0) { MessageBox.Show("正在修改中,请等待修改完后再执行此操作!"); return; } //添加 DataContrl.InitModifyAccount(); }