-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListSiswa.Designer.vb
More file actions
889 lines (885 loc) · 38.7 KB
/
ListSiswa.Designer.vb
File metadata and controls
889 lines (885 loc) · 38.7 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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ListSiswa
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.SplitContainer1 = New System.Windows.Forms.SplitContainer
Me.TextBoxHpOrtu = New System.Windows.Forms.TextBox
Me.Label21 = New System.Windows.Forms.Label
Me.TextBoxTelpOrtu = New System.Windows.Forms.TextBox
Me.Label22 = New System.Windows.Forms.Label
Me.TextBoxKodeposOrtu = New System.Windows.Forms.TextBox
Me.Label19 = New System.Windows.Forms.Label
Me.TextBoxKotaOrtu = New System.Windows.Forms.TextBox
Me.Label20 = New System.Windows.Forms.Label
Me.TextBoxAlamatOrtu = New System.Windows.Forms.TextBox
Me.Label18 = New System.Windows.Forms.Label
Me.TextBoxNamaIbu = New System.Windows.Forms.TextBox
Me.Label17 = New System.Windows.Forms.Label
Me.TextBoxNamaAyah = New System.Windows.Forms.TextBox
Me.Label14 = New System.Windows.Forms.Label
Me.DateTimePickerMasuk = New System.Windows.Forms.DateTimePicker
Me.Label16 = New System.Windows.Forms.Label
Me.TextBoxNamaSmpAsal = New System.Windows.Forms.TextBox
Me.Label15 = New System.Windows.Forms.Label
Me.ButtonRefresh = New System.Windows.Forms.Button
Me.ButtonHapus = New System.Windows.Forms.Button
Me.ButtonSimpan = New System.Windows.Forms.Button
Me.ButtonUbah = New System.Windows.Forms.Button
Me.ButtonTambah = New System.Windows.Forms.Button
Me.ButtonPhoto = New System.Windows.Forms.Button
Me.PictureBoxPhoto = New System.Windows.Forms.PictureBox
Me.TextBoxHP = New System.Windows.Forms.TextBox
Me.Label13 = New System.Windows.Forms.Label
Me.TextBoxTelephone = New System.Windows.Forms.TextBox
Me.Label12 = New System.Windows.Forms.Label
Me.TextBoxKodepos = New System.Windows.Forms.TextBox
Me.Label11 = New System.Windows.Forms.Label
Me.TextBoxKota = New System.Windows.Forms.TextBox
Me.Label10 = New System.Windows.Forms.Label
Me.TextBoxAlamat = New System.Windows.Forms.TextBox
Me.Label9 = New System.Windows.Forms.Label
Me.TextBoxEmail = New System.Windows.Forms.TextBox
Me.Label8 = New System.Windows.Forms.Label
Me.ComboBoxAgama = New System.Windows.Forms.ComboBox
Me.Label7 = New System.Windows.Forms.Label
Me.DateTimePickerLahir = New System.Windows.Forms.DateTimePicker
Me.Label6 = New System.Windows.Forms.Label
Me.TextBoxTempatLahir = New System.Windows.Forms.TextBox
Me.Label5 = New System.Windows.Forms.Label
Me.ComboBoxJenisKelamin = New System.Windows.Forms.ComboBox
Me.Label4 = New System.Windows.Forms.Label
Me.TextBoxNama = New System.Windows.Forms.TextBox
Me.Label3 = New System.Windows.Forms.Label
Me.TextBoxNIP = New System.Windows.Forms.TextBox
Me.Label1 = New System.Windows.Forms.Label
Me.DataGridView1 = New System.Windows.Forms.DataGridView
Me.ID = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NIS = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.Nama = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.JenisKelamin = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.TempatLahir = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.TanggalLahir = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.Agama = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.Email = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.Alamat = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.Kota = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.KodePos = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NoTelephone = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NoHP = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.TanggalMasuk = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NamaSMPAsal = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NamaAyah = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NamaIbu = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.AlamatOrangTua = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.KotaOrangTua = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.KodePosOrangTua = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NoTelephoneOrangTua = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.NoHPOrangTua = New System.Windows.Forms.DataGridViewTextBoxColumn
Me.SplitContainer1.Panel1.SuspendLayout()
Me.SplitContainer1.Panel2.SuspendLayout()
Me.SplitContainer1.SuspendLayout()
CType(Me.PictureBoxPhoto, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'SplitContainer1
'
Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
Me.SplitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1
Me.SplitContainer1.IsSplitterFixed = True
Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
Me.SplitContainer1.Name = "SplitContainer1"
Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
'
'SplitContainer1.Panel1
'
Me.SplitContainer1.Panel1.AutoScroll = True
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxHpOrtu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label21)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxTelpOrtu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label22)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxKodeposOrtu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label19)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxKotaOrtu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label20)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxAlamatOrtu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label18)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxNamaIbu)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label17)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxNamaAyah)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label14)
Me.SplitContainer1.Panel1.Controls.Add(Me.DateTimePickerMasuk)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label16)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxNamaSmpAsal)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label15)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonRefresh)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonHapus)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonSimpan)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonUbah)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonTambah)
Me.SplitContainer1.Panel1.Controls.Add(Me.ButtonPhoto)
Me.SplitContainer1.Panel1.Controls.Add(Me.PictureBoxPhoto)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxHP)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label13)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxTelephone)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label12)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxKodepos)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label11)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxKota)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label10)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxAlamat)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label9)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxEmail)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label8)
Me.SplitContainer1.Panel1.Controls.Add(Me.ComboBoxAgama)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label7)
Me.SplitContainer1.Panel1.Controls.Add(Me.DateTimePickerLahir)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label6)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxTempatLahir)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label5)
Me.SplitContainer1.Panel1.Controls.Add(Me.ComboBoxJenisKelamin)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label4)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxNama)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label3)
Me.SplitContainer1.Panel1.Controls.Add(Me.TextBoxNIP)
Me.SplitContainer1.Panel1.Controls.Add(Me.Label1)
'
'SplitContainer1.Panel2
'
Me.SplitContainer1.Panel2.Controls.Add(Me.DataGridView1)
Me.SplitContainer1.Size = New System.Drawing.Size(1153, 707)
Me.SplitContainer1.SplitterDistance = 356
Me.SplitContainer1.TabIndex = 4
'
'TextBoxHpOrtu
'
Me.TextBoxHpOrtu.Location = New System.Drawing.Point(702, 174)
Me.TextBoxHpOrtu.Name = "TextBoxHpOrtu"
Me.TextBoxHpOrtu.Size = New System.Drawing.Size(133, 21)
Me.TextBoxHpOrtu.TabIndex = 21
'
'Label21
'
Me.Label21.AutoSize = True
Me.Label21.Location = New System.Drawing.Point(676, 177)
Me.Label21.Name = "Label21"
Me.Label21.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label21.Size = New System.Drawing.Size(20, 13)
Me.Label21.TabIndex = 51
Me.Label21.Text = "HP"
'
'TextBoxTelpOrtu
'
Me.TextBoxTelpOrtu.Location = New System.Drawing.Point(532, 174)
Me.TextBoxTelpOrtu.Name = "TextBoxTelpOrtu"
Me.TextBoxTelpOrtu.Size = New System.Drawing.Size(133, 21)
Me.TextBoxTelpOrtu.TabIndex = 20
'
'Label22
'
Me.Label22.AutoSize = True
Me.Label22.Location = New System.Drawing.Point(469, 177)
Me.Label22.Name = "Label22"
Me.Label22.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label22.Size = New System.Drawing.Size(57, 13)
Me.Label22.TabIndex = 49
Me.Label22.Text = "Telephone"
'
'TextBoxKodeposOrtu
'
Me.TextBoxKodeposOrtu.Location = New System.Drawing.Point(730, 147)
Me.TextBoxKodeposOrtu.Name = "TextBoxKodeposOrtu"
Me.TextBoxKodeposOrtu.Size = New System.Drawing.Size(123, 21)
Me.TextBoxKodeposOrtu.TabIndex = 19
'
'Label19
'
Me.Label19.AutoSize = True
Me.Label19.Location = New System.Drawing.Point(676, 150)
Me.Label19.Name = "Label19"
Me.Label19.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label19.Size = New System.Drawing.Size(48, 13)
Me.Label19.TabIndex = 47
Me.Label19.Text = "Kodepos"
'
'TextBoxKotaOrtu
'
Me.TextBoxKotaOrtu.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxKotaOrtu.Location = New System.Drawing.Point(532, 147)
Me.TextBoxKotaOrtu.Name = "TextBoxKotaOrtu"
Me.TextBoxKotaOrtu.Size = New System.Drawing.Size(133, 21)
Me.TextBoxKotaOrtu.TabIndex = 18
'
'Label20
'
Me.Label20.AutoSize = True
Me.Label20.Location = New System.Drawing.Point(497, 150)
Me.Label20.Name = "Label20"
Me.Label20.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label20.Size = New System.Drawing.Size(29, 13)
Me.Label20.TabIndex = 45
Me.Label20.Text = "Kota"
'
'TextBoxAlamatOrtu
'
Me.TextBoxAlamatOrtu.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxAlamatOrtu.Location = New System.Drawing.Point(532, 120)
Me.TextBoxAlamatOrtu.Name = "TextBoxAlamatOrtu"
Me.TextBoxAlamatOrtu.Size = New System.Drawing.Size(321, 21)
Me.TextBoxAlamatOrtu.TabIndex = 17
'
'Label18
'
Me.Label18.AutoSize = True
Me.Label18.Location = New System.Drawing.Point(486, 123)
Me.Label18.Name = "Label18"
Me.Label18.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label18.Size = New System.Drawing.Size(40, 13)
Me.Label18.TabIndex = 43
Me.Label18.Text = "Alamat"
'
'TextBoxNamaIbu
'
Me.TextBoxNamaIbu.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxNamaIbu.Location = New System.Drawing.Point(532, 93)
Me.TextBoxNamaIbu.Name = "TextBoxNamaIbu"
Me.TextBoxNamaIbu.Size = New System.Drawing.Size(321, 21)
Me.TextBoxNamaIbu.TabIndex = 16
'
'Label17
'
Me.Label17.AutoSize = True
Me.Label17.Location = New System.Drawing.Point(473, 96)
Me.Label17.Name = "Label17"
Me.Label17.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label17.Size = New System.Drawing.Size(53, 13)
Me.Label17.TabIndex = 41
Me.Label17.Text = "Nama Ibu"
'
'TextBoxNamaAyah
'
Me.TextBoxNamaAyah.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxNamaAyah.Location = New System.Drawing.Point(532, 66)
Me.TextBoxNamaAyah.Name = "TextBoxNamaAyah"
Me.TextBoxNamaAyah.Size = New System.Drawing.Size(321, 21)
Me.TextBoxNamaAyah.TabIndex = 15
'
'Label14
'
Me.Label14.AutoSize = True
Me.Label14.Location = New System.Drawing.Point(464, 69)
Me.Label14.Name = "Label14"
Me.Label14.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label14.Size = New System.Drawing.Size(62, 13)
Me.Label14.TabIndex = 39
Me.Label14.Text = "Nama Ayah"
'
'DateTimePickerMasuk
'
Me.DateTimePickerMasuk.CustomFormat = "dd MMMM yyyy"
Me.DateTimePickerMasuk.Format = System.Windows.Forms.DateTimePickerFormat.Custom
Me.DateTimePickerMasuk.Location = New System.Drawing.Point(532, 39)
Me.DateTimePickerMasuk.Name = "DateTimePickerMasuk"
Me.DateTimePickerMasuk.Size = New System.Drawing.Size(133, 21)
Me.DateTimePickerMasuk.TabIndex = 14
'
'Label16
'
Me.Label16.AutoSize = True
Me.Label16.Location = New System.Drawing.Point(455, 42)
Me.Label16.Name = "Label16"
Me.Label16.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label16.Size = New System.Drawing.Size(78, 13)
Me.Label16.TabIndex = 37
Me.Label16.Text = "Tanggal Masuk"
'
'TextBoxNamaSmpAsal
'
Me.TextBoxNamaSmpAsal.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxNamaSmpAsal.Location = New System.Drawing.Point(532, 12)
Me.TextBoxNamaSmpAsal.Name = "TextBoxNamaSmpAsal"
Me.TextBoxNamaSmpAsal.Size = New System.Drawing.Size(321, 21)
Me.TextBoxNamaSmpAsal.TabIndex = 13
'
'Label15
'
Me.Label15.AutoSize = True
Me.Label15.Location = New System.Drawing.Point(448, 15)
Me.Label15.Name = "Label15"
Me.Label15.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label15.Size = New System.Drawing.Size(80, 13)
Me.Label15.TabIndex = 35
Me.Label15.Text = "Nama SMP Asal"
'
'ButtonRefresh
'
Me.ButtonRefresh.Location = New System.Drawing.Point(351, 317)
Me.ButtonRefresh.Name = "ButtonRefresh"
Me.ButtonRefresh.Size = New System.Drawing.Size(75, 23)
Me.ButtonRefresh.TabIndex = 27
Me.ButtonRefresh.Text = "&Refresh"
Me.ButtonRefresh.UseVisualStyleBackColor = True
'
'ButtonHapus
'
Me.ButtonHapus.Location = New System.Drawing.Point(267, 317)
Me.ButtonHapus.Name = "ButtonHapus"
Me.ButtonHapus.Size = New System.Drawing.Size(75, 23)
Me.ButtonHapus.TabIndex = 26
Me.ButtonHapus.Text = "&Hapus"
Me.ButtonHapus.UseVisualStyleBackColor = True
'
'ButtonSimpan
'
Me.ButtonSimpan.Location = New System.Drawing.Point(183, 317)
Me.ButtonSimpan.Name = "ButtonSimpan"
Me.ButtonSimpan.Size = New System.Drawing.Size(75, 23)
Me.ButtonSimpan.TabIndex = 25
Me.ButtonSimpan.Text = "&Simpan"
Me.ButtonSimpan.UseVisualStyleBackColor = True
'
'ButtonUbah
'
Me.ButtonUbah.Location = New System.Drawing.Point(102, 317)
Me.ButtonUbah.Name = "ButtonUbah"
Me.ButtonUbah.Size = New System.Drawing.Size(75, 23)
Me.ButtonUbah.TabIndex = 24
Me.ButtonUbah.Text = "&Ubah"
Me.ButtonUbah.UseVisualStyleBackColor = True
'
'ButtonTambah
'
Me.ButtonTambah.Location = New System.Drawing.Point(21, 317)
Me.ButtonTambah.Name = "ButtonTambah"
Me.ButtonTambah.Size = New System.Drawing.Size(75, 23)
Me.ButtonTambah.TabIndex = 23
Me.ButtonTambah.Text = "&Tambah"
Me.ButtonTambah.UseVisualStyleBackColor = True
'
'ButtonPhoto
'
Me.ButtonPhoto.Location = New System.Drawing.Point(676, 317)
Me.ButtonPhoto.Name = "ButtonPhoto"
Me.ButtonPhoto.Size = New System.Drawing.Size(27, 23)
Me.ButtonPhoto.TabIndex = 22
Me.ButtonPhoto.Text = "..."
Me.ButtonPhoto.UseVisualStyleBackColor = True
'
'PictureBoxPhoto
'
Me.PictureBoxPhoto.Location = New System.Drawing.Point(532, 201)
Me.PictureBoxPhoto.Name = "PictureBoxPhoto"
Me.PictureBoxPhoto.Size = New System.Drawing.Size(133, 139)
Me.PictureBoxPhoto.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.PictureBoxPhoto.TabIndex = 26
Me.PictureBoxPhoto.TabStop = False
'
'TextBoxHP
'
Me.TextBoxHP.Location = New System.Drawing.Point(275, 255)
Me.TextBoxHP.Name = "TextBoxHP"
Me.TextBoxHP.Size = New System.Drawing.Size(133, 21)
Me.TextBoxHP.TabIndex = 12
'
'Label13
'
Me.Label13.AutoSize = True
Me.Label13.Location = New System.Drawing.Point(249, 258)
Me.Label13.Name = "Label13"
Me.Label13.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label13.Size = New System.Drawing.Size(20, 13)
Me.Label13.TabIndex = 24
Me.Label13.Text = "HP"
'
'TextBoxTelephone
'
Me.TextBoxTelephone.Location = New System.Drawing.Point(105, 255)
Me.TextBoxTelephone.Name = "TextBoxTelephone"
Me.TextBoxTelephone.Size = New System.Drawing.Size(133, 21)
Me.TextBoxTelephone.TabIndex = 11
'
'Label12
'
Me.Label12.AutoSize = True
Me.Label12.Location = New System.Drawing.Point(42, 258)
Me.Label12.Name = "Label12"
Me.Label12.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label12.Size = New System.Drawing.Size(57, 13)
Me.Label12.TabIndex = 22
Me.Label12.Text = "Telephone"
'
'TextBoxKodepos
'
Me.TextBoxKodepos.Location = New System.Drawing.Point(303, 228)
Me.TextBoxKodepos.Name = "TextBoxKodepos"
Me.TextBoxKodepos.Size = New System.Drawing.Size(123, 21)
Me.TextBoxKodepos.TabIndex = 10
'
'Label11
'
Me.Label11.AutoSize = True
Me.Label11.Location = New System.Drawing.Point(249, 231)
Me.Label11.Name = "Label11"
Me.Label11.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label11.Size = New System.Drawing.Size(48, 13)
Me.Label11.TabIndex = 20
Me.Label11.Text = "Kodepos"
'
'TextBoxKota
'
Me.TextBoxKota.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxKota.Location = New System.Drawing.Point(105, 228)
Me.TextBoxKota.Name = "TextBoxKota"
Me.TextBoxKota.Size = New System.Drawing.Size(133, 21)
Me.TextBoxKota.TabIndex = 9
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.Location = New System.Drawing.Point(70, 231)
Me.Label10.Name = "Label10"
Me.Label10.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label10.Size = New System.Drawing.Size(29, 13)
Me.Label10.TabIndex = 18
Me.Label10.Text = "Kota"
'
'TextBoxAlamat
'
Me.TextBoxAlamat.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxAlamat.Location = New System.Drawing.Point(105, 201)
Me.TextBoxAlamat.Name = "TextBoxAlamat"
Me.TextBoxAlamat.Size = New System.Drawing.Size(321, 21)
Me.TextBoxAlamat.TabIndex = 8
'
'Label9
'
Me.Label9.AutoSize = True
Me.Label9.Location = New System.Drawing.Point(59, 204)
Me.Label9.Name = "Label9"
Me.Label9.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label9.Size = New System.Drawing.Size(40, 13)
Me.Label9.TabIndex = 16
Me.Label9.Text = "Alamat"
'
'TextBoxEmail
'
Me.TextBoxEmail.Location = New System.Drawing.Point(105, 174)
Me.TextBoxEmail.Name = "TextBoxEmail"
Me.TextBoxEmail.Size = New System.Drawing.Size(207, 21)
Me.TextBoxEmail.TabIndex = 7
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Location = New System.Drawing.Point(68, 177)
Me.Label8.Name = "Label8"
Me.Label8.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label8.Size = New System.Drawing.Size(31, 13)
Me.Label8.TabIndex = 14
Me.Label8.Text = "Email"
'
'ComboBoxAgama
'
Me.ComboBoxAgama.FormattingEnabled = True
Me.ComboBoxAgama.Items.AddRange(New Object() {"Islam", "Khatolik", "Kristen", "Budha", "Hindu", "Kong Hu-Cu", "Aliran Kepercayaan"})
Me.ComboBoxAgama.Location = New System.Drawing.Point(105, 147)
Me.ComboBoxAgama.Name = "ComboBoxAgama"
Me.ComboBoxAgama.Size = New System.Drawing.Size(133, 21)
Me.ComboBoxAgama.TabIndex = 6
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Location = New System.Drawing.Point(59, 150)
Me.Label7.Name = "Label7"
Me.Label7.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label7.Size = New System.Drawing.Size(40, 13)
Me.Label7.TabIndex = 12
Me.Label7.Text = "Agama"
'
'DateTimePickerLahir
'
Me.DateTimePickerLahir.CustomFormat = "dd MMMM yyyy"
Me.DateTimePickerLahir.Format = System.Windows.Forms.DateTimePickerFormat.Custom
Me.DateTimePickerLahir.Location = New System.Drawing.Point(105, 120)
Me.DateTimePickerLahir.Name = "DateTimePickerLahir"
Me.DateTimePickerLahir.Size = New System.Drawing.Size(133, 21)
Me.DateTimePickerLahir.TabIndex = 5
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(28, 123)
Me.Label6.Name = "Label6"
Me.Label6.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label6.Size = New System.Drawing.Size(71, 13)
Me.Label6.TabIndex = 10
Me.Label6.Text = "Tanggal Lahir"
'
'TextBoxTempatLahir
'
Me.TextBoxTempatLahir.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxTempatLahir.Location = New System.Drawing.Point(105, 93)
Me.TextBoxTempatLahir.Name = "TextBoxTempatLahir"
Me.TextBoxTempatLahir.Size = New System.Drawing.Size(133, 21)
Me.TextBoxTempatLahir.TabIndex = 4
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.Location = New System.Drawing.Point(30, 96)
Me.Label5.Name = "Label5"
Me.Label5.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label5.Size = New System.Drawing.Size(69, 13)
Me.Label5.TabIndex = 8
Me.Label5.Text = "Tempat Lahir"
'
'ComboBoxJenisKelamin
'
Me.ComboBoxJenisKelamin.FormattingEnabled = True
Me.ComboBoxJenisKelamin.Items.AddRange(New Object() {"Laki-Laki", "Perempuan"})
Me.ComboBoxJenisKelamin.Location = New System.Drawing.Point(105, 66)
Me.ComboBoxJenisKelamin.Name = "ComboBoxJenisKelamin"
Me.ComboBoxJenisKelamin.Size = New System.Drawing.Size(133, 21)
Me.ComboBoxJenisKelamin.TabIndex = 3
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(29, 69)
Me.Label4.Name = "Label4"
Me.Label4.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label4.Size = New System.Drawing.Size(70, 13)
Me.Label4.TabIndex = 6
Me.Label4.Text = "Jenis Kelamin"
'
'TextBoxNama
'
Me.TextBoxNama.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper
Me.TextBoxNama.Location = New System.Drawing.Point(105, 39)
Me.TextBoxNama.Name = "TextBoxNama"
Me.TextBoxNama.Size = New System.Drawing.Size(321, 21)
Me.TextBoxNama.TabIndex = 2
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(65, 42)
Me.Label3.Name = "Label3"
Me.Label3.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label3.Size = New System.Drawing.Size(34, 13)
Me.Label3.TabIndex = 4
Me.Label3.Text = "Nama"
'
'TextBoxNIP
'
Me.TextBoxNIP.Location = New System.Drawing.Point(105, 12)
Me.TextBoxNIP.Name = "TextBoxNIP"
Me.TextBoxNIP.Size = New System.Drawing.Size(133, 21)
Me.TextBoxNIP.TabIndex = 0
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(75, 15)
Me.Label1.Name = "Label1"
Me.Label1.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Label1.Size = New System.Drawing.Size(24, 13)
Me.Label1.TabIndex = 0
Me.Label1.Text = "NIS"
'
'DataGridView1
'
Me.DataGridView1.AllowUserToAddRows = False
Me.DataGridView1.AllowUserToDeleteRows = False
Me.DataGridView1.BackgroundColor = System.Drawing.Color.White
Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView1.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.ID, Me.NIS, Me.Nama, Me.JenisKelamin, Me.TempatLahir, Me.TanggalLahir, Me.Agama, Me.Email, Me.Alamat, Me.Kota, Me.KodePos, Me.NoTelephone, Me.NoHP, Me.TanggalMasuk, Me.NamaSMPAsal, Me.NamaAyah, Me.NamaIbu, Me.AlamatOrangTua, Me.KotaOrangTua, Me.KodePosOrangTua, Me.NoTelephoneOrangTua, Me.NoHPOrangTua})
Me.DataGridView1.Dock = System.Windows.Forms.DockStyle.Fill
Me.DataGridView1.Location = New System.Drawing.Point(0, 0)
Me.DataGridView1.MultiSelect = False
Me.DataGridView1.Name = "DataGridView1"
Me.DataGridView1.ReadOnly = True
Me.DataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
Me.DataGridView1.Size = New System.Drawing.Size(1153, 347)
Me.DataGridView1.TabIndex = 1
'
'ID
'
Me.ID.DataPropertyName = "ID"
Me.ID.HeaderText = "ID"
Me.ID.Name = "ID"
Me.ID.ReadOnly = True
Me.ID.Visible = False
'
'NIS
'
Me.NIS.DataPropertyName = "NIS"
Me.NIS.HeaderText = "NIS"
Me.NIS.Name = "NIS"
Me.NIS.ReadOnly = True
Me.NIS.Width = 75
'
'Nama
'
Me.Nama.DataPropertyName = "Nama"
Me.Nama.HeaderText = "Nama"
Me.Nama.Name = "Nama"
Me.Nama.ReadOnly = True
Me.Nama.Width = 120
'
'JenisKelamin
'
Me.JenisKelamin.DataPropertyName = "JenisKelamin"
Me.JenisKelamin.HeaderText = "Jenis Kelamin"
Me.JenisKelamin.Name = "JenisKelamin"
Me.JenisKelamin.ReadOnly = True
'
'TempatLahir
'
Me.TempatLahir.DataPropertyName = "TempatLahir"
Me.TempatLahir.HeaderText = "Tempat Lahir"
Me.TempatLahir.Name = "TempatLahir"
Me.TempatLahir.ReadOnly = True
Me.TempatLahir.Width = 130
'
'TanggalLahir
'
Me.TanggalLahir.DataPropertyName = "TanggalLahir"
Me.TanggalLahir.HeaderText = "Tanggal Lahir"
Me.TanggalLahir.Name = "TanggalLahir"
Me.TanggalLahir.ReadOnly = True
'
'Agama
'
Me.Agama.DataPropertyName = "Agama"
Me.Agama.HeaderText = "Agama"
Me.Agama.Name = "Agama"
Me.Agama.ReadOnly = True
Me.Agama.Width = 115
'
'Email
'
Me.Email.DataPropertyName = "Email"
Me.Email.HeaderText = "Email"
Me.Email.Name = "Email"
Me.Email.ReadOnly = True
Me.Email.Width = 210
'
'Alamat
'
Me.Alamat.DataPropertyName = "Alamat"
Me.Alamat.HeaderText = "Alamat"
Me.Alamat.Name = "Alamat"
Me.Alamat.ReadOnly = True
Me.Alamat.Width = 210
'
'Kota
'
Me.Kota.DataPropertyName = "Kota"
Me.Kota.HeaderText = "Kota"
Me.Kota.Name = "Kota"
Me.Kota.ReadOnly = True
Me.Kota.Width = 120
'
'KodePos
'
Me.KodePos.DataPropertyName = "KodePos"
Me.KodePos.HeaderText = "KodePos"
Me.KodePos.Name = "KodePos"
Me.KodePos.ReadOnly = True
Me.KodePos.Width = 60
'
'NoTelephone
'
Me.NoTelephone.DataPropertyName = "NoTelephone"
Me.NoTelephone.HeaderText = "Telephone"
Me.NoTelephone.Name = "NoTelephone"
Me.NoTelephone.ReadOnly = True
'
'NoHP
'
Me.NoHP.DataPropertyName = "NoHP"
Me.NoHP.HeaderText = "HP"
Me.NoHP.Name = "NoHP"
Me.NoHP.ReadOnly = True
'
'TanggalMasuk
'
Me.TanggalMasuk.DataPropertyName = "TanggalMasuk"
Me.TanggalMasuk.HeaderText = "TanggalMasuk"
Me.TanggalMasuk.Name = "TanggalMasuk"
Me.TanggalMasuk.ReadOnly = True
'
'NamaSMPAsal
'
Me.NamaSMPAsal.DataPropertyName = "NamaSMPAsal"
Me.NamaSMPAsal.HeaderText = "Nama SMP Asal"
Me.NamaSMPAsal.Name = "NamaSMPAsal"
Me.NamaSMPAsal.ReadOnly = True
Me.NamaSMPAsal.Width = 120
'
'NamaAyah
'
Me.NamaAyah.DataPropertyName = "NamaAyah"
Me.NamaAyah.HeaderText = "Nama Ayah"
Me.NamaAyah.Name = "NamaAyah"
Me.NamaAyah.ReadOnly = True
Me.NamaAyah.Width = 120
'
'NamaIbu
'
Me.NamaIbu.DataPropertyName = "NamaIbu"
Me.NamaIbu.HeaderText = "Nama Ibu"
Me.NamaIbu.Name = "NamaIbu"
Me.NamaIbu.ReadOnly = True
Me.NamaIbu.Width = 120
'
'AlamatOrangTua
'
Me.AlamatOrangTua.DataPropertyName = "AlamatOrangTua"
Me.AlamatOrangTua.HeaderText = "Alamat Orang Tua"
Me.AlamatOrangTua.Name = "AlamatOrangTua"
Me.AlamatOrangTua.ReadOnly = True
Me.AlamatOrangTua.Width = 210
'
'KotaOrangTua
'
Me.KotaOrangTua.DataPropertyName = "KotaOrangTua"
Me.KotaOrangTua.HeaderText = "Kota Orang Tua"
Me.KotaOrangTua.Name = "KotaOrangTua"
Me.KotaOrangTua.ReadOnly = True
Me.KotaOrangTua.Width = 120
'
'KodePosOrangTua
'
Me.KodePosOrangTua.DataPropertyName = "KodePosOrangTua"
Me.KodePosOrangTua.HeaderText = "Kode Pos Orang Tua"
Me.KodePosOrangTua.Name = "KodePosOrangTua"
Me.KodePosOrangTua.ReadOnly = True
Me.KodePosOrangTua.Width = 70
'
'NoTelephoneOrangTua
'
Me.NoTelephoneOrangTua.DataPropertyName = "NoTelephoneOrangTua"
Me.NoTelephoneOrangTua.HeaderText = "No Telephone Orang Tua"
Me.NoTelephoneOrangTua.Name = "NoTelephoneOrangTua"
Me.NoTelephoneOrangTua.ReadOnly = True
'
'NoHPOrangTua
'
Me.NoHPOrangTua.DataPropertyName = "NoHPOrangTua"
Me.NoHPOrangTua.HeaderText = "No HP Orang Tua"
Me.NoHPOrangTua.Name = "NoHPOrangTua"
Me.NoHPOrangTua.ReadOnly = True
'
'ListSiswa
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.Color.White
Me.ClientSize = New System.Drawing.Size(1153, 707)
Me.Controls.Add(Me.SplitContainer1)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Name = "ListSiswa"
Me.ShowInTaskbar = False
Me.Text = "Data Siswa"
Me.SplitContainer1.Panel1.ResumeLayout(False)
Me.SplitContainer1.Panel1.PerformLayout()
Me.SplitContainer1.Panel2.ResumeLayout(False)
Me.SplitContainer1.ResumeLayout(False)
CType(Me.PictureBoxPhoto, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents SplitContainer1 As System.Windows.Forms.SplitContainer
Friend WithEvents ButtonRefresh As System.Windows.Forms.Button
Friend WithEvents ButtonHapus As System.Windows.Forms.Button
Friend WithEvents ButtonSimpan As System.Windows.Forms.Button
Friend WithEvents ButtonUbah As System.Windows.Forms.Button
Friend WithEvents ButtonTambah As System.Windows.Forms.Button
Friend WithEvents ButtonPhoto As System.Windows.Forms.Button
Friend WithEvents PictureBoxPhoto As System.Windows.Forms.PictureBox
Friend WithEvents TextBoxHP As System.Windows.Forms.TextBox
Friend WithEvents Label13 As System.Windows.Forms.Label
Friend WithEvents TextBoxTelephone As System.Windows.Forms.TextBox
Friend WithEvents Label12 As System.Windows.Forms.Label
Friend WithEvents TextBoxKodepos As System.Windows.Forms.TextBox
Friend WithEvents Label11 As System.Windows.Forms.Label
Friend WithEvents TextBoxKota As System.Windows.Forms.TextBox
Friend WithEvents Label10 As System.Windows.Forms.Label
Friend WithEvents TextBoxAlamat As System.Windows.Forms.TextBox
Friend WithEvents Label9 As System.Windows.Forms.Label
Friend WithEvents TextBoxEmail As System.Windows.Forms.TextBox
Friend WithEvents Label8 As System.Windows.Forms.Label
Friend WithEvents ComboBoxAgama As System.Windows.Forms.ComboBox
Friend WithEvents Label7 As System.Windows.Forms.Label
Friend WithEvents DateTimePickerLahir As System.Windows.Forms.DateTimePicker
Friend WithEvents Label6 As System.Windows.Forms.Label
Friend WithEvents TextBoxTempatLahir As System.Windows.Forms.TextBox
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents ComboBoxJenisKelamin As System.Windows.Forms.ComboBox
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents TextBoxNama As System.Windows.Forms.TextBox
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents TextBoxNIP As System.Windows.Forms.TextBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView
Friend WithEvents TextBoxNamaSmpAsal As System.Windows.Forms.TextBox
Friend WithEvents Label15 As System.Windows.Forms.Label
Friend WithEvents DateTimePickerMasuk As System.Windows.Forms.DateTimePicker
Friend WithEvents Label16 As System.Windows.Forms.Label
Friend WithEvents TextBoxAlamatOrtu As System.Windows.Forms.TextBox
Friend WithEvents Label18 As System.Windows.Forms.Label
Friend WithEvents TextBoxNamaIbu As System.Windows.Forms.TextBox
Friend WithEvents Label17 As System.Windows.Forms.Label
Friend WithEvents TextBoxNamaAyah As System.Windows.Forms.TextBox
Friend WithEvents Label14 As System.Windows.Forms.Label
Friend WithEvents TextBoxHpOrtu As System.Windows.Forms.TextBox
Friend WithEvents Label21 As System.Windows.Forms.Label
Friend WithEvents TextBoxTelpOrtu As System.Windows.Forms.TextBox
Friend WithEvents Label22 As System.Windows.Forms.Label
Friend WithEvents TextBoxKodeposOrtu As System.Windows.Forms.TextBox
Friend WithEvents Label19 As System.Windows.Forms.Label
Friend WithEvents TextBoxKotaOrtu As System.Windows.Forms.TextBox
Friend WithEvents Label20 As System.Windows.Forms.Label
Friend WithEvents ID As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NIS As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents Nama As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents JenisKelamin As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents TempatLahir As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents TanggalLahir As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents Agama As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents Email As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents Alamat As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents Kota As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents KodePos As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NoTelephone As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NoHP As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents TanggalMasuk As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NamaSMPAsal As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NamaAyah As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NamaIbu As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents AlamatOrangTua As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents KotaOrangTua As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents KodePosOrangTua As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NoTelephoneOrangTua As System.Windows.Forms.DataGridViewTextBoxColumn
Friend WithEvents NoHPOrangTua As System.Windows.Forms.DataGridViewTextBoxColumn
End Class