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

企业管理

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace 图书馆管理系统
  7. {
  8. /// <summary>
  9. /// ReaderClassfy 的摘要说明。
  10. /// </summary>
  11. public class ReaderClassify : System.Windows.Forms.Form
  12. {
  13. private CurrencyManager cmOrders;//数据导航
  14. private System.Windows.Forms.DataGrid dataGrid1;
  15. private System.Windows.Forms.GroupBox groupBox1;
  16. private System.Windows.Forms.Button btnSearch;
  17. private System.Windows.Forms.TextBox txt1;
  18. private System.Windows.Forms.Label label2;
  19. private System.Windows.Forms.Label label3;
  20. private System.Windows.Forms.ToolBar toolBar1;
  21. private System.Windows.Forms.ToolBarButton tBtnFirst;
  22. private System.Windows.Forms.ToolBarButton tBtnPre;
  23. private System.Windows.Forms.ToolBarButton tBtnNext;
  24. private System.Windows.Forms.ToolBarButton tBtnLast;
  25. private System.Windows.Forms.ToolBarButton tBtnNew;
  26. private System.Windows.Forms.ToolBarButton tBtnEdit;
  27. private System.Windows.Forms.ToolBarButton tBtnDelete;
  28. private System.Windows.Forms.ToolBarButton tBtnSubmit;
  29. private System.Windows.Forms.ToolBarButton tBtnCancel;
  30. private System.Windows.Forms.ToolBarButton tBtnQuit;
  31. private System.Windows.Forms.ImageList imageList1;
  32. private System.Windows.Forms.GroupBox groupBox2;
  33. private System.Windows.Forms.TextBox txt3;
  34. private System.Windows.Forms.TextBox txt4;
  35. private System.Windows.Forms.Label label1;
  36. private System.Windows.Forms.TextBox txt2;
  37. private System.Windows.Forms.TextBox txt5;
  38. private System.Windows.Forms.Label label4;
  39. private System.Windows.Forms.Label label5;
  40. private System.Data.SqlClient.SqlDataAdapter da1;
  41. private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
  42. private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
  43. private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
  44. private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
  45. private System.Data.SqlClient.SqlConnection sqlConnection1;
  46. private 图书馆管理系统.DataSet1 dataSet11;
  47. private System.Windows.Forms.GroupBox groupBox3;
  48. private System.Windows.Forms.CheckBox checkBox1;
  49. private System.Windows.Forms.CheckBox checkBox2;
  50. private System.ComponentModel.IContainer components;
  51. public ReaderClassify()
  52. {
  53. //
  54. // Windows 窗体设计器支持所必需的
  55. //
  56. InitializeComponent();
  57. //
  58. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  59. //
  60. }
  61. /// <summary>
  62. /// 清理所有正在使用的资源。
  63. /// </summary>
  64. protected override void Dispose( bool disposing )
  65. {
  66. if( disposing )
  67. {
  68. if(components != null)
  69. {
  70. components.Dispose();
  71. }
  72. }
  73. base.Dispose( disposing );
  74. }
  75. #region Windows 窗体设计器生成的代码
  76. /// <summary>
  77. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  78. /// 此方法的内容。
  79. /// </summary>
  80. private void InitializeComponent()
  81. {
  82. this.components = new System.ComponentModel.Container();
  83. System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ReaderClassify));
  84. this.dataGrid1 = new System.Windows.Forms.DataGrid();
  85. this.dataSet11 = new 图书馆管理系统.DataSet1();
  86. this.groupBox1 = new System.Windows.Forms.GroupBox();
  87. this.btnSearch = new System.Windows.Forms.Button();
  88. this.txt1 = new System.Windows.Forms.TextBox();
  89. this.label2 = new System.Windows.Forms.Label();
  90. this.label3 = new System.Windows.Forms.Label();
  91. this.toolBar1 = new System.Windows.Forms.ToolBar();
  92. this.tBtnFirst = new System.Windows.Forms.ToolBarButton();
  93. this.tBtnPre = new System.Windows.Forms.ToolBarButton();
  94. this.tBtnNext = new System.Windows.Forms.ToolBarButton();
  95. this.tBtnLast = new System.Windows.Forms.ToolBarButton();
  96. this.tBtnNew = new System.Windows.Forms.ToolBarButton();
  97. this.tBtnEdit = new System.Windows.Forms.ToolBarButton();
  98. this.tBtnDelete = new System.Windows.Forms.ToolBarButton();
  99. this.tBtnSubmit = new System.Windows.Forms.ToolBarButton();
  100. this.tBtnCancel = new System.Windows.Forms.ToolBarButton();
  101. this.tBtnQuit = new System.Windows.Forms.ToolBarButton();
  102. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  103. this.groupBox2 = new System.Windows.Forms.GroupBox();
  104. this.groupBox3 = new System.Windows.Forms.GroupBox();
  105. this.checkBox1 = new System.Windows.Forms.CheckBox();
  106. this.checkBox2 = new System.Windows.Forms.CheckBox();
  107. this.txt3 = new System.Windows.Forms.TextBox();
  108. this.txt4 = new System.Windows.Forms.TextBox();
  109. this.label1 = new System.Windows.Forms.Label();
  110. this.txt2 = new System.Windows.Forms.TextBox();
  111. this.txt5 = new System.Windows.Forms.TextBox();
  112. this.label4 = new System.Windows.Forms.Label();
  113. this.label5 = new System.Windows.Forms.Label();
  114. this.da1 = new System.Data.SqlClient.SqlDataAdapter();
  115. this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
  116. this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
  117. this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
  118. this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
  119. this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
  120. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
  121. ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
  122. this.groupBox1.SuspendLayout();
  123. this.groupBox2.SuspendLayout();
  124. this.groupBox3.SuspendLayout();
  125. this.SuspendLayout();
  126. // 
  127. // dataGrid1
  128. // 
  129. this.dataGrid1.CaptionVisible = false;
  130. this.dataGrid1.DataMember = "读者类型";
  131. this.dataGrid1.DataSource = this.dataSet11;
  132. this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
  133. this.dataGrid1.Location = new System.Drawing.Point(0, 96);
  134. this.dataGrid1.Name = "dataGrid1";
  135. this.dataGrid1.ReadOnly = true;
  136. this.dataGrid1.Size = new System.Drawing.Size(552, 216);
  137. this.dataGrid1.TabIndex = 0;
  138. // 
  139. // dataSet11
  140. // 
  141. this.dataSet11.DataSetName = "DataSet1";
  142. this.dataSet11.Locale = new System.Globalization.CultureInfo("zh-CN");
  143. // 
  144. // groupBox1
  145. // 
  146. this.groupBox1.Controls.Add(this.btnSearch);
  147. this.groupBox1.Controls.Add(this.txt1);
  148. this.groupBox1.Controls.Add(this.label2);
  149. this.groupBox1.Location = new System.Drawing.Point(0, 40);
  150. this.groupBox1.Name = "groupBox1";
  151. this.groupBox1.Size = new System.Drawing.Size(552, 56);
  152. this.groupBox1.TabIndex = 30;
  153. this.groupBox1.TabStop = false;
  154. // 
  155. // btnSearch
  156. // 
  157. this.btnSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnSearch.Image")));
  158. this.btnSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  159. this.btnSearch.Location = new System.Drawing.Point(16, 24);
  160. this.btnSearch.Name = "btnSearch";
  161. this.btnSearch.Size = new System.Drawing.Size(72, 23);
  162. this.btnSearch.TabIndex = 0;
  163. this.btnSearch.Text = " 搜索";
  164. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  165. // 
  166. // txt1
  167. // 
  168. this.txt1.Location = new System.Drawing.Point(168, 24);
  169. this.txt1.Name = "txt1";
  170. this.txt1.TabIndex = 2;
  171. this.txt1.Text = "";
  172. // 
  173. // label2
  174. // 
  175. this.label2.Location = new System.Drawing.Point(104, 28);
  176. this.label2.Name = "label2";
  177. this.label2.Size = new System.Drawing.Size(56, 16);
  178. this.label2.TabIndex = 1;
  179. this.label2.Text = "读者类型";
  180. // 
  181. // label3
  182. // 
  183. this.label3.Location = new System.Drawing.Point(152, 40);
  184. this.label3.Name = "label3";
  185. this.label3.Size = new System.Drawing.Size(80, 16);
  186. this.label3.TabIndex = 1;
  187. this.label3.Text = "可借图书册数";
  188. // 
  189. // toolBar1
  190. // 
  191. this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
  192. this.tBtnFirst,
  193. this.tBtnPre,
  194. this.tBtnNext,
  195. this.tBtnLast,
  196. this.tBtnNew,
  197. this.tBtnEdit,
  198. this.tBtnDelete,
  199. this.tBtnSubmit,
  200. this.tBtnCancel,
  201. this.tBtnQuit});
  202. this.toolBar1.DropDownArrows = true;
  203. this.toolBar1.ImageList = this.imageList1;
  204. this.toolBar1.Location = new System.Drawing.Point(0, 0);
  205. this.toolBar1.Name = "toolBar1";
  206. this.toolBar1.ShowToolTips = true;
  207. this.toolBar1.Size = new System.Drawing.Size(552, 41);
  208. this.toolBar1.TabIndex = 31;
  209. this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
  210. // 
  211. // tBtnFirst
  212. // 
  213. this.tBtnFirst.ImageIndex = 0;
  214. this.tBtnFirst.Text = "首记录";
  215. this.tBtnFirst.ToolTipText = "首记录";
  216. // 
  217. // tBtnPre
  218. // 
  219. this.tBtnPre.ImageIndex = 1;
  220. this.tBtnPre.Text = "上一记录";
  221. this.tBtnPre.ToolTipText = "上一记录";
  222. // 
  223. // tBtnNext
  224. // 
  225. this.tBtnNext.ImageIndex = 2;
  226. this.tBtnNext.Text = "下一记录";
  227. this.tBtnNext.ToolTipText = "下一记录";
  228. // 
  229. // tBtnLast
  230. // 
  231. this.tBtnLast.ImageIndex = 3;
  232. this.tBtnLast.Text = "尾记录";
  233. this.tBtnLast.ToolTipText = "尾记录";
  234. // 
  235. // tBtnNew
  236. // 
  237. this.tBtnNew.ImageIndex = 4;
  238. this.tBtnNew.Text = "新增";
  239. this.tBtnNew.ToolTipText = "新增";
  240. // 
  241. // tBtnEdit
  242. // 
  243. this.tBtnEdit.ImageIndex = 5;
  244. this.tBtnEdit.Text = "修改";
  245. this.tBtnEdit.ToolTipText = "修改";
  246. // 
  247. // tBtnDelete
  248. // 
  249. this.tBtnDelete.ImageIndex = 6;
  250. this.tBtnDelete.Text = "删除";
  251. this.tBtnDelete.ToolTipText = "删除";
  252. // 
  253. // tBtnSubmit
  254. // 
  255. this.tBtnSubmit.ImageIndex = 7;
  256. this.tBtnSubmit.Text = "提交";
  257. this.tBtnSubmit.ToolTipText = "提交";
  258. // 
  259. // tBtnCancel
  260. // 
  261. this.tBtnCancel.ImageIndex = 8;
  262. this.tBtnCancel.Text = "取消";
  263. this.tBtnCancel.ToolTipText = "取消";
  264. // 
  265. // tBtnQuit
  266. // 
  267. this.tBtnQuit.ImageIndex = 9;
  268. this.tBtnQuit.Text = "退出";
  269. this.tBtnQuit.ToolTipText = "退出";
  270. // 
  271. // imageList1
  272. // 
  273. this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
  274. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  275. this.imageList1.TransparentColor = System.Drawing.SystemColors.ControlLightLight;
  276. // 
  277. // groupBox2
  278. // 
  279. this.groupBox2.Controls.Add(this.groupBox3);
  280. this.groupBox2.Controls.Add(this.txt3);
  281. this.groupBox2.Controls.Add(this.txt4);
  282. this.groupBox2.Controls.Add(this.label1);
  283. this.groupBox2.Controls.Add(this.txt2);
  284. this.groupBox2.Controls.Add(this.label3);
  285. this.groupBox2.Controls.Add(this.txt5);
  286. this.groupBox2.Controls.Add(this.label4);
  287. this.groupBox2.Controls.Add(this.label5);
  288. this.groupBox2.Location = new System.Drawing.Point(0, 312);
  289. this.groupBox2.Name = "groupBox2";
  290. this.groupBox2.Size = new System.Drawing.Size(552, 144);
  291. this.groupBox2.TabIndex = 32;
  292. this.groupBox2.TabStop = false;
  293. // 
  294. // groupBox3
  295. // 
  296. this.groupBox3.Controls.Add(this.checkBox1);
  297. this.groupBox3.Controls.Add(this.checkBox2);
  298. this.groupBox3.Location = new System.Drawing.Point(32, 88);
  299. this.groupBox3.Name = "groupBox3";
  300. this.groupBox3.Size = new System.Drawing.Size(472, 48);
  301. this.groupBox3.TabIndex = 7;
  302. this.groupBox3.TabStop = false;
  303. this.groupBox3.Text = "借阅范围";
  304. // 
  305. // checkBox1
  306. // 
  307. this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dataSet11, "读者类型.限制图书"));
  308. this.checkBox1.Location = new System.Drawing.Point(80, 16);
  309. this.checkBox1.Name = "checkBox1";
  310. this.checkBox1.TabIndex = 0;
  311. this.checkBox1.Text = "限制图书";
  312. // 
  313. // checkBox2
  314. // 
  315. this.checkBox2.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.dataSet11, "读者类型.限制期刊"));
  316. this.checkBox2.Location = new System.Drawing.Point(256, 16);
  317. this.checkBox2.Name = "checkBox2";
  318. this.checkBox2.TabIndex = 0;
  319. this.checkBox2.Text = "限制期刊";
  320. // 
  321. // txt3
  322. // 
  323. this.txt3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "读者类型.图书册书"));
  324. this.txt3.Location = new System.Drawing.Point(152, 56);
  325. this.txt3.Name = "txt3";
  326. this.txt3.ReadOnly = true;
  327. this.txt3.TabIndex = 5;
  328. this.txt3.Text = "";
  329. // 
  330. // txt4
  331. // 
  332. this.txt4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "读者类型.期刊册书"));
  333. this.txt4.Location = new System.Drawing.Point(272, 56);
  334. this.txt4.Name = "txt4";
  335. this.txt4.ReadOnly = true;
  336. this.txt4.TabIndex = 6;
  337. this.txt4.Text = "";
  338. // 
  339. // label1
  340. // 
  341. this.label1.Location = new System.Drawing.Point(32, 40);
  342. this.label1.Name = "label1";
  343. this.label1.Size = new System.Drawing.Size(56, 16);
  344. this.label1.TabIndex = 3;
  345. this.label1.Text = "读者类型";
  346. // 
  347. // txt2
  348. // 
  349. this.txt2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "读者类型.类型"));
  350. this.txt2.Location = new System.Drawing.Point(32, 56);
  351. this.txt2.Name = "txt2";
  352. this.txt2.ReadOnly = true;
  353. this.txt2.TabIndex = 4;
  354. this.txt2.Text = "";
  355. // 
  356. // txt5
  357. // 
  358. this.txt5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet11, "读者类型.续借次数"));
  359. this.txt5.Location = new System.Drawing.Point(408, 56);
  360. this.txt5.Name = "txt5";
  361. this.txt5.ReadOnly = true;
  362. this.txt5.TabIndex = 6;
  363. this.txt5.Text = "";
  364. // 
  365. // label4
  366. // 
  367. this.label4.Location = new System.Drawing.Point(272, 40);
  368. this.label4.Name = "label4";
  369. this.label4.Size = new System.Drawing.Size(96, 16);
  370. this.label4.TabIndex = 1;
  371. this.label4.Text = "可借期刊册数";
  372. // 
  373. // label5
  374. // 
  375. this.label5.Location = new System.Drawing.Point(408, 40);
  376. this.label5.Name = "label5";
  377. this.label5.Size = new System.Drawing.Size(96, 16);
  378. this.label5.TabIndex = 1;
  379. this.label5.Text = "允许续借次数";
  380. // 
  381. // da1
  382. // 
  383. this.da1.DeleteCommand = this.sqlDeleteCommand1;
  384. this.da1.InsertCommand = this.sqlInsertCommand1;
  385. this.da1.SelectCommand = this.sqlSelectCommand1;
  386. this.da1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
  387.   new System.Data.Common.DataTableMapping("Table", "读者类型", new System.Data.Common.DataColumnMapping[] {
  388.   new System.Data.Common.DataColumnMapping("类型", "类型"),
  389.   new System.Data.Common.DataColumnMapping("图书册书", "图书册书"),
  390.   new System.Data.Common.DataColumnMapping("期刊册书", "期刊册书"),
  391.   new System.Data.Common.DataColumnMapping("续借次数", "续借次数"),
  392.   new System.Data.Common.DataColumnMapping("限制图书", "限制图书"),
  393.   new System.Data.Common.DataColumnMapping("限制期刊", "限制期刊")})});
  394. this.da1.UpdateCommand = this.sqlUpdateCommand1;
  395. // 
  396. // sqlDeleteCommand1
  397. // 
  398. 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)";
  399. this.sqlDeleteCommand1.Connection = this.sqlConnection1;
  400. 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));
  401. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_图书册书", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "图书册书", System.Data.DataRowVersion.Original, null));
  402. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期刊册书", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期刊册书", System.Data.DataRowVersion.Original, null));
  403. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_续借次数", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "续借次数", System.Data.DataRowVersion.Original, null));
  404. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_限制图书", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "限制图书", System.Data.DataRowVersion.Original, null));
  405. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_限制期刊", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "限制期刊", System.Data.DataRowVersion.Original, null));
  406. // 
  407. // sqlConnection1
  408. // 
  409. this.sqlConnection1.ConnectionString = "workstation id=localhost;Integrated Security=SSPI;Database=libbook;";
  410. // 
  411. // sqlInsertCommand1
  412. // 
  413. this.sqlInsertCommand1.CommandText = "INSERT INTO 读者类型(类型, 图书册书, 期刊册书, 续借次数, 限制图书, 限制期刊) VALUES (@类型, @图书册书, @期刊册书, @续借" +
  414. "次数, @限制图书, @限制期刊); SELECT 类型, 图书册书, 期刊册书, 续借次数, 限制图书, 限制期刊 FROM 读者类型 WHERE (类型 =" +
  415. " @类型)";
  416. this.sqlInsertCommand1.Connection = this.sqlConnection1;
  417. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@类型", System.Data.SqlDbType.VarChar, 20, "类型"));
  418. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@图书册书", System.Data.SqlDbType.SmallInt, 2, "图书册书"));
  419. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期刊册书", System.Data.SqlDbType.SmallInt, 2, "期刊册书"));
  420. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@续借次数", System.Data.SqlDbType.Int, 4, "续借次数"));
  421. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@限制图书", System.Data.SqlDbType.Bit, 1, "限制图书"));
  422. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@限制期刊", System.Data.SqlDbType.Bit, 1, "限制期刊"));
  423. // 
  424. // sqlSelectCommand1
  425. // 
  426. this.sqlSelectCommand1.CommandText = "SELECT 类型, 图书册书, 期刊册书, 续借次数, 限制图书, 限制期刊 FROM 读者类型 WHERE (类型 LIKE @Param2)";
  427. this.sqlSelectCommand1.Connection = this.sqlConnection1;
  428. this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param2", System.Data.SqlDbType.VarChar, 20, "类型"));
  429. // 
  430. // sqlUpdateCommand1
  431. // 
  432. 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 (类型 = @类型)";
  433. this.sqlUpdateCommand1.Connection = this.sqlConnection1;
  434. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@类型", System.Data.SqlDbType.VarChar, 20, "类型"));
  435. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@图书册书", System.Data.SqlDbType.SmallInt, 2, "图书册书"));
  436. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@期刊册书", System.Data.SqlDbType.SmallInt, 2, "期刊册书"));
  437. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@续借次数", System.Data.SqlDbType.Int, 4, "续借次数"));
  438. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@限制图书", System.Data.SqlDbType.Bit, 1, "限制图书"));
  439. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@限制期刊", System.Data.SqlDbType.Bit, 1, "限制期刊"));
  440. 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));
  441. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_图书册书", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "图书册书", System.Data.DataRowVersion.Original, null));
  442. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_期刊册书", System.Data.SqlDbType.SmallInt, 2, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "期刊册书", System.Data.DataRowVersion.Original, null));
  443. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_续借次数", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "续借次数", System.Data.DataRowVersion.Original, null));
  444. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_限制图书", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "限制图书", System.Data.DataRowVersion.Original, null));
  445. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_限制期刊", System.Data.SqlDbType.Bit, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "限制期刊", System.Data.DataRowVersion.Original, null));
  446. // 
  447. // ReaderClassify
  448. // 
  449. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  450. this.ClientSize = new System.Drawing.Size(552, 477);
  451. this.Controls.Add(this.groupBox2);
  452. this.Controls.Add(this.toolBar1);
  453. this.Controls.Add(this.dataGrid1);
  454. this.Controls.Add(this.groupBox1);
  455. this.Name = "ReaderClassify";
  456. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  457. this.Text = "【读者类别设置】";
  458. this.Load += new System.EventHandler(this.ReaderClassfy_Load);
  459. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
  460. ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
  461. this.groupBox1.ResumeLayout(false);
  462. this.groupBox2.ResumeLayout(false);
  463. this.groupBox3.ResumeLayout(false);
  464. this.ResumeLayout(false);
  465. }
  466. #endregion
  467. //--------------创建窗体时读入全部数据--------------
  468. private void ReaderClassfy_Load(object sender, System.EventArgs e)
  469. {
  470. da1.SelectCommand.Parameters[0].Value="%%";
  471.             da1.Fill(dataSet11);
  472. //为数据集添加数据项浏览控制
  473. cmOrders=(CurrencyManager) BindingContext[dataSet11,"读者类型"];
  474. }
  475. //--------------根据输入查询数据--------------
  476. private void btnSearch_Click(object sender, System.EventArgs e)
  477. {
  478. da1.SelectCommand.Parameters[0].Value="%%";
  479. if(txt1.Text.Trim()!="")
  480. {
  481. da1.SelectCommand.Parameters[0].Value="%"+txt1.Text.Trim()+"%";
  482. }
  483. //清空数据表,并根据新设置的查询参数重新填充
  484. dataSet11.读者类型.Clear();
  485. da1.Fill(dataSet11);
  486. }
  487. private void toolBar1_ButtonClick(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
  488. {
  489. if (e.Button.ToolTipText == "首记录")
  490. {
  491. this.dataGrid1.UnSelect(cmOrders.Position); //取消原选中的行
  492. cmOrders.Position = 0;
  493. this.dataGrid1.Select(cmOrders.Position); //选中当前行
  494. this.dataGrid1.CurrentRowIndex = cmOrders.Position; //移动表头指示图标
  495. return;
  496. }
  497. if (e.Button.ToolTipText == "上一记录")
  498. {
  499. if (cmOrders.Position >= 0)
  500. {
  501. this.dataGrid1.UnSelect(cmOrders.Position); 
  502. cmOrders.Position--;
  503. this.dataGrid1.Select(cmOrders.Position);      
  504. this.dataGrid1.CurrentRowIndex = cmOrders.Position; 
  505. }
  506. return;
  507. }
  508. if (e.Button.ToolTipText == "下一记录")
  509. {
  510. if (cmOrders.Position <= cmOrders.Count-1)
  511. {
  512. this.dataGrid1.UnSelect(cmOrders.Position); 
  513. cmOrders.Position++;
  514. this.dataGrid1.Select(cmOrders.Position);       
  515. this.dataGrid1.CurrentRowIndex = cmOrders.Position; 
  516. }
  517. return;
  518. }
  519. if (e.Button.ToolTipText == "尾记录")
  520. {
  521. this.dataGrid1.UnSelect(cmOrders.Position); 
  522. cmOrders.Position = cmOrders.Count-1;
  523. this.dataGrid1.Select(cmOrders.Position);       
  524. this.dataGrid1.CurrentRowIndex = cmOrders.Position; 
  525. return;
  526. }
  527. if(e.Button.ToolTipText=="新增")
  528. {
  529. cmOrders.AddNew();
  530. //设置默认值
  531. txt3.Text="1";
  532. txt4.Text="1";
  533. txt5.Text="1";
  534. SetModifyMode(true);
  535. }
  536. if(e.Button.ToolTipText=="修改")
  537. {
  538. SetModifyMode(true);
  539. }
  540. if(e.Button.ToolTipText=="删除")
  541. {
  542. DialogResult result=MessageBox.Show("确认删除?","删除数据",MessageBoxButtons.OKCancel);
  543. if(result==DialogResult.OK)
  544. if(cmOrders.Count>0)//立即从数据集中删除
  545. {
  546. cmOrders.RemoveAt(cmOrders.Position);
  547. da1.Update(dataSet11);
  548. }
  549. else
  550. MessageBox.Show("表中为空,已无可删除数据","提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
  551. }
  552. if(e.Button.ToolTipText=="提交")
  553. {
  554. if(txt2.Text.Trim()=="")//检查非空字段
  555. {
  556. MessageBox.Show("类型名称不能为空","提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
  557. return;
  558. }
  559. cmOrders.EndCurrentEdit();
  560. if(dataSet11.GetChanges()!=null)
  561. {
  562. try
  563. {
  564. da1.Update(dataSet11);
  565. SetModifyMode(false);
  566. }
  567. catch(Exception express)
  568. {
  569. MessageBox.Show(express.ToString(),"提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
  570. dataSet11.RejectChanges();
  571. }
  572. }
  573. return;
  574. }
  575. if (e.Button.ToolTipText == "取消")
  576. {
  577. try
  578. {
  579. cmOrders.CancelCurrentEdit();  //取消编辑
  580. SetModifyMode(false);
  581. }
  582. catch(Exception express)
  583. {
  584. MessageBox.Show(express.ToString(),"提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
  585. }
  586. return;
  587. }
  588. if(e.Button.ToolTipText=="退出")
  589. {
  590. this.Close();
  591. }
  592. }
  593. //--------------对控件的属性做设置---------------
  594. private void SetModifyMode(bool blnEdit)
  595. {
  596. //设置文本框和下拉列表框属性
  597. txt2.ReadOnly=!blnEdit;
  598. txt3.ReadOnly=!blnEdit;
  599. txt4.ReadOnly=!blnEdit;
  600. txt5.ReadOnly=!blnEdit;
  601. //设置搜索按钮属性
  602. btnSearch.Enabled=!blnEdit;
  603. }
  604. }
  605. }