AccountSetting.cs
上传用户:hjieqiu
上传日期:2013-05-11
资源大小:16494k
文件大小:22k
源码类别:

企业管理

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data.SqlClient;
  7. namespace 财务管理系统
  8. {
  9. /// <summary>
  10. /// AccountSetting 的摘要说明。
  11. /// </summary>
  12. public class AccountSetting : System.Windows.Forms.Form
  13. {
  14. private 财务管理系统.DataSet2 dataSet21;
  15. private System.Data.SqlClient.SqlCommand sqlSelectCommand2;
  16. private System.Windows.Forms.DataGrid dataGrid1;
  17. private System.Windows.Forms.DataGrid dataGrid2;
  18. private System.Data.SqlClient.SqlDataAdapter da1;
  19. private System.Data.SqlClient.SqlDataAdapter da2;
  20. private System.Windows.Forms.Button btnNewAccount;
  21. private System.Windows.Forms.Button btnUseAccount;
  22. private System.Windows.Forms.Button btnBalance;
  23. private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
  24. private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
  25. private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
  26. private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
  27. private System.Windows.Forms.DataGridTableStyle dataGridTableStyle1;
  28. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn1;
  29. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn2;
  30. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn3;
  31. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn4;
  32. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn5;
  33. private System.Windows.Forms.DataGridTextBoxColumn dataGridTextBoxColumn6;
  34. private System.Data.SqlClient.SqlConnection sqlConnection1;
  35. /// <summary>
  36. /// 必需的设计器变量。
  37. /// </summary>
  38. private System.ComponentModel.Container components = null;
  39. public AccountSetting()
  40. {
  41. //
  42. // Windows 窗体设计器支持所必需的
  43. //
  44. InitializeComponent();
  45. //
  46. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  47. //
  48. }
  49. /// <summary>
  50. /// 清理所有正在使用的资源。
  51. /// </summary>
  52. protected override void Dispose( bool disposing )
  53. {
  54. if( disposing )
  55. {
  56. if(components != null)
  57. {
  58. components.Dispose();
  59. }
  60. }
  61. base.Dispose( disposing );
  62. }
  63. #region Windows 窗体设计器生成的代码
  64. /// <summary>
  65. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  66. /// 此方法的内容。
  67. /// </summary>
  68. private void InitializeComponent()
  69. {
  70. System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AccountSetting));
  71. this.da1 = new System.Data.SqlClient.SqlDataAdapter();
  72. this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
  73. this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
  74. this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
  75. this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
  76. this.dataSet21 = new 财务管理系统.DataSet2();
  77. this.da2 = new System.Data.SqlClient.SqlDataAdapter();
  78. this.sqlSelectCommand2 = new System.Data.SqlClient.SqlCommand();
  79. this.dataGrid1 = new System.Windows.Forms.DataGrid();
  80. this.dataGridTableStyle1 = new System.Windows.Forms.DataGridTableStyle();
  81. this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
  82. this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
  83. this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
  84. this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
  85. this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
  86. this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
  87. this.dataGrid2 = new System.Windows.Forms.DataGrid();
  88. this.btnNewAccount = new System.Windows.Forms.Button();
  89. this.btnUseAccount = new System.Windows.Forms.Button();
  90. this.btnBalance = new System.Windows.Forms.Button();
  91. this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
  92. ((System.ComponentModel.ISupportInitialize)(this.dataSet21)).BeginInit();
  93. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
  94. ((System.ComponentModel.ISupportInitialize)(this.dataGrid2)).BeginInit();
  95. this.SuspendLayout();
  96. // 
  97. // da1
  98. // 
  99. this.da1.DeleteCommand = this.sqlDeleteCommand1;
  100. this.da1.InsertCommand = this.sqlInsertCommand1;
  101. this.da1.SelectCommand = this.sqlSelectCommand1;
  102. this.da1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
  103.   new System.Data.Common.DataTableMapping("Table", "帐簿初始化表", new System.Data.Common.DataColumnMapping[] {
  104. new System.Data.Common.DataColumnMapping("科目代码", "科目代码"),
  105. new System.Data.Common.DataColumnMapping("科目名称", "科目名称"),
  106. new System.Data.Common.DataColumnMapping("累计借方", "累计借方"),
  107. new System.Data.Common.DataColumnMapping("累计贷方", "累计贷方"),
  108. new System.Data.Common.DataColumnMapping("期初余额", "期初余额"),
  109. new System.Data.Common.DataColumnMapping("余额方向", "余额方向")})});
  110. this.da1.UpdateCommand = this.sqlUpdateCommand1;
  111. // 
  112. // sqlDeleteCommand1
  113. // 
  114. this.sqlDeleteCommand1.CommandText = @"DELETE FROM 帐簿初始化表 WHERE (科目代码 = @Original_科目代码) AND (余额方向 = @Original_余额方向 OR @Original_余额方向 IS NULL AND 余额方向 IS NULL) AND (期初余额 = @Original_期初余额 OR @Original_期初余额 IS NULL AND 期初余额 IS NULL) AND (科目名称 = @Original_科目名称 OR @Original_科目名称 IS NULL AND 科目名称 IS NULL) AND (累计借方 = @Original_累计借方 OR @Original_累计借方 IS NULL AND 累计借方 IS NULL) AND (累计贷方 = @Original_累计贷方 OR @Original_累计贷方 IS NULL AND 累计贷方 IS NULL)";
  115. this.sqlDeleteCommand1.Connection = this.sqlConnection1;
  116. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_科目代码", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "科目代码", System.Data.DataRowVersion.Original, null));
  117. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_余额方向", System.Data.SqlDbType.VarChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "余额方向", System.Data.DataRowVersion.Original, null));
  118. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期初余额", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期初余额", System.Data.DataRowVersion.Original, null));
  119. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_科目名称", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "科目名称", System.Data.DataRowVersion.Original, null));
  120. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_累计借方", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "累计借方", System.Data.DataRowVersion.Original, null));
  121. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_累计贷方", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "累计贷方", System.Data.DataRowVersion.Original, null));
  122. // 
  123. // sqlInsertCommand1
  124. // 
  125. this.sqlInsertCommand1.CommandText = "INSERT INTO 帐簿初始化表(科目代码, 科目名称, 累计借方, 累计贷方, 期初余额, 余额方向) VALUES (@科目代码, @科目名称, @累计借" +
  126. "方, @累计贷方, @期初余额, @余额方向); SELECT 科目代码, 科目名称, 累计借方, 累计贷方, 期初余额, 余额方向 FROM 帐簿初始化表 W" +
  127. "HERE (科目代码 = @科目代码)";
  128. this.sqlInsertCommand1.Connection = this.sqlConnection1;
  129. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@科目代码", System.Data.SqlDbType.VarChar, 20, "科目代码"));
  130. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@科目名称", System.Data.SqlDbType.VarChar, 20, "科目名称"));
  131. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@累计借方", System.Data.SqlDbType.Money, 8, "累计借方"));
  132. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@累计贷方", System.Data.SqlDbType.Money, 8, "累计贷方"));
  133. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期初余额", System.Data.SqlDbType.Money, 8, "期初余额"));
  134. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@余额方向", System.Data.SqlDbType.VarChar, 4, "余额方向"));
  135. // 
  136. // sqlSelectCommand1
  137. // 
  138. this.sqlSelectCommand1.CommandText = "SELECT 科目代码, 科目名称, 累计借方, 累计贷方, 期初余额, 余额方向 FROM 帐簿初始化表";
  139. this.sqlSelectCommand1.Connection = this.sqlConnection1;
  140. // 
  141. // sqlUpdateCommand1
  142. // 
  143. this.sqlUpdateCommand1.CommandText = @"UPDATE 帐簿初始化表 SET 科目代码 = @科目代码, 科目名称 = @科目名称, 累计借方 = @累计借方, 累计贷方 = @累计贷方, 期初余额 = @期初余额, 余额方向 = @余额方向 WHERE (科目代码 = @Original_科目代码) AND (余额方向 = @Original_余额方向 OR @Original_余额方向 IS NULL AND 余额方向 IS NULL) AND (期初余额 = @Original_期初余额 OR @Original_期初余额 IS NULL AND 期初余额 IS NULL) AND (科目名称 = @Original_科目名称 OR @Original_科目名称 IS NULL AND 科目名称 IS NULL) AND (累计借方 = @Original_累计借方 OR @Original_累计借方 IS NULL AND 累计借方 IS NULL) AND (累计贷方 = @Original_累计贷方 OR @Original_累计贷方 IS NULL AND 累计贷方 IS NULL); SELECT 科目代码, 科目名称, 累计借方, 累计贷方, 期初余额, 余额方向 FROM 帐簿初始化表 WHERE (科目代码 = @科目代码)";
  144. this.sqlUpdateCommand1.Connection = this.sqlConnection1;
  145. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@科目代码", System.Data.SqlDbType.VarChar, 20, "科目代码"));
  146. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@科目名称", System.Data.SqlDbType.VarChar, 20, "科目名称"));
  147. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@累计借方", System.Data.SqlDbType.Money, 8, "累计借方"));
  148. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@累计贷方", System.Data.SqlDbType.Money, 8, "累计贷方"));
  149. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期初余额", System.Data.SqlDbType.Money, 8, "期初余额"));
  150. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@余额方向", System.Data.SqlDbType.VarChar, 4, "余额方向"));
  151. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_科目代码", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "科目代码", System.Data.DataRowVersion.Original, null));
  152. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_余额方向", System.Data.SqlDbType.VarChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "余额方向", System.Data.DataRowVersion.Original, null));
  153. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期初余额", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期初余额", System.Data.DataRowVersion.Original, null));
  154. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_科目名称", System.Data.SqlDbType.VarChar, 20, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "科目名称", System.Data.DataRowVersion.Original, null));
  155. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_累计借方", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "累计借方", System.Data.DataRowVersion.Original, null));
  156. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_累计贷方", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "累计贷方", System.Data.DataRowVersion.Original, null));
  157. // 
  158. // dataSet21
  159. // 
  160. this.dataSet21.DataSetName = "DataSet2";
  161. this.dataSet21.Locale = new System.Globalization.CultureInfo("zh-CN");
  162. // 
  163. // da2
  164. // 
  165. this.da2.SelectCommand = this.sqlSelectCommand2;
  166. this.da2.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
  167.   new System.Data.Common.DataTableMapping("Table", "系统参数表", new System.Data.Common.DataColumnMapping[] {
  168.    new System.Data.Common.DataColumnMapping("编号", "编号"),
  169.    new System.Data.Common.DataColumnMapping("参数名称", "参数名称"),
  170.    new System.Data.Common.DataColumnMapping("取值", "取值")})});
  171. // 
  172. // sqlSelectCommand2
  173. // 
  174. this.sqlSelectCommand2.CommandText = "SELECT 编号, 参数名称, 取值 FROM 系统参数表";
  175. this.sqlSelectCommand2.Connection = this.sqlConnection1;
  176. // 
  177. // dataGrid1
  178. // 
  179. this.dataGrid1.CaptionVisible = false;
  180. this.dataGrid1.DataMember = "帐簿初始化表";
  181. this.dataGrid1.DataSource = this.dataSet21;
  182. this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
  183. this.dataGrid1.Location = new System.Drawing.Point(0, 64);
  184. this.dataGrid1.Name = "dataGrid1";
  185. this.dataGrid1.Size = new System.Drawing.Size(416, 424);
  186. this.dataGrid1.TabIndex = 0;
  187. this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
  188.   this.dataGridTableStyle1});
  189. // 
  190. // dataGridTableStyle1
  191. // 
  192. this.dataGridTableStyle1.DataGrid = this.dataGrid1;
  193. this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
  194.   this.dataGridTextBoxColumn1,
  195.   this.dataGridTextBoxColumn2,
  196.   this.dataGridTextBoxColumn3,
  197.   this.dataGridTextBoxColumn4,
  198.   this.dataGridTextBoxColumn5,
  199.   this.dataGridTextBoxColumn6});
  200. this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
  201. this.dataGridTableStyle1.MappingName = "帐簿初始化表";
  202. // 
  203. // dataGridTextBoxColumn1
  204. // 
  205. this.dataGridTextBoxColumn1.Format = "";
  206. this.dataGridTextBoxColumn1.FormatInfo = null;
  207. this.dataGridTextBoxColumn1.HeaderText = "科目代码";
  208. this.dataGridTextBoxColumn1.MappingName = "科目代码";
  209. this.dataGridTextBoxColumn1.ReadOnly = true;
  210. this.dataGridTextBoxColumn1.Width = 75;
  211. // 
  212. // dataGridTextBoxColumn2
  213. // 
  214. this.dataGridTextBoxColumn2.Format = "";
  215. this.dataGridTextBoxColumn2.FormatInfo = null;
  216. this.dataGridTextBoxColumn2.HeaderText = "科目名称";
  217. this.dataGridTextBoxColumn2.MappingName = "科目名称";
  218. this.dataGridTextBoxColumn2.ReadOnly = true;
  219. this.dataGridTextBoxColumn2.Width = 75;
  220. // 
  221. // dataGridTextBoxColumn3
  222. // 
  223. this.dataGridTextBoxColumn3.Format = "";
  224. this.dataGridTextBoxColumn3.FormatInfo = null;
  225. this.dataGridTextBoxColumn3.HeaderText = "余额方向";
  226. this.dataGridTextBoxColumn3.MappingName = "余额方向";
  227. this.dataGridTextBoxColumn3.ReadOnly = true;
  228. this.dataGridTextBoxColumn3.Width = 75;
  229. // 
  230. // dataGridTextBoxColumn4
  231. // 
  232. this.dataGridTextBoxColumn4.Format = "";
  233. this.dataGridTextBoxColumn4.FormatInfo = null;
  234. this.dataGridTextBoxColumn4.HeaderText = "累计借方";
  235. this.dataGridTextBoxColumn4.MappingName = "累计借方";
  236. this.dataGridTextBoxColumn4.Width = 75;
  237. // 
  238. // dataGridTextBoxColumn5
  239. // 
  240. this.dataGridTextBoxColumn5.Format = "";
  241. this.dataGridTextBoxColumn5.FormatInfo = null;
  242. this.dataGridTextBoxColumn5.HeaderText = "累计借方";
  243. this.dataGridTextBoxColumn5.MappingName = "累计贷方";
  244. this.dataGridTextBoxColumn5.Width = 75;
  245. // 
  246. // dataGridTextBoxColumn6
  247. // 
  248. this.dataGridTextBoxColumn6.Format = "";
  249. this.dataGridTextBoxColumn6.FormatInfo = null;
  250. this.dataGridTextBoxColumn6.HeaderText = "期初余额";
  251. this.dataGridTextBoxColumn6.MappingName = "期初余额";
  252. this.dataGridTextBoxColumn6.Width = 75;
  253. // 
  254. // dataGrid2
  255. // 
  256. this.dataGrid2.CaptionVisible = false;
  257. this.dataGrid2.DataMember = "系统参数表";
  258. this.dataGrid2.DataSource = this.dataSet21;
  259. this.dataGrid2.HeaderForeColor = System.Drawing.SystemColors.ControlText;
  260. this.dataGrid2.Location = new System.Drawing.Point(424, 64);
  261. this.dataGrid2.Name = "dataGrid2";
  262. this.dataGrid2.ReadOnly = true;
  263. this.dataGrid2.Size = new System.Drawing.Size(264, 424);
  264. this.dataGrid2.TabIndex = 1;
  265. // 
  266. // btnNewAccount
  267. // 
  268. this.btnNewAccount.Image = ((System.Drawing.Image)(resources.GetObject("btnNewAccount.Image")));
  269. this.btnNewAccount.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  270. this.btnNewAccount.Location = new System.Drawing.Point(72, 24);
  271. this.btnNewAccount.Name = "btnNewAccount";
  272. this.btnNewAccount.Size = new System.Drawing.Size(112, 32);
  273. this.btnNewAccount.TabIndex = 2;
  274. this.btnNewAccount.Text = "建立新帐簿";
  275. this.btnNewAccount.Click += new System.EventHandler(this.btnNewAccount_Click);
  276. // 
  277. // btnUseAccount
  278. // 
  279. this.btnUseAccount.Image = ((System.Drawing.Image)(resources.GetObject("btnUseAccount.Image")));
  280. this.btnUseAccount.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  281. this.btnUseAccount.Location = new System.Drawing.Point(216, 24);
  282. this.btnUseAccount.Name = "btnUseAccount";
  283. this.btnUseAccount.Size = new System.Drawing.Size(104, 32);
  284. this.btnUseAccount.TabIndex = 2;
  285. this.btnUseAccount.Text = "启用新帐簿";
  286. this.btnUseAccount.Click += new System.EventHandler(this.btnUseAccount_Click);
  287. // 
  288. // btnBalance
  289. // 
  290. this.btnBalance.Image = ((System.Drawing.Image)(resources.GetObject("btnBalance.Image")));
  291. this.btnBalance.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  292. this.btnBalance.Location = new System.Drawing.Point(352, 24);
  293. this.btnBalance.Name = "btnBalance";
  294. this.btnBalance.Size = new System.Drawing.Size(104, 32);
  295. this.btnBalance.TabIndex = 2;
  296. this.btnBalance.Text = "试算平衡";
  297. this.btnBalance.Click += new System.EventHandler(this.btnBalance_Click);
  298. // 
  299. // sqlConnection1
  300. // 
  301. this.sqlConnection1.ConnectionString = "workstation id=localhost;packet size=4096;integrated security=SSPI;initial catalo" +
  302. "g=caiwubook;persist security info=False";
  303. // 
  304. // AccountSetting
  305. // 
  306. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  307. this.ClientSize = new System.Drawing.Size(688, 493);
  308. this.Controls.Add(this.btnNewAccount);
  309. this.Controls.Add(this.dataGrid2);
  310. this.Controls.Add(this.dataGrid1);
  311. this.Controls.Add(this.btnUseAccount);
  312. this.Controls.Add(this.btnBalance);
  313. this.Name = "AccountSetting";
  314. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  315. this.Text = "【帐户设置】";
  316. this.Load += new System.EventHandler(this.AccountSetting_Load);
  317. ((System.ComponentModel.ISupportInitialize)(this.dataSet21)).EndInit();
  318. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.dataGrid2)).EndInit();
  320. this.ResumeLayout(false);
  321. }
  322. #endregion
  323. //------------建立新窗体时,读入所有数据-------------
  324. private void AccountSetting_Load(object sender, System.EventArgs e)
  325. {
  326. da1.Fill(dataSet21);
  327. da2.Fill(dataSet21);
  328. }
  329. //-----------建立新帐户----------
  330. private void btnNewAccount_Click(object sender, System.EventArgs e)
  331. {
  332. DialogResult result=MessageBox.Show("是否清除原有帐簿信息并初始化新帐簿?","警告",MessageBoxButtons.OKCancel,MessageBoxIcon.Warning);
  333. if(result==DialogResult.OK)
  334. {
  335. string strConn = "workstation id=localhost;Integrated Security=SSPI;database=caiwubook";
  336. SqlConnection cn=new SqlConnection(strConn);
  337. cn.Open();
  338. SqlCommand cmd=cn.CreateCommand();
  339. cmd.CommandText="exec sf_初始化帐户";
  340. try
  341. {
  342. cmd.ExecuteNonQuery();
  343. dataSet21.Clear();//刷新数据集
  344. da1.Fill(dataSet21);
  345. da2.Fill(dataSet21);
  346. }
  347. catch(Exception express)
  348. {
  349. MessageBox.Show(express.ToString(),"建立新帐户失败",MessageBoxButtons.OK,MessageBoxIcon.Error);
  350. }
  351. }
  352. }
  353. //-----------启用新帐户----------
  354. private void btnUseAccount_Click(object sender, System.EventArgs e)
  355. {
  356. da1.Update(dataSet21);//将用户对新帐簿中数据的修改提交到数据库
  357. string strConn = "workstation id=localhost;Integrated Security=SSPI;database=caiwubook";
  358. SqlConnection cn=new SqlConnection(strConn);
  359. cn.Open();
  360. SqlCommand cmd=cn.CreateCommand();
  361. cmd.CommandText="select sum(累计借方) 借方,sum(累计贷方) 贷方 from 帐簿初始化表";
  362. SqlDataReader dr=cmd.ExecuteReader();
  363. dr.Read();
  364. if(dr.GetValue(0).ToString().Trim()!=dr.GetValue(1).ToString().Trim())//判断初始化后帐簿是否平衡
  365. {
  366. MessageBox.Show("新帐簿初始化不平衡,请检查试算平衡表后重新输入","无法启用新帐簿",MessageBoxButtons.OK,MessageBoxIcon.Error);
  367. return;
  368. }
  369. else
  370. {
  371. DialogResult result=MessageBox.Show("试算结果平衡,启用新帐簿将删除所有历史记录,是否继续?","确认启用新帐簿",MessageBoxButtons.OKCancel,MessageBoxIcon.Warning);
  372. if(result==DialogResult.OK)
  373. {
  374. dr.Close();
  375. cmd.CommandText="exec sf_启用帐户";
  376. cmd.ExecuteNonQuery();
  377. dataSet21.Clear();//刷新数据集
  378. da1.Fill(dataSet21);
  379. da2.Fill(dataSet21);
  380. MessageBox.Show("新帐户启用成功!");
  381. }
  382. return;
  383. }
  384. }
  385. //----------新帐户的试算平衡--------
  386. private void btnBalance_Click(object sender, System.EventArgs e)
  387. {
  388. da1.Update(dataSet21);//将用户对新帐簿中数据的修改提交到数据库
  389. TrialBalance newFrm=new TrialBalance(true);
  390. newFrm.Text+="初始化帐户";
  391. newFrm.Show();
  392. }
  393. }
  394. }