基本信息
源码名称:C# 合同管理系统源码
源码大小:1.27M
文件格式:.rar
开发语言:C#
更新时间:2018-02-06
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

winform ACCESS做的合同管理系统的示例;可以实现动态保存数据,防止系统崩溃时数据丢失。

 ds_Note = db_Contract.ExecuteDataSetReader(strSQL, "合同列表");
            if (ds_Note == null)
            {
                MessageBox.Show("连接服务器失败,请检查", "Error");
                return;
            }
            dt_xinxi = ds_Note.Tables[0];
            DataView dv_WeiYi = new DataView(dt_xinxi);
            dt_xinxiWeiYi = dv_WeiYi.ToTable(true, "建筑业态");
            for (int i = 0; i < dt_xinxiWeiYi.Rows.Count; i )
            {
                cb_YeTaiC.Items.Add(dt_xinxiWeiYi.Rows[i][0].ToString());
            }
            //SkinEngine skin = null;
            //skin = new SkinEngine();
            //skin.SkinAllForm = true;
            //skin.SkinFile = "Skins/XPBlue.ssk";
           
            //dataGridView1.Columns["消防报警指标"].DefaultCellStyle.BackColor = Color.DarkRed;
            //dataGridView1.Columns["消防报警指标"].DefaultCellStyle.SelectionBackColor = Color.DarkRed;
            //dataGridView1.Columns["消防报警指标"].DefaultCellStyle.SelectionForeColor = Color.Black;
            
            _thread = new Thread(new ParameterizedThreadStart(t => autosave()));
            //加载上次未保存信息
            DataRow[] rows = dt_xinxi.Select("保存状态='未保存'");
            if (rows.Length > 0)
            {
                tb_htNumber.Text = rows[0][1].ToString();
                tb_htName.Text = rows[0][3].ToString();
                tb_ZJSMoney.Text = rows[0][5].ToString();
                tb_ZJZSize.Text = rows[0][6].ToString();
                for (int i = 0; i < rows.Length; i )
                {
                    dataGridView1.Rows.Add();
                    dataGridView1.Rows[i].Cells["建筑业态"].Value = rows[i][8].ToString();
                    dataGridView1.Rows[i].Cells["建筑面积"].Value = rows[i][9].ToString();
                    dataGridView1.Rows[i].Cells["结算金额"].Value = rows[i][10].ToString();
                    dataGridView1.Rows[i].Cells["消防报警"].Value = rows[i][12].ToString();
                    dataGridView1.Rows[i].Cells["消防喷淋"].Value = rows[i][14].ToString();
                    dataGridView1.Rows[i].Cells["消防栓系统"].Value = rows[i][16].ToString();
                    dataGridView1.Rows[i].Cells["消防通风"].Value = rows[i][18].ToString();
                }
            }

void autosave() 
        {
            try
            {
                while (true)
                {
                    System.Threading.Thread.Sleep(30000);
                    string MySql = "";
                    int successYorN = -1;                  
                    MySql = "delete from 合同列表 where 保存状态='未保存'";
                    db_Contract.ExecuteNonQuery(MySql);

                    //保存主指标
                    if (dataGridView1.RowCount < 1)
                    {
                        this.Invoke((EventHandler)(delegate
                        {
                            // 这里写你的控件代码,比如
                            //str= target.SelectedText;
                            MySql =
                            string.Format(
                                @"insert into 合同列表(合同编号,签订时间,合同名称,专业,总计算金额,总建筑面积,招标,保存状态) values('{0}','{1}','{2}','{3}',{4},{5},{6},未保存)",
                                tb_htNumber.Text, tb_QDTime.Text, tb_htName.Text, cb_Major.Text,
                                checkFloat(tb_ZJSMoney.Text), checkFloat(tb_ZJZSize.Text),
                                checkFloat((tb_ZZhiBiao.Text).Replace(",", "")));
                        }
                        ));                       
                        db_Contract.ExecuteNonQuery(MySql);
                    }
                    else
                    {
                        for (int i = 0; i < dataGridView1.RowCount; i )
                        {
                            this.Invoke((EventHandler)(delegate
                            {
                                // 这里写你的控件代码,比如
                                //str= target.SelectedText;
                                MySql =
                                string.Format(
                                    @"insert into 合同列表(合同编号,签订时间,合同名称,专业,总计算金额,总建筑面积,招标,建筑业态,建筑面积,结算金额,指标,消防报警,消防报警指标,消防喷淋,消防喷淋指标,消防栓系统,消防栓系统指标,消防通风,消防通风指标,保存状态) values('{0}','{1}','{2}','{3}',{4},{5},{6},'{7}',{8},{9},{10},{11},{12},{13},{14},{15},{16},{17},{18},'未保存')",
                                    tb_htNumber.Text, tb_QDTime.Text, tb_htName.Text, cb_Major.Text,
                                    checkFloat(tb_ZJSMoney.Text), checkFloat(tb_ZJZSize.Text),
                                    checkFloat(tb_ZZhiBiao.Text.Replace(",", "")),
                                    Convert.ToString(dataGridView1.Rows[i].Cells["建筑业态"].Value),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["建筑面积"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["结算金额"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["指标"].Value).Replace(",", "")),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防报警"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防报警指标"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防喷淋"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防喷淋指标"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防栓系统"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防栓系统指标"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防通风"].Value)),
                                    checkFloat(Convert.ToString(dataGridView1.Rows[i].Cells["消防通风指标"].Value)));
                            }
                            ));                           
                           db_Contract.ExecuteNonQuery(MySql);
                        }
                    }
                }
            }
            catch { }
        }