日期:2014-05-18 浏览次数:21142 次
 private void Master_FormClosing(object sender, FormClosingEventArgs e)
        {
            int n = int.Parse(MyClass.Dlookup("select count(*) from  stock where Stock.ISUpload=0"));
            if (n > 0)
            {
                if (MessageBox.Show("数据上传未完成,是否一定要退出程序", "Confirm Message", MessageBoxButtons.OKCancel) == DialogResult.OK)
                {
                    isRunning = false;
                    this.Dispose();
                }
                else
                {
                }
                
            }
            else
            {
                isRunning = false;
                this.Dispose();
            }
        }