-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecordbooksearch.Designer.vb
More file actions
812 lines (807 loc) · 37 KB
/
recordbooksearch.Designer.vb
File metadata and controls
812 lines (807 loc) · 37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class recordbooksearch
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Me.TabControl1 = New System.Windows.Forms.TabControl()
Me.TabPage1 = New System.Windows.Forms.TabPage()
Me.DataGridView1 = New System.Windows.Forms.DataGridView()
Me.Panel3 = New System.Windows.Forms.Panel()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.ComboBox1 = New System.Windows.Forms.ComboBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.TabPage2 = New System.Windows.Forms.TabPage()
Me.DataGridView2 = New System.Windows.Forms.DataGridView()
Me.Panel6 = New System.Windows.Forms.Panel()
Me.ComboBox2 = New System.Windows.Forms.ComboBox()
Me.Panel4 = New System.Windows.Forms.Panel()
Me.Button3 = New System.Windows.Forms.Button()
Me.Button4 = New System.Windows.Forms.Button()
Me.Label4 = New System.Windows.Forms.Label()
Me.Panel5 = New System.Windows.Forms.Panel()
Me.Label11 = New System.Windows.Forms.Label()
Me.TextBox2 = New System.Windows.Forms.TextBox()
Me.TabPage3 = New System.Windows.Forms.TabPage()
Me.DataGridView3 = New System.Windows.Forms.DataGridView()
Me.Panel7 = New System.Windows.Forms.Panel()
Me.Button5 = New System.Windows.Forms.Button()
Me.Button6 = New System.Windows.Forms.Button()
Me.Panel8 = New System.Windows.Forms.Panel()
Me.Label3 = New System.Windows.Forms.Label()
Me.TextBox3 = New System.Windows.Forms.TextBox()
Me.Panel9 = New System.Windows.Forms.Panel()
Me.ComboBox3 = New System.Windows.Forms.ComboBox()
Me.Label6 = New System.Windows.Forms.Label()
Me.TabPage4 = New System.Windows.Forms.TabPage()
Me.DataGridView4 = New System.Windows.Forms.DataGridView()
Me.Panel10 = New System.Windows.Forms.Panel()
Me.Button7 = New System.Windows.Forms.Button()
Me.Button8 = New System.Windows.Forms.Button()
Me.Panel11 = New System.Windows.Forms.Panel()
Me.Label5 = New System.Windows.Forms.Label()
Me.TextBox4 = New System.Windows.Forms.TextBox()
Me.Panel12 = New System.Windows.Forms.Panel()
Me.ComboBox4 = New System.Windows.Forms.ComboBox()
Me.Label8 = New System.Windows.Forms.Label()
Me.TabPage5 = New System.Windows.Forms.TabPage()
Me.DataGridView5 = New System.Windows.Forms.DataGridView()
Me.Panel13 = New System.Windows.Forms.Panel()
Me.Button9 = New System.Windows.Forms.Button()
Me.Button10 = New System.Windows.Forms.Button()
Me.Panel14 = New System.Windows.Forms.Panel()
Me.Label7 = New System.Windows.Forms.Label()
Me.TextBox5 = New System.Windows.Forms.TextBox()
Me.Panel15 = New System.Windows.Forms.Panel()
Me.ComboBox5 = New System.Windows.Forms.ComboBox()
Me.Label10 = New System.Windows.Forms.Label()
Me.TabControl1.SuspendLayout()
Me.TabPage1.SuspendLayout()
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel3.SuspendLayout()
Me.Panel1.SuspendLayout()
Me.Panel2.SuspendLayout()
Me.TabPage2.SuspendLayout()
CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel6.SuspendLayout()
Me.Panel4.SuspendLayout()
Me.Panel5.SuspendLayout()
Me.TabPage3.SuspendLayout()
CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel7.SuspendLayout()
Me.Panel8.SuspendLayout()
Me.Panel9.SuspendLayout()
Me.TabPage4.SuspendLayout()
CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel10.SuspendLayout()
Me.Panel11.SuspendLayout()
Me.Panel12.SuspendLayout()
Me.TabPage5.SuspendLayout()
CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel13.SuspendLayout()
Me.Panel14.SuspendLayout()
Me.Panel15.SuspendLayout()
Me.SuspendLayout()
'
'TabControl1
'
Me.TabControl1.Controls.Add(Me.TabPage1)
Me.TabControl1.Controls.Add(Me.TabPage2)
Me.TabControl1.Controls.Add(Me.TabPage3)
Me.TabControl1.Controls.Add(Me.TabPage4)
Me.TabControl1.Controls.Add(Me.TabPage5)
Me.TabControl1.Dock = System.Windows.Forms.DockStyle.Fill
Me.TabControl1.Font = New System.Drawing.Font("Modern No. 20", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.TabControl1.Location = New System.Drawing.Point(0, 0)
Me.TabControl1.Name = "TabControl1"
Me.TabControl1.SelectedIndex = 0
Me.TabControl1.Size = New System.Drawing.Size(1305, 494)
Me.TabControl1.TabIndex = 0
'
'TabPage1
'
Me.TabPage1.BackgroundImage = Global.LIBRARY_LATEST.My.Resources.Resources.man_in_front_of_shelves_of_books_feature_640_unsplash_1280x720
Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.TabPage1.Controls.Add(Me.DataGridView1)
Me.TabPage1.Controls.Add(Me.Panel3)
Me.TabPage1.Controls.Add(Me.Panel1)
Me.TabPage1.Location = New System.Drawing.Point(4, 26)
Me.TabPage1.Name = "TabPage1"
Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
Me.TabPage1.Size = New System.Drawing.Size(1297, 464)
Me.TabPage1.TabIndex = 0
Me.TabPage1.Text = "By Name"
Me.TabPage1.UseVisualStyleBackColor = True
'
'DataGridView1
'
Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView1.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView1.Location = New System.Drawing.Point(3, 96)
Me.DataGridView1.Name = "DataGridView1"
Me.DataGridView1.Size = New System.Drawing.Size(1289, 363)
Me.DataGridView1.TabIndex = 2
'
'Panel3
'
Me.Panel3.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel3.Controls.Add(Me.Button2)
Me.Panel3.Controls.Add(Me.Button1)
Me.Panel3.Location = New System.Drawing.Point(1026, 2)
Me.Panel3.Name = "Panel3"
Me.Panel3.Size = New System.Drawing.Size(322, 93)
Me.Panel3.TabIndex = 1
'
'Button2
'
Me.Button2.BackColor = System.Drawing.Color.White
Me.Button2.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button2.Location = New System.Drawing.Point(180, 31)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(122, 38)
Me.Button2.TabIndex = 1
Me.Button2.Text = "SEARCH"
Me.Button2.UseVisualStyleBackColor = False
'
'Button1
'
Me.Button1.BackColor = System.Drawing.Color.White
Me.Button1.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button1.Location = New System.Drawing.Point(25, 31)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(122, 38)
Me.Button1.TabIndex = 0
Me.Button1.Text = "RESET"
Me.Button1.UseVisualStyleBackColor = False
'
'Panel1
'
Me.Panel1.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel1.Controls.Add(Me.ComboBox1)
Me.Panel1.Controls.Add(Me.Label1)
Me.Panel1.Controls.Add(Me.Panel2)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel1.Location = New System.Drawing.Point(3, 3)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(1289, 93)
Me.Panel1.TabIndex = 0
'
'ComboBox1
'
Me.ComboBox1.FormattingEnabled = True
Me.ComboBox1.Location = New System.Drawing.Point(12, 45)
Me.ComboBox1.Name = "ComboBox1"
Me.ComboBox1.Size = New System.Drawing.Size(307, 25)
Me.ComboBox1.TabIndex = 2
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.White
Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label1.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(90, 9)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(97, 23)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Book Title"
'
'Panel2
'
Me.Panel2.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel2.Controls.Add(Me.TextBox1)
Me.Panel2.Controls.Add(Me.Label2)
Me.Panel2.Location = New System.Drawing.Point(349, 0)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(322, 93)
Me.Panel2.TabIndex = 1
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(16, 45)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(290, 24)
Me.TextBox1.TabIndex = 4
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.BackColor = System.Drawing.Color.White
Me.Label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label2.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.Location = New System.Drawing.Point(97, 9)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(97, 23)
Me.Label2.TabIndex = 3
Me.Label2.Text = "Book Title"
'
'TabPage2
'
Me.TabPage2.BackgroundImage = Global.LIBRARY_LATEST.My.Resources.Resources._1200px_Bibliothèque_de_l_Assemblée_Nationale__Lunon_2
Me.TabPage2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.TabPage2.Controls.Add(Me.DataGridView2)
Me.TabPage2.Controls.Add(Me.Panel6)
Me.TabPage2.Location = New System.Drawing.Point(4, 26)
Me.TabPage2.Name = "TabPage2"
Me.TabPage2.Size = New System.Drawing.Size(1297, 464)
Me.TabPage2.TabIndex = 1
Me.TabPage2.Text = "By Author"
Me.TabPage2.UseVisualStyleBackColor = True
'
'DataGridView2
'
Me.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView2.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView2.Location = New System.Drawing.Point(0, 93)
Me.DataGridView2.Name = "DataGridView2"
Me.DataGridView2.Size = New System.Drawing.Size(1297, 371)
Me.DataGridView2.TabIndex = 6
'
'Panel6
'
Me.Panel6.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel6.Controls.Add(Me.ComboBox2)
Me.Panel6.Controls.Add(Me.Panel4)
Me.Panel6.Controls.Add(Me.Label4)
Me.Panel6.Controls.Add(Me.Panel5)
Me.Panel6.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel6.Location = New System.Drawing.Point(0, 0)
Me.Panel6.Name = "Panel6"
Me.Panel6.Size = New System.Drawing.Size(1297, 93)
Me.Panel6.TabIndex = 3
'
'ComboBox2
'
Me.ComboBox2.FormattingEnabled = True
Me.ComboBox2.Location = New System.Drawing.Point(12, 45)
Me.ComboBox2.Name = "ComboBox2"
Me.ComboBox2.Size = New System.Drawing.Size(307, 25)
Me.ComboBox2.TabIndex = 2
'
'Panel4
'
Me.Panel4.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel4.Controls.Add(Me.Button3)
Me.Panel4.Controls.Add(Me.Button4)
Me.Panel4.Location = New System.Drawing.Point(1027, 0)
Me.Panel4.Name = "Panel4"
Me.Panel4.Size = New System.Drawing.Size(322, 93)
Me.Panel4.TabIndex = 4
'
'Button3
'
Me.Button3.BackColor = System.Drawing.Color.White
Me.Button3.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button3.Location = New System.Drawing.Point(180, 31)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(122, 38)
Me.Button3.TabIndex = 1
Me.Button3.Text = "SEARCH"
Me.Button3.UseVisualStyleBackColor = False
'
'Button4
'
Me.Button4.BackColor = System.Drawing.Color.White
Me.Button4.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button4.Location = New System.Drawing.Point(25, 31)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(122, 38)
Me.Button4.TabIndex = 0
Me.Button4.Text = "RESET"
Me.Button4.UseVisualStyleBackColor = False
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.BackColor = System.Drawing.Color.White
Me.Label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label4.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label4.Location = New System.Drawing.Point(90, 9)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(117, 23)
Me.Label4.TabIndex = 0
Me.Label4.Text = "Author Name"
'
'Panel5
'
Me.Panel5.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel5.Controls.Add(Me.Label11)
Me.Panel5.Controls.Add(Me.TextBox2)
Me.Panel5.Location = New System.Drawing.Point(368, 0)
Me.Panel5.Name = "Panel5"
Me.Panel5.Size = New System.Drawing.Size(322, 93)
Me.Panel5.TabIndex = 5
'
'Label11
'
Me.Label11.AutoSize = True
Me.Label11.BackColor = System.Drawing.Color.White
Me.Label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label11.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label11.Location = New System.Drawing.Point(98, 9)
Me.Label11.Name = "Label11"
Me.Label11.Size = New System.Drawing.Size(117, 23)
Me.Label11.TabIndex = 5
Me.Label11.Text = "Author Name"
'
'TextBox2
'
Me.TextBox2.Location = New System.Drawing.Point(16, 45)
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(290, 24)
Me.TextBox2.TabIndex = 4
'
'TabPage3
'
Me.TabPage3.BackgroundImage = Global.LIBRARY_LATEST.My.Resources.Resources.download__5_1
Me.TabPage3.Controls.Add(Me.DataGridView3)
Me.TabPage3.Controls.Add(Me.Panel7)
Me.TabPage3.Controls.Add(Me.Panel8)
Me.TabPage3.Controls.Add(Me.Panel9)
Me.TabPage3.Location = New System.Drawing.Point(4, 26)
Me.TabPage3.Name = "TabPage3"
Me.TabPage3.Size = New System.Drawing.Size(1297, 464)
Me.TabPage3.TabIndex = 2
Me.TabPage3.Text = "By Department"
Me.TabPage3.UseVisualStyleBackColor = True
'
'DataGridView3
'
Me.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView3.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView3.Location = New System.Drawing.Point(0, 93)
Me.DataGridView3.Name = "DataGridView3"
Me.DataGridView3.Size = New System.Drawing.Size(1297, 371)
Me.DataGridView3.TabIndex = 6
'
'Panel7
'
Me.Panel7.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel7.Controls.Add(Me.Button5)
Me.Panel7.Controls.Add(Me.Button6)
Me.Panel7.Location = New System.Drawing.Point(1031, 1)
Me.Panel7.Name = "Panel7"
Me.Panel7.Size = New System.Drawing.Size(322, 93)
Me.Panel7.TabIndex = 4
'
'Button5
'
Me.Button5.BackColor = System.Drawing.Color.White
Me.Button5.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button5.Location = New System.Drawing.Point(180, 31)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(122, 38)
Me.Button5.TabIndex = 1
Me.Button5.Text = "SEARCH"
Me.Button5.UseVisualStyleBackColor = False
'
'Button6
'
Me.Button6.BackColor = System.Drawing.Color.White
Me.Button6.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button6.Location = New System.Drawing.Point(25, 31)
Me.Button6.Name = "Button6"
Me.Button6.Size = New System.Drawing.Size(122, 38)
Me.Button6.TabIndex = 0
Me.Button6.Text = "RESET"
Me.Button6.UseVisualStyleBackColor = False
'
'Panel8
'
Me.Panel8.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel8.Controls.Add(Me.Label3)
Me.Panel8.Controls.Add(Me.TextBox3)
Me.Panel8.Location = New System.Drawing.Point(352, 0)
Me.Panel8.Name = "Panel8"
Me.Panel8.Size = New System.Drawing.Size(322, 93)
Me.Panel8.TabIndex = 5
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.BackColor = System.Drawing.Color.White
Me.Label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label3.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(84, 9)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(131, 23)
Me.Label3.TabIndex = 3
Me.Label3.Text = "DEPARMENT"
'
'TextBox3
'
Me.TextBox3.Location = New System.Drawing.Point(16, 45)
Me.TextBox3.Name = "TextBox3"
Me.TextBox3.Size = New System.Drawing.Size(290, 24)
Me.TextBox3.TabIndex = 4
'
'Panel9
'
Me.Panel9.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel9.Controls.Add(Me.ComboBox3)
Me.Panel9.Controls.Add(Me.Label6)
Me.Panel9.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel9.Location = New System.Drawing.Point(0, 0)
Me.Panel9.Name = "Panel9"
Me.Panel9.Size = New System.Drawing.Size(1297, 93)
Me.Panel9.TabIndex = 3
'
'ComboBox3
'
Me.ComboBox3.FormattingEnabled = True
Me.ComboBox3.Location = New System.Drawing.Point(12, 45)
Me.ComboBox3.Name = "ComboBox3"
Me.ComboBox3.Size = New System.Drawing.Size(307, 25)
Me.ComboBox3.TabIndex = 2
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.BackColor = System.Drawing.Color.White
Me.Label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label6.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label6.Location = New System.Drawing.Point(90, 9)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(131, 23)
Me.Label6.TabIndex = 0
Me.Label6.Text = "DEPARMENT"
'
'TabPage4
'
Me.TabPage4.BackgroundImage = Global.LIBRARY_LATEST.My.Resources.Resources.global_library_main_0_0_11
Me.TabPage4.Controls.Add(Me.DataGridView4)
Me.TabPage4.Controls.Add(Me.Panel10)
Me.TabPage4.Controls.Add(Me.Panel11)
Me.TabPage4.Controls.Add(Me.Panel12)
Me.TabPage4.Location = New System.Drawing.Point(4, 26)
Me.TabPage4.Name = "TabPage4"
Me.TabPage4.Size = New System.Drawing.Size(1297, 464)
Me.TabPage4.TabIndex = 3
Me.TabPage4.Text = "By Subject"
Me.TabPage4.UseVisualStyleBackColor = True
'
'DataGridView4
'
Me.DataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView4.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView4.Location = New System.Drawing.Point(0, 93)
Me.DataGridView4.Name = "DataGridView4"
Me.DataGridView4.Size = New System.Drawing.Size(1297, 371)
Me.DataGridView4.TabIndex = 6
'
'Panel10
'
Me.Panel10.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel10.Controls.Add(Me.Button7)
Me.Panel10.Controls.Add(Me.Button8)
Me.Panel10.Location = New System.Drawing.Point(1027, 1)
Me.Panel10.Name = "Panel10"
Me.Panel10.Size = New System.Drawing.Size(322, 93)
Me.Panel10.TabIndex = 4
'
'Button7
'
Me.Button7.BackColor = System.Drawing.Color.White
Me.Button7.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button7.Location = New System.Drawing.Point(180, 31)
Me.Button7.Name = "Button7"
Me.Button7.Size = New System.Drawing.Size(122, 38)
Me.Button7.TabIndex = 1
Me.Button7.Text = "SEARCH"
Me.Button7.UseVisualStyleBackColor = False
'
'Button8
'
Me.Button8.BackColor = System.Drawing.Color.White
Me.Button8.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button8.Location = New System.Drawing.Point(25, 31)
Me.Button8.Name = "Button8"
Me.Button8.Size = New System.Drawing.Size(122, 38)
Me.Button8.TabIndex = 0
Me.Button8.Text = "RESET"
Me.Button8.UseVisualStyleBackColor = False
'
'Panel11
'
Me.Panel11.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel11.Controls.Add(Me.Label5)
Me.Panel11.Controls.Add(Me.TextBox4)
Me.Panel11.Location = New System.Drawing.Point(355, 1)
Me.Panel11.Name = "Panel11"
Me.Panel11.Size = New System.Drawing.Size(322, 93)
Me.Panel11.TabIndex = 5
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.BackColor = System.Drawing.Color.White
Me.Label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label5.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label5.Location = New System.Drawing.Point(100, 9)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(93, 23)
Me.Label5.TabIndex = 3
Me.Label5.Text = "SUBJECT"
'
'TextBox4
'
Me.TextBox4.Location = New System.Drawing.Point(16, 45)
Me.TextBox4.Name = "TextBox4"
Me.TextBox4.Size = New System.Drawing.Size(290, 24)
Me.TextBox4.TabIndex = 4
'
'Panel12
'
Me.Panel12.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel12.Controls.Add(Me.ComboBox4)
Me.Panel12.Controls.Add(Me.Label8)
Me.Panel12.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel12.Location = New System.Drawing.Point(0, 0)
Me.Panel12.Name = "Panel12"
Me.Panel12.Size = New System.Drawing.Size(1297, 93)
Me.Panel12.TabIndex = 3
'
'ComboBox4
'
Me.ComboBox4.FormattingEnabled = True
Me.ComboBox4.Location = New System.Drawing.Point(12, 45)
Me.ComboBox4.Name = "ComboBox4"
Me.ComboBox4.Size = New System.Drawing.Size(307, 25)
Me.ComboBox4.TabIndex = 2
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.BackColor = System.Drawing.Color.White
Me.Label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label8.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label8.Location = New System.Drawing.Point(90, 9)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(93, 23)
Me.Label8.TabIndex = 0
Me.Label8.Text = "SUBJECT"
'
'TabPage5
'
Me.TabPage5.BackgroundImage = Global.LIBRARY_LATEST.My.Resources.Resources.photo_1521587760476_6c12a4b040da
Me.TabPage5.Controls.Add(Me.DataGridView5)
Me.TabPage5.Controls.Add(Me.Panel13)
Me.TabPage5.Controls.Add(Me.Panel14)
Me.TabPage5.Controls.Add(Me.Panel15)
Me.TabPage5.Location = New System.Drawing.Point(4, 26)
Me.TabPage5.Name = "TabPage5"
Me.TabPage5.Size = New System.Drawing.Size(1297, 464)
Me.TabPage5.TabIndex = 4
Me.TabPage5.Text = "Access No."
Me.TabPage5.UseVisualStyleBackColor = True
'
'DataGridView5
'
Me.DataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView5.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView5.Location = New System.Drawing.Point(0, 93)
Me.DataGridView5.Name = "DataGridView5"
Me.DataGridView5.Size = New System.Drawing.Size(1297, 371)
Me.DataGridView5.TabIndex = 6
'
'Panel13
'
Me.Panel13.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel13.Controls.Add(Me.Button9)
Me.Panel13.Controls.Add(Me.Button10)
Me.Panel13.Location = New System.Drawing.Point(1027, 1)
Me.Panel13.Name = "Panel13"
Me.Panel13.Size = New System.Drawing.Size(322, 93)
Me.Panel13.TabIndex = 4
'
'Button9
'
Me.Button9.BackColor = System.Drawing.Color.White
Me.Button9.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button9.Location = New System.Drawing.Point(180, 31)
Me.Button9.Name = "Button9"
Me.Button9.Size = New System.Drawing.Size(122, 38)
Me.Button9.TabIndex = 1
Me.Button9.Text = "SEARCH"
Me.Button9.UseVisualStyleBackColor = False
'
'Button10
'
Me.Button10.BackColor = System.Drawing.Color.White
Me.Button10.Font = New System.Drawing.Font("Modern No. 20", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Button10.Location = New System.Drawing.Point(25, 31)
Me.Button10.Name = "Button10"
Me.Button10.Size = New System.Drawing.Size(122, 38)
Me.Button10.TabIndex = 0
Me.Button10.Text = "RESET"
Me.Button10.UseVisualStyleBackColor = False
'
'Panel14
'
Me.Panel14.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel14.Controls.Add(Me.Label7)
Me.Panel14.Controls.Add(Me.TextBox5)
Me.Panel14.Location = New System.Drawing.Point(355, 1)
Me.Panel14.Name = "Panel14"
Me.Panel14.Size = New System.Drawing.Size(322, 93)
Me.Panel14.TabIndex = 5
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.BackColor = System.Drawing.Color.White
Me.Label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label7.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label7.Location = New System.Drawing.Point(105, 9)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(91, 23)
Me.Label7.TabIndex = 3
Me.Label7.Text = "Access no."
'
'TextBox5
'
Me.TextBox5.Location = New System.Drawing.Point(16, 45)
Me.TextBox5.Name = "TextBox5"
Me.TextBox5.Size = New System.Drawing.Size(290, 24)
Me.TextBox5.TabIndex = 4
'
'Panel15
'
Me.Panel15.BackColor = System.Drawing.Color.FromArgb(CType(CType(140, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
Me.Panel15.Controls.Add(Me.ComboBox5)
Me.Panel15.Controls.Add(Me.Label10)
Me.Panel15.Dock = System.Windows.Forms.DockStyle.Top
Me.Panel15.Location = New System.Drawing.Point(0, 0)
Me.Panel15.Name = "Panel15"
Me.Panel15.Size = New System.Drawing.Size(1297, 93)
Me.Panel15.TabIndex = 3
'
'ComboBox5
'
Me.ComboBox5.FormattingEnabled = True
Me.ComboBox5.Location = New System.Drawing.Point(12, 45)
Me.ComboBox5.Name = "ComboBox5"
Me.ComboBox5.Size = New System.Drawing.Size(307, 25)
Me.ComboBox5.TabIndex = 2
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.BackColor = System.Drawing.Color.White
Me.Label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Label10.Font = New System.Drawing.Font("Modern No. 20", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label10.Location = New System.Drawing.Point(90, 9)
Me.Label10.Name = "Label10"
Me.Label10.Size = New System.Drawing.Size(91, 23)
Me.Label10.TabIndex = 0
Me.Label10.Text = "Access no."
'
'recordbooksearch
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(1305, 494)
Me.Controls.Add(Me.TabControl1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "recordbooksearch"
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Search Book By Attributes"
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
Me.TabControl1.ResumeLayout(False)
Me.TabPage1.ResumeLayout(False)
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel3.ResumeLayout(False)
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.Panel2.ResumeLayout(False)
Me.Panel2.PerformLayout()
Me.TabPage2.ResumeLayout(False)
CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel6.ResumeLayout(False)
Me.Panel6.PerformLayout()
Me.Panel4.ResumeLayout(False)
Me.Panel5.ResumeLayout(False)
Me.Panel5.PerformLayout()
Me.TabPage3.ResumeLayout(False)
CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel7.ResumeLayout(False)
Me.Panel8.ResumeLayout(False)
Me.Panel8.PerformLayout()
Me.Panel9.ResumeLayout(False)
Me.Panel9.PerformLayout()
Me.TabPage4.ResumeLayout(False)
CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel10.ResumeLayout(False)
Me.Panel11.ResumeLayout(False)
Me.Panel11.PerformLayout()
Me.Panel12.ResumeLayout(False)
Me.Panel12.PerformLayout()
Me.TabPage5.ResumeLayout(False)
CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel13.ResumeLayout(False)
Me.Panel14.ResumeLayout(False)
Me.Panel14.PerformLayout()
Me.Panel15.ResumeLayout(False)
Me.Panel15.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents TabControl1 As TabControl
Friend WithEvents TabPage1 As TabPage
Friend WithEvents Panel3 As Panel
Friend WithEvents Panel2 As Panel
Friend WithEvents Panel1 As Panel
Friend WithEvents TabPage2 As TabPage
Friend WithEvents TabPage3 As TabPage
Friend WithEvents TabPage4 As TabPage
Friend WithEvents TabPage5 As TabPage
Friend WithEvents Label1 As Label
Friend WithEvents ComboBox1 As ComboBox
Friend WithEvents DataGridView1 As DataGridView
Friend WithEvents Button2 As Button
Friend WithEvents Button1 As Button
Friend WithEvents TextBox1 As TextBox
Friend WithEvents Label2 As Label
Friend WithEvents DataGridView2 As DataGridView
Friend WithEvents Panel4 As Panel
Friend WithEvents Button3 As Button
Friend WithEvents Button4 As Button
Friend WithEvents Panel5 As Panel
Friend WithEvents Label11 As Label
Friend WithEvents TextBox2 As TextBox
Friend WithEvents Panel6 As Panel
Friend WithEvents ComboBox2 As ComboBox
Friend WithEvents Label4 As Label
Friend WithEvents DataGridView3 As DataGridView
Friend WithEvents Panel7 As Panel
Friend WithEvents Button5 As Button
Friend WithEvents Button6 As Button
Friend WithEvents Panel8 As Panel
Friend WithEvents Label3 As Label
Friend WithEvents TextBox3 As TextBox
Friend WithEvents Panel9 As Panel
Friend WithEvents ComboBox3 As ComboBox
Friend WithEvents Label6 As Label
Friend WithEvents DataGridView4 As DataGridView
Friend WithEvents Panel10 As Panel
Friend WithEvents Button7 As Button
Friend WithEvents Button8 As Button
Friend WithEvents Panel11 As Panel
Friend WithEvents Label5 As Label
Friend WithEvents TextBox4 As TextBox
Friend WithEvents Panel12 As Panel
Friend WithEvents ComboBox4 As ComboBox
Friend WithEvents Label8 As Label
Friend WithEvents DataGridView5 As DataGridView
Friend WithEvents Panel13 As Panel
Friend WithEvents Button9 As Button
Friend WithEvents Button10 As Button
Friend WithEvents Panel14 As Panel
Friend WithEvents Label7 As Label
Friend WithEvents TextBox5 As TextBox
Friend WithEvents Panel15 As Panel
Friend WithEvents ComboBox5 As ComboBox
Friend WithEvents Label10 As Label
End Class