-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmRecruitDetail.vb
1809 lines (1702 loc) · 74.8 KB
/
frmRecruitDetail.vb
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
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Imports se = System.Environment
Imports wf = System.Windows.Forms
Public Class frmRecruitDetail
Inherits System.Windows.Forms.Form
Implements DataboundForm
Private cmRecruits As CurrencyManager
Private cmAddresses As CurrencyManager
Friend WithEvents tpStudySpecific As System.Windows.Forms.TabPage
Friend WithEvents cmbPersonType As System.Windows.Forms.ComboBox
Friend WithEvents Label6 As System.Windows.Forms.Label
Friend WithEvents lblWebQuitDate As System.Windows.Forms.Label
Friend WithEvents txtWebQuitDate As System.Windows.Forms.TextBox
Friend WithEvents gbWebEnteredInfo As System.Windows.Forms.GroupBox
Friend WithEvents txtWebName As System.Windows.Forms.TextBox
Friend WithEvents Label7 As System.Windows.Forms.Label
Friend WithEvents txtWebConsumno As System.Windows.Forms.TextBox
Friend WithEvents lblWebConsumno As System.Windows.Forms.Label
Friend WithEvents txtWebCityStateZip As System.Windows.Forms.TextBox
Friend WithEvents txtWebAddress2 As System.Windows.Forms.TextBox
Friend WithEvents Label8 As System.Windows.Forms.Label
Friend WithEvents txtWebAddress1 As System.Windows.Forms.TextBox
Friend WithEvents txtWebBirthDate As System.Windows.Forms.TextBox
Friend WithEvents Label10 As System.Windows.Forms.Label
Friend WithEvents txtConsumno As System.Windows.Forms.TextBox
Friend WithEvents lblConsumNo As System.Windows.Forms.Label
Friend WithEvents txtWebHomePhone As System.Windows.Forms.TextBox
Friend WithEvents Label11 As System.Windows.Forms.Label
Friend WithEvents btnMarkEnrolled As System.Windows.Forms.Button
Friend WithEvents txtQuitDate As System.Windows.Forms.TextBox
Friend WithEvents lblQuitDate As System.Windows.Forms.Label
Friend WithEvents btnMarkNotEnrolled As System.Windows.Forms.Button
Friend WithEvents gbGHEnrollmentCall As System.Windows.Forms.GroupBox
Private thisRecruit As TrackerData.RecruitsRow
Private StatusesToInsert As New Hashtable
Enum Statuses
EnrolleeYes
EnrolleeNo
NewQuitDate
End Enum
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
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.
Friend WithEvents ep As System.Windows.Forms.ErrorProvider
Friend WithEvents il As System.Windows.Forms.ImageList
Friend WithEvents tt As System.Windows.Forms.ToolTip
Friend WithEvents txtRecNum As System.Windows.Forms.TextBox
Friend WithEvents Tracker1 As Tracker.TrackerData
Friend WithEvents btnGoFirst As System.Windows.Forms.Button
Friend WithEvents btnGoPrevious As System.Windows.Forms.Button
Friend WithEvents btnGoNext As System.Windows.Forms.Button
Friend WithEvents btnGoLast As System.Windows.Forms.Button
Friend WithEvents tpContacts As System.Windows.Forms.TabPage
Friend WithEvents dgContacts As System.Windows.Forms.DataGrid
Friend WithEvents tc As System.Windows.Forms.TabControl
Friend WithEvents tpStatus As System.Windows.Forms.TabPage
Friend WithEvents dgStatus As System.Windows.Forms.DataGrid
Friend WithEvents tpAddresses As System.Windows.Forms.TabPage
Friend WithEvents dgAddresses As System.Windows.Forms.DataGrid
Friend WithEvents dgsContacts As System.Windows.Forms.DataGridTableStyle
Friend WithEvents tbcContactDate As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcInitiator As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcResult As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcType As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcType As DataGridComboBoxColumn
Friend WithEvents tbcType As DGColumnStyles.DataGridComboBoxColumn
' Friend WithEvents tbcNotes As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcNotes As DGColumnStyles.WrappingTextBoxColumn
Friend WithEvents tbcStaffPerson As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents dgsStatuses As System.Windows.Forms.DataGridTableStyle
Friend WithEvents tbcDate As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcStatus As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcStatus As CHCRTracker.DataGridComboBoxColumn
Friend WithEvents tbcStatus As DGColumnStyles.DataGridComboBoxColumn
Friend WithEvents tbcRecordedBy As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents txtSex As System.Windows.Forms.TextBox
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents txtBDate As System.Windows.Forms.TextBox
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents txtNameSuffix As System.Windows.Forms.TextBox
Friend WithEvents txtLastName As System.Windows.Forms.TextBox
Friend WithEvents txtMiddleName As System.Windows.Forms.TextBox
Friend WithEvents txtFirstName As System.Windows.Forms.TextBox
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents lblCurrentStatus As System.Windows.Forms.Label
Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
Friend WithEvents dgPhoneNumbers As System.Windows.Forms.DataGrid
Friend WithEvents dgsPhoneNumbers As System.Windows.Forms.DataGridTableStyle
Friend WithEvents tbcAreaCode As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcPhoneNumber As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcPhoneType As System.Windows.Forms.DataGridTextBoxColumn
' Friend WithEvents tbcPhoneType As CHCRTracker.DataGridComboBoxColumn
Friend WithEvents tbcPhoneType As DGColumnStyles.DataGridComboBoxColumn
Friend WithEvents tbcSource As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcExtension As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcPhoneRecordedBy As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents lblRecInfo As System.Windows.Forms.Label
Friend WithEvents gbAccessCode As System.Windows.Forms.GroupBox
Friend WithEvents btnNewAccessCode As System.Windows.Forms.Button
Friend WithEvents txtAccNum As System.Windows.Forms.TextBox
Friend WithEvents txtEMailAddress As System.Windows.Forms.TextBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents dgsAddresses As System.Windows.Forms.DataGridTableStyle
Friend WithEvents tbcPreference As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcLine1 As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcLine2 As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcCity As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcState As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcZip As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcRecordedB As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents tbcBounceDate As System.Windows.Forms.DataGridTextBoxColumn
Friend WithEvents cm As System.Windows.Forms.ContextMenu
Friend WithEvents mnuAddToAddresses As System.Windows.Forms.MenuItem
Friend WithEvents mnuDeleteThis As System.Windows.Forms.MenuItem
Friend WithEvents mnuDeleteAll As System.Windows.Forms.MenuItem
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmRecruitDetail))
Me.ep = New System.Windows.Forms.ErrorProvider(Me.components)
Me.btnGoFirst = New System.Windows.Forms.Button
Me.il = New System.Windows.Forms.ImageList(Me.components)
Me.btnGoPrevious = New System.Windows.Forms.Button
Me.btnGoNext = New System.Windows.Forms.Button
Me.btnGoLast = New System.Windows.Forms.Button
Me.tt = New System.Windows.Forms.ToolTip(Me.components)
Me.btnNewAccessCode = New System.Windows.Forms.Button
Me.lblWebQuitDate = New System.Windows.Forms.Label
Me.lblQuitDate = New System.Windows.Forms.Label
Me.gbWebEnteredInfo = New System.Windows.Forms.GroupBox
Me.txtWebHomePhone = New System.Windows.Forms.TextBox
Me.Label11 = New System.Windows.Forms.Label
Me.txtWebBirthDate = New System.Windows.Forms.TextBox
Me.Label10 = New System.Windows.Forms.Label
Me.txtWebConsumno = New System.Windows.Forms.TextBox
Me.lblWebConsumno = New System.Windows.Forms.Label
Me.txtWebCityStateZip = New System.Windows.Forms.TextBox
Me.txtWebAddress2 = New System.Windows.Forms.TextBox
Me.Label8 = New System.Windows.Forms.Label
Me.txtWebAddress1 = New System.Windows.Forms.TextBox
Me.txtWebName = New System.Windows.Forms.TextBox
Me.Label7 = New System.Windows.Forms.Label
Me.txtWebQuitDate = New System.Windows.Forms.TextBox
Me.btnMarkNotEnrolled = New System.Windows.Forms.Button
Me.btnMarkEnrolled = New System.Windows.Forms.Button
Me.txtRecNum = New System.Windows.Forms.TextBox
Me.Tracker1 = New Tracker.TrackerData
Me.tc = New System.Windows.Forms.TabControl
Me.tpContacts = New System.Windows.Forms.TabPage
Me.dgContacts = New System.Windows.Forms.DataGrid
Me.dgsContacts = New System.Windows.Forms.DataGridTableStyle
Me.tbcType = New DGColumnStyles.DataGridComboBoxColumn
Me.tbcInitiator = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcResult = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcContactDate = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcNotes = New DGColumnStyles.WrappingTextBoxColumn
Me.tbcStaffPerson = New System.Windows.Forms.DataGridTextBoxColumn
Me.tpStatus = New System.Windows.Forms.TabPage
Me.dgStatus = New System.Windows.Forms.DataGrid
Me.dgsStatuses = New System.Windows.Forms.DataGridTableStyle
Me.tbcStatus = New DGColumnStyles.DataGridComboBoxColumn
Me.tbcDate = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcRecordedBy = New System.Windows.Forms.DataGridTextBoxColumn
Me.tpAddresses = New System.Windows.Forms.TabPage
Me.Panel1 = New System.Windows.Forms.Panel
Me.dgAddresses = New System.Windows.Forms.DataGrid
Me.dgsAddresses = New System.Windows.Forms.DataGridTableStyle
Me.tbcPreference = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcLine1 = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcLine2 = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcCity = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcState = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcZip = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcRecordedB = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcBounceDate = New System.Windows.Forms.DataGridTextBoxColumn
Me.Label1 = New System.Windows.Forms.Label
Me.txtEMailAddress = New System.Windows.Forms.TextBox
Me.TabPage1 = New System.Windows.Forms.TabPage
Me.dgPhoneNumbers = New System.Windows.Forms.DataGrid
Me.dgsPhoneNumbers = New System.Windows.Forms.DataGridTableStyle
Me.tbcAreaCode = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcPhoneNumber = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcExtension = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcPhoneType = New DGColumnStyles.DataGridComboBoxColumn
Me.tbcSource = New System.Windows.Forms.DataGridTextBoxColumn
Me.tbcPhoneRecordedBy = New System.Windows.Forms.DataGridTextBoxColumn
Me.tpStudySpecific = New System.Windows.Forms.TabPage
Me.gbGHEnrollmentCall = New System.Windows.Forms.GroupBox
Me.txtQuitDate = New System.Windows.Forms.TextBox
Me.txtConsumno = New System.Windows.Forms.TextBox
Me.lblConsumNo = New System.Windows.Forms.Label
Me.cmbPersonType = New System.Windows.Forms.ComboBox
Me.Label6 = New System.Windows.Forms.Label
Me.txtSex = New System.Windows.Forms.TextBox
Me.Label3 = New System.Windows.Forms.Label
Me.txtBDate = New System.Windows.Forms.TextBox
Me.Label4 = New System.Windows.Forms.Label
Me.GroupBox1 = New System.Windows.Forms.GroupBox
Me.txtNameSuffix = New System.Windows.Forms.TextBox
Me.txtLastName = New System.Windows.Forms.TextBox
Me.txtMiddleName = New System.Windows.Forms.TextBox
Me.txtFirstName = New System.Windows.Forms.TextBox
Me.Label2 = New System.Windows.Forms.Label
Me.lblCurrentStatus = New System.Windows.Forms.Label
Me.lblRecInfo = New System.Windows.Forms.Label
Me.gbAccessCode = New System.Windows.Forms.GroupBox
Me.txtAccNum = New System.Windows.Forms.TextBox
Me.cm = New System.Windows.Forms.ContextMenu
Me.mnuAddToAddresses = New System.Windows.Forms.MenuItem
Me.mnuDeleteThis = New System.Windows.Forms.MenuItem
Me.mnuDeleteAll = New System.Windows.Forms.MenuItem
CType(Me.ep, System.ComponentModel.ISupportInitialize).BeginInit()
Me.gbWebEnteredInfo.SuspendLayout()
CType(Me.Tracker1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.tc.SuspendLayout()
Me.tpContacts.SuspendLayout()
CType(Me.dgContacts, System.ComponentModel.ISupportInitialize).BeginInit()
Me.tpStatus.SuspendLayout()
CType(Me.dgStatus, System.ComponentModel.ISupportInitialize).BeginInit()
Me.tpAddresses.SuspendLayout()
Me.Panel1.SuspendLayout()
CType(Me.dgAddresses, System.ComponentModel.ISupportInitialize).BeginInit()
Me.TabPage1.SuspendLayout()
CType(Me.dgPhoneNumbers, System.ComponentModel.ISupportInitialize).BeginInit()
Me.tpStudySpecific.SuspendLayout()
Me.gbGHEnrollmentCall.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.gbAccessCode.SuspendLayout()
Me.SuspendLayout()
'
'ep
'
Me.ep.ContainerControl = Me
'
'btnGoFirst
'
Me.btnGoFirst.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.btnGoFirst.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnGoFirst.ImageIndex = 0
Me.btnGoFirst.ImageList = Me.il
Me.btnGoFirst.Location = New System.Drawing.Point(316, 433)
Me.btnGoFirst.Name = "btnGoFirst"
Me.btnGoFirst.Size = New System.Drawing.Size(41, 23)
Me.btnGoFirst.TabIndex = 0
Me.btnGoFirst.TabStop = False
Me.tt.SetToolTip(Me.btnGoFirst, "Move to First record")
'
'il
'
Me.il.ImageStream = CType(resources.GetObject("il.ImageStream"), System.Windows.Forms.ImageListStreamer)
Me.il.TransparentColor = System.Drawing.Color.Transparent
Me.il.Images.SetKeyName(0, "")
Me.il.Images.SetKeyName(1, "")
Me.il.Images.SetKeyName(2, "")
Me.il.Images.SetKeyName(3, "")
'
'btnGoPrevious
'
Me.btnGoPrevious.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.btnGoPrevious.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnGoPrevious.ImageIndex = 2
Me.btnGoPrevious.ImageList = Me.il
Me.btnGoPrevious.Location = New System.Drawing.Point(364, 433)
Me.btnGoPrevious.Name = "btnGoPrevious"
Me.btnGoPrevious.Size = New System.Drawing.Size(41, 23)
Me.btnGoPrevious.TabIndex = 1
Me.btnGoPrevious.TabStop = False
Me.tt.SetToolTip(Me.btnGoPrevious, "Move back one record")
'
'btnGoNext
'
Me.btnGoNext.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.btnGoNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnGoNext.ImageIndex = 3
Me.btnGoNext.ImageList = Me.il
Me.btnGoNext.Location = New System.Drawing.Point(453, 433)
Me.btnGoNext.Name = "btnGoNext"
Me.btnGoNext.Size = New System.Drawing.Size(40, 23)
Me.btnGoNext.TabIndex = 2
Me.btnGoNext.TabStop = False
Me.tt.SetToolTip(Me.btnGoNext, "Move forward one record")
'
'btnGoLast
'
Me.btnGoLast.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.btnGoLast.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnGoLast.ImageIndex = 1
Me.btnGoLast.ImageList = Me.il
Me.btnGoLast.Location = New System.Drawing.Point(501, 433)
Me.btnGoLast.Name = "btnGoLast"
Me.btnGoLast.Size = New System.Drawing.Size(40, 23)
Me.btnGoLast.TabIndex = 3
Me.btnGoLast.TabStop = False
Me.tt.SetToolTip(Me.btnGoLast, "Move to Last record")
'
'btnNewAccessCode
'
Me.btnNewAccessCode.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnNewAccessCode.Location = New System.Drawing.Point(96, 21)
Me.btnNewAccessCode.Name = "btnNewAccessCode"
Me.btnNewAccessCode.Size = New System.Drawing.Size(45, 23)
Me.btnNewAccessCode.TabIndex = 1
Me.btnNewAccessCode.TabStop = False
Me.btnNewAccessCode.Text = "&New"
Me.tt.SetToolTip(Me.btnNewAccessCode, "Assign this person a new Access Code")
'
'lblWebQuitDate
'
Me.lblWebQuitDate.AutoSize = True
Me.lblWebQuitDate.Location = New System.Drawing.Point(327, 23)
Me.lblWebQuitDate.Name = "lblWebQuitDate"
Me.lblWebQuitDate.Size = New System.Drawing.Size(66, 16)
Me.lblWebQuitDate.TabIndex = 33
Me.lblWebQuitDate.Text = "Quit Date:"
Me.tt.SetToolTip(Me.lblWebQuitDate, "The date the person has committed to quit smoking")
'
'lblQuitDate
'
Me.lblQuitDate.AutoSize = True
Me.lblQuitDate.Location = New System.Drawing.Point(284, 25)
Me.lblQuitDate.Name = "lblQuitDate"
Me.lblQuitDate.Size = New System.Drawing.Size(66, 16)
Me.lblQuitDate.TabIndex = 48
Me.lblQuitDate.Text = "Quit Date:"
Me.tt.SetToolTip(Me.lblQuitDate, "The date the person has committed to quit smoking")
'
'gbWebEnteredInfo
'
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebHomePhone)
Me.gbWebEnteredInfo.Controls.Add(Me.Label11)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebBirthDate)
Me.gbWebEnteredInfo.Controls.Add(Me.Label10)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebConsumno)
Me.gbWebEnteredInfo.Controls.Add(Me.lblWebConsumno)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebCityStateZip)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebAddress2)
Me.gbWebEnteredInfo.Controls.Add(Me.Label8)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebAddress1)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebName)
Me.gbWebEnteredInfo.Controls.Add(Me.Label7)
Me.gbWebEnteredInfo.Controls.Add(Me.txtWebQuitDate)
Me.gbWebEnteredInfo.Controls.Add(Me.lblWebQuitDate)
Me.gbWebEnteredInfo.Location = New System.Drawing.Point(10, 83)
Me.gbWebEnteredInfo.Name = "gbWebEnteredInfo"
Me.gbWebEnteredInfo.Size = New System.Drawing.Size(461, 178)
Me.gbWebEnteredInfo.TabIndex = 34
Me.gbWebEnteredInfo.TabStop = False
Me.gbWebEnteredInfo.Text = "Info Entered on the Website"
Me.tt.SetToolTip(Me.gbWebEnteredInfo, "This information is not editable.")
'
'txtWebHomePhone
'
Me.txtWebHomePhone.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebHomePhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebHomePhone.Location = New System.Drawing.Point(211, 140)
Me.txtWebHomePhone.Name = "txtWebHomePhone"
Me.txtWebHomePhone.ReadOnly = True
Me.txtWebHomePhone.Size = New System.Drawing.Size(99, 23)
Me.txtWebHomePhone.TabIndex = 44
'
'Label11
'
Me.Label11.AutoSize = True
Me.Label11.Location = New System.Drawing.Point(211, 121)
Me.Label11.Name = "Label11"
Me.Label11.Size = New System.Drawing.Size(85, 16)
Me.Label11.TabIndex = 45
Me.Label11.Text = "Home Phone:"
'
'txtWebBirthDate
'
Me.txtWebBirthDate.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebBirthDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebBirthDate.Location = New System.Drawing.Point(211, 90)
Me.txtWebBirthDate.Name = "txtWebBirthDate"
Me.txtWebBirthDate.ReadOnly = True
Me.txtWebBirthDate.Size = New System.Drawing.Size(99, 23)
Me.txtWebBirthDate.TabIndex = 42
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.Location = New System.Drawing.Point(211, 71)
Me.Label10.Name = "Label10"
Me.Label10.Size = New System.Drawing.Size(68, 16)
Me.Label10.TabIndex = 43
Me.Label10.Text = "Birth date:"
'
'txtWebConsumno
'
Me.txtWebConsumno.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebConsumno.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebConsumno.Location = New System.Drawing.Point(211, 42)
Me.txtWebConsumno.Name = "txtWebConsumno"
Me.txtWebConsumno.ReadOnly = True
Me.txtWebConsumno.Size = New System.Drawing.Size(99, 23)
Me.txtWebConsumno.TabIndex = 40
'
'lblWebConsumno
'
Me.lblWebConsumno.AutoSize = True
Me.lblWebConsumno.Location = New System.Drawing.Point(211, 23)
Me.lblWebConsumno.Name = "lblWebConsumno"
Me.lblWebConsumno.Size = New System.Drawing.Size(120, 16)
Me.lblWebConsumno.TabIndex = 41
Me.lblWebConsumno.Text = "Consumer Number:"
'
'txtWebCityStateZip
'
Me.txtWebCityStateZip.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebCityStateZip.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebCityStateZip.Location = New System.Drawing.Point(4, 140)
Me.txtWebCityStateZip.Name = "txtWebCityStateZip"
Me.txtWebCityStateZip.ReadOnly = True
Me.txtWebCityStateZip.Size = New System.Drawing.Size(192, 23)
Me.txtWebCityStateZip.TabIndex = 39
'
'txtWebAddress2
'
Me.txtWebAddress2.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebAddress2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebAddress2.Location = New System.Drawing.Point(4, 115)
Me.txtWebAddress2.Name = "txtWebAddress2"
Me.txtWebAddress2.ReadOnly = True
Me.txtWebAddress2.Size = New System.Drawing.Size(192, 23)
Me.txtWebAddress2.TabIndex = 38
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Location = New System.Drawing.Point(4, 71)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(59, 16)
Me.Label8.TabIndex = 37
Me.Label8.Text = "Address:"
'
'txtWebAddress1
'
Me.txtWebAddress1.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebAddress1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebAddress1.Location = New System.Drawing.Point(4, 90)
Me.txtWebAddress1.Name = "txtWebAddress1"
Me.txtWebAddress1.ReadOnly = True
Me.txtWebAddress1.Size = New System.Drawing.Size(192, 23)
Me.txtWebAddress1.TabIndex = 36
'
'txtWebName
'
Me.txtWebName.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebName.Location = New System.Drawing.Point(4, 42)
Me.txtWebName.Name = "txtWebName"
Me.txtWebName.ReadOnly = True
Me.txtWebName.Size = New System.Drawing.Size(192, 23)
Me.txtWebName.TabIndex = 34
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Location = New System.Drawing.Point(4, 23)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(46, 16)
Me.Label7.TabIndex = 35
Me.Label7.Text = "Name:"
'
'txtWebQuitDate
'
Me.txtWebQuitDate.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtWebQuitDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtWebQuitDate.Location = New System.Drawing.Point(327, 42)
Me.txtWebQuitDate.Name = "txtWebQuitDate"
Me.txtWebQuitDate.ReadOnly = True
Me.txtWebQuitDate.Size = New System.Drawing.Size(100, 23)
Me.txtWebQuitDate.TabIndex = 32
'
'btnMarkNotEnrolled
'
Me.btnMarkNotEnrolled.Location = New System.Drawing.Point(40, 91)
Me.btnMarkNotEnrolled.Name = "btnMarkNotEnrolled"
Me.btnMarkNotEnrolled.Size = New System.Drawing.Size(125, 32)
Me.btnMarkNotEnrolled.TabIndex = 49
Me.btnMarkNotEnrolled.Text = "No"
Me.tt.SetToolTip(Me.btnMarkNotEnrolled, "Inform UMich that this person is *not* a GH Enrollee")
Me.btnMarkNotEnrolled.UseVisualStyleBackColor = True
'
'btnMarkEnrolled
'
Me.btnMarkEnrolled.Location = New System.Drawing.Point(40, 41)
Me.btnMarkEnrolled.Name = "btnMarkEnrolled"
Me.btnMarkEnrolled.Size = New System.Drawing.Size(125, 32)
Me.btnMarkEnrolled.TabIndex = 46
Me.btnMarkEnrolled.Text = "Yes"
Me.tt.SetToolTip(Me.btnMarkEnrolled, "Inform UMich that this person *is* a GH Enrollee")
Me.btnMarkEnrolled.UseVisualStyleBackColor = True
'
'txtRecNum
'
Me.txtRecNum.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.txtRecNum.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtRecNum.Location = New System.Drawing.Point(412, 433)
Me.txtRecNum.Name = "txtRecNum"
Me.txtRecNum.Size = New System.Drawing.Size(33, 23)
Me.txtRecNum.TabIndex = 4
Me.txtRecNum.TabStop = False
Me.txtRecNum.Text = "0"
Me.txtRecNum.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'Tracker1
'
Me.Tracker1.DataSetName = "Tracker"
Me.Tracker1.Locale = New System.Globalization.CultureInfo("en-US")
Me.Tracker1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
'
'tc
'
Me.tc.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.tc.Controls.Add(Me.tpContacts)
Me.tc.Controls.Add(Me.tpStatus)
Me.tc.Controls.Add(Me.tpAddresses)
Me.tc.Controls.Add(Me.TabPage1)
Me.tc.Controls.Add(Me.tpStudySpecific)
Me.tc.Location = New System.Drawing.Point(8, 100)
Me.tc.Name = "tc"
Me.tc.SelectedIndex = 0
Me.tc.Size = New System.Drawing.Size(761, 325)
Me.tc.TabIndex = 8
'
'tpContacts
'
Me.tpContacts.Controls.Add(Me.dgContacts)
Me.tpContacts.Location = New System.Drawing.Point(4, 25)
Me.tpContacts.Name = "tpContacts"
Me.tpContacts.Size = New System.Drawing.Size(753, 296)
Me.tpContacts.TabIndex = 0
Me.tpContacts.Text = "Contacts"
'
'dgContacts
'
Me.dgContacts.CaptionText = "Contacts between Project Staff and Recruit"
Me.dgContacts.DataMember = ""
Me.dgContacts.Dock = System.Windows.Forms.DockStyle.Fill
Me.dgContacts.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgContacts.Location = New System.Drawing.Point(0, 0)
Me.dgContacts.Name = "dgContacts"
Me.dgContacts.Size = New System.Drawing.Size(753, 296)
Me.dgContacts.TabIndex = 0
Me.dgContacts.TableStyles.AddRange(New System.Windows.Forms.DataGridTableStyle() {Me.dgsContacts})
'
'dgsContacts
'
Me.dgsContacts.BackColor = System.Drawing.Color.Lavender
Me.dgsContacts.DataGrid = Me.dgContacts
Me.dgsContacts.GridColumnStyles.AddRange(New System.Windows.Forms.DataGridColumnStyle() {Me.tbcType, Me.tbcInitiator, Me.tbcResult, Me.tbcContactDate, Me.tbcNotes, Me.tbcStaffPerson})
Me.dgsContacts.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgsContacts.MappingName = "RecruitContacts"
Me.dgsContacts.PreferredRowHeight = 0
'
'tbcType
'
Me.tbcType.Format = ""
Me.tbcType.FormatInfo = Nothing
Me.tbcType.HeaderText = "Type"
Me.tbcType.MappingName = "ContactType"
Me.tbcType.NullText = ""
Me.tbcType.Width = 125
'
'tbcInitiator
'
Me.tbcInitiator.Format = ""
Me.tbcInitiator.FormatInfo = Nothing
Me.tbcInitiator.HeaderText = "Initiated By"
Me.tbcInitiator.MappingName = "Initiator"
Me.tbcInitiator.NullText = ""
Me.tbcInitiator.Width = 90
'
'tbcResult
'
Me.tbcResult.Format = ""
Me.tbcResult.FormatInfo = Nothing
Me.tbcResult.HeaderText = "Result"
Me.tbcResult.MappingName = "Result"
Me.tbcResult.NullText = ""
Me.tbcResult.Width = 75
'
'tbcContactDate
'
Me.tbcContactDate.Format = "g"
Me.tbcContactDate.FormatInfo = Nothing
Me.tbcContactDate.HeaderText = "Date"
Me.tbcContactDate.MappingName = "ContactDate"
Me.tbcContactDate.Width = 200
'
'tbcNotes
'
Me.tbcNotes.Format = ""
Me.tbcNotes.FormatInfo = Nothing
Me.tbcNotes.HeaderText = "Notes"
Me.tbcNotes.MappingName = "Notes"
Me.tbcNotes.NullText = ""
Me.tbcNotes.Width = 275
'
'tbcStaffPerson
'
Me.tbcStaffPerson.Format = ""
Me.tbcStaffPerson.FormatInfo = Nothing
Me.tbcStaffPerson.HeaderText = "Staff Person"
Me.tbcStaffPerson.MappingName = "AddedBy"
Me.tbcStaffPerson.NullText = ""
Me.tbcStaffPerson.ReadOnly = True
Me.tbcStaffPerson.Width = 75
'
'tpStatus
'
Me.tpStatus.Controls.Add(Me.dgStatus)
Me.tpStatus.Location = New System.Drawing.Point(4, 25)
Me.tpStatus.Name = "tpStatus"
Me.tpStatus.Size = New System.Drawing.Size(753, 296)
Me.tpStatus.TabIndex = 1
Me.tpStatus.Text = "Status History"
'
'dgStatus
'
Me.dgStatus.CaptionText = "Status"
Me.dgStatus.DataMember = ""
Me.dgStatus.Dock = System.Windows.Forms.DockStyle.Fill
Me.dgStatus.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgStatus.Location = New System.Drawing.Point(0, 0)
Me.dgStatus.Name = "dgStatus"
Me.dgStatus.Size = New System.Drawing.Size(753, 296)
Me.dgStatus.TabIndex = 0
Me.dgStatus.TableStyles.AddRange(New System.Windows.Forms.DataGridTableStyle() {Me.dgsStatuses})
'
'dgsStatuses
'
Me.dgsStatuses.AlternatingBackColor = System.Drawing.Color.Lavender
Me.dgsStatuses.DataGrid = Me.dgStatus
Me.dgsStatuses.GridColumnStyles.AddRange(New System.Windows.Forms.DataGridColumnStyle() {Me.tbcStatus, Me.tbcDate, Me.tbcRecordedBy})
Me.dgsStatuses.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgsStatuses.MappingName = "RecruitStatuses"
'
'tbcStatus
'
Me.tbcStatus.Format = ""
Me.tbcStatus.FormatInfo = Nothing
Me.tbcStatus.HeaderText = "Status"
Me.tbcStatus.MappingName = "Status"
Me.tbcStatus.NullText = ""
Me.tbcStatus.Width = 275
'
'tbcDate
'
Me.tbcDate.Format = "g"
Me.tbcDate.FormatInfo = Nothing
Me.tbcDate.HeaderText = "Date"
Me.tbcDate.MappingName = "StatusDate"
Me.tbcDate.NullText = ""
Me.tbcDate.Width = 150
'
'tbcRecordedBy
'
Me.tbcRecordedBy.Format = ""
Me.tbcRecordedBy.FormatInfo = Nothing
Me.tbcRecordedBy.HeaderText = "Recorded By"
Me.tbcRecordedBy.MappingName = "AddedBy"
Me.tbcRecordedBy.ReadOnly = True
Me.tbcRecordedBy.Width = 75
'
'tpAddresses
'
Me.tpAddresses.Controls.Add(Me.Panel1)
Me.tpAddresses.Controls.Add(Me.Label1)
Me.tpAddresses.Controls.Add(Me.txtEMailAddress)
Me.tpAddresses.Location = New System.Drawing.Point(4, 25)
Me.tpAddresses.Name = "tpAddresses"
Me.tpAddresses.Size = New System.Drawing.Size(753, 296)
Me.tpAddresses.TabIndex = 2
Me.tpAddresses.Text = "Addresses"
'
'Panel1
'
Me.Panel1.Controls.Add(Me.dgAddresses)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
Me.Panel1.Location = New System.Drawing.Point(0, 0)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(753, 296)
Me.Panel1.TabIndex = 27
'
'dgAddresses
'
Me.dgAddresses.CaptionText = "Mailing Addresses"
Me.dgAddresses.DataMember = ""
Me.dgAddresses.Dock = System.Windows.Forms.DockStyle.Fill
Me.dgAddresses.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgAddresses.Location = New System.Drawing.Point(0, 0)
Me.dgAddresses.Name = "dgAddresses"
Me.dgAddresses.Size = New System.Drawing.Size(753, 296)
Me.dgAddresses.TabIndex = 1
Me.dgAddresses.TableStyles.AddRange(New System.Windows.Forms.DataGridTableStyle() {Me.dgsAddresses})
'
'dgsAddresses
'
Me.dgsAddresses.AlternatingBackColor = System.Drawing.Color.Lavender
Me.dgsAddresses.DataGrid = Me.dgAddresses
Me.dgsAddresses.GridColumnStyles.AddRange(New System.Windows.Forms.DataGridColumnStyle() {Me.tbcPreference, Me.tbcLine1, Me.tbcLine2, Me.tbcCity, Me.tbcState, Me.tbcZip, Me.tbcRecordedB, Me.tbcBounceDate})
Me.dgsAddresses.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgsAddresses.MappingName = "Addresses"
'
'tbcPreference
'
Me.tbcPreference.Format = ""
Me.tbcPreference.FormatInfo = Nothing
Me.tbcPreference.HeaderText = "Preference Rank"
Me.tbcPreference.MappingName = "PreferenceRank"
Me.tbcPreference.NullText = ""
Me.tbcPreference.Width = 60
'
'tbcLine1
'
Me.tbcLine1.Format = ""
Me.tbcLine1.FormatInfo = Nothing
Me.tbcLine1.HeaderText = "Line 1"
Me.tbcLine1.MappingName = "Line1"
Me.tbcLine1.NullText = ""
Me.tbcLine1.Width = 175
'
'tbcLine2
'
Me.tbcLine2.Format = ""
Me.tbcLine2.FormatInfo = Nothing
Me.tbcLine2.HeaderText = "Line 2"
Me.tbcLine2.MappingName = "Line2"
Me.tbcLine2.NullText = ""
Me.tbcLine2.Width = 175
'
'tbcCity
'
Me.tbcCity.Format = ""
Me.tbcCity.FormatInfo = Nothing
Me.tbcCity.HeaderText = "City"
Me.tbcCity.MappingName = "City"
Me.tbcCity.NullText = ""
Me.tbcCity.Width = 75
'
'tbcState
'
Me.tbcState.Format = ""
Me.tbcState.FormatInfo = Nothing
Me.tbcState.HeaderText = "State"
Me.tbcState.MappingName = "State"
Me.tbcState.NullText = ""
Me.tbcState.Width = 50
'
'tbcZip
'
Me.tbcZip.Format = ""
Me.tbcZip.FormatInfo = Nothing
Me.tbcZip.HeaderText = "Zip"
Me.tbcZip.MappingName = "Zip"
Me.tbcZip.NullText = ""
Me.tbcZip.Width = 75
'
'tbcRecordedB
'
Me.tbcRecordedB.Format = ""
Me.tbcRecordedB.FormatInfo = Nothing
Me.tbcRecordedB.HeaderText = "Recorded By"
Me.tbcRecordedB.MappingName = "AddedBy"
Me.tbcRecordedB.NullText = ""
Me.tbcRecordedB.Width = 75
'
'tbcBounceDate
'
Me.tbcBounceDate.Format = ""
Me.tbcBounceDate.FormatInfo = Nothing
Me.tbcBounceDate.HeaderText = "Bounce Date"
Me.tbcBounceDate.MappingName = "BounceDate"
Me.tbcBounceDate.NullText = ""
Me.tbcBounceDate.Width = 125
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(8, 12)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(48, 16)
Me.Label1.TabIndex = 26
Me.Label1.Text = "E-Mail:"
'
'txtEMailAddress
'
Me.txtEMailAddress.Location = New System.Drawing.Point(64, 8)
Me.txtEMailAddress.Name = "txtEMailAddress"
Me.txtEMailAddress.Size = New System.Drawing.Size(228, 23)
Me.txtEMailAddress.TabIndex = 25
'
'TabPage1
'
Me.TabPage1.Controls.Add(Me.dgPhoneNumbers)
Me.TabPage1.Location = New System.Drawing.Point(4, 25)
Me.TabPage1.Name = "TabPage1"
Me.TabPage1.Size = New System.Drawing.Size(753, 296)
Me.TabPage1.TabIndex = 3
Me.TabPage1.Text = "Phone Numbers"
'
'dgPhoneNumbers
'
Me.dgPhoneNumbers.CaptionText = "Phone Numbers"
Me.dgPhoneNumbers.DataMember = ""
Me.dgPhoneNumbers.Dock = System.Windows.Forms.DockStyle.Fill
Me.dgPhoneNumbers.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgPhoneNumbers.Location = New System.Drawing.Point(0, 0)
Me.dgPhoneNumbers.Name = "dgPhoneNumbers"
Me.dgPhoneNumbers.Size = New System.Drawing.Size(753, 296)
Me.dgPhoneNumbers.TabIndex = 1
Me.dgPhoneNumbers.TableStyles.AddRange(New System.Windows.Forms.DataGridTableStyle() {Me.dgsPhoneNumbers})
'
'dgsPhoneNumbers
'
Me.dgsPhoneNumbers.AlternatingBackColor = System.Drawing.Color.Lavender
Me.dgsPhoneNumbers.DataGrid = Me.dgPhoneNumbers
Me.dgsPhoneNumbers.GridColumnStyles.AddRange(New System.Windows.Forms.DataGridColumnStyle() {Me.tbcAreaCode, Me.tbcPhoneNumber, Me.tbcExtension, Me.tbcPhoneType, Me.tbcSource, Me.tbcPhoneRecordedBy})
Me.dgsPhoneNumbers.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.dgsPhoneNumbers.MappingName = "PhoneNumbers"
'
'tbcAreaCode
'
Me.tbcAreaCode.Format = ""
Me.tbcAreaCode.FormatInfo = Nothing
Me.tbcAreaCode.HeaderText = "Area Code"
Me.tbcAreaCode.MappingName = "AreaCode"
Me.tbcAreaCode.NullText = ""
Me.tbcAreaCode.Width = 50
'
'tbcPhoneNumber
'
Me.tbcPhoneNumber.Format = "000-0000"
Me.tbcPhoneNumber.FormatInfo = Nothing
Me.tbcPhoneNumber.HeaderText = "Number"
Me.tbcPhoneNumber.MappingName = "PhoneNumber"
Me.tbcPhoneNumber.NullText = ""
Me.tbcPhoneNumber.Width = 75
'
'tbcExtension
'
Me.tbcExtension.Format = ""
Me.tbcExtension.FormatInfo = Nothing
Me.tbcExtension.HeaderText = "Extension"
Me.tbcExtension.MappingName = "Extension"
Me.tbcExtension.NullText = ""
Me.tbcExtension.Width = 50
'
'tbcPhoneType
'
Me.tbcPhoneType.Format = ""
Me.tbcPhoneType.FormatInfo = Nothing
Me.tbcPhoneType.HeaderText = "Type"
Me.tbcPhoneType.MappingName = "Type"
Me.tbcPhoneType.NullText = ""
Me.tbcPhoneType.Width = 125
'
'tbcSource
'
Me.tbcSource.Format = ""
Me.tbcSource.FormatInfo = Nothing
Me.tbcSource.HeaderText = "Source"
Me.tbcSource.MappingName = "Source"
Me.tbcSource.NullText = ""
Me.tbcSource.Width = 75
'
'tbcPhoneRecordedBy
'
Me.tbcPhoneRecordedBy.Format = ""
Me.tbcPhoneRecordedBy.FormatInfo = Nothing
Me.tbcPhoneRecordedBy.HeaderText = "Recorded By"
Me.tbcPhoneRecordedBy.MappingName = "AddedBy"
Me.tbcPhoneRecordedBy.ReadOnly = True
Me.tbcPhoneRecordedBy.Width = 75
'
'tpStudySpecific
'
Me.tpStudySpecific.Controls.Add(Me.gbGHEnrollmentCall)
Me.tpStudySpecific.Controls.Add(Me.txtQuitDate)
Me.tpStudySpecific.Controls.Add(Me.lblQuitDate)
Me.tpStudySpecific.Controls.Add(Me.txtConsumno)
Me.tpStudySpecific.Controls.Add(Me.lblConsumNo)
Me.tpStudySpecific.Controls.Add(Me.gbWebEnteredInfo)
Me.tpStudySpecific.Controls.Add(Me.cmbPersonType)
Me.tpStudySpecific.Controls.Add(Me.Label6)
Me.tpStudySpecific.Location = New System.Drawing.Point(4, 25)
Me.tpStudySpecific.Name = "tpStudySpecific"
Me.tpStudySpecific.Padding = New System.Windows.Forms.Padding(3)
Me.tpStudySpecific.Size = New System.Drawing.Size(753, 296)
Me.tpStudySpecific.TabIndex = 4
Me.tpStudySpecific.Text = "<study specific>"
Me.tpStudySpecific.ToolTipText = "Information relevant only to PQ people."
Me.tpStudySpecific.UseVisualStyleBackColor = True
'
'gbGHEnrollmentCall
'
Me.gbGHEnrollmentCall.Controls.Add(Me.btnMarkNotEnrolled)
Me.gbGHEnrollmentCall.Controls.Add(Me.btnMarkEnrolled)
Me.gbGHEnrollmentCall.Location = New System.Drawing.Point(532, 83)
Me.gbGHEnrollmentCall.Name = "gbGHEnrollmentCall"
Me.gbGHEnrollmentCall.Size = New System.Drawing.Size(198, 178)
Me.gbGHEnrollmentCall.TabIndex = 50
Me.gbGHEnrollmentCall.TabStop = False
Me.gbGHEnrollmentCall.Text = "Is this person a GH Enrollee?"
'
'txtQuitDate
'
Me.txtQuitDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtQuitDate.Location = New System.Drawing.Point(284, 44)
Me.txtQuitDate.Name = "txtQuitDate"
Me.txtQuitDate.Size = New System.Drawing.Size(99, 23)
Me.txtQuitDate.TabIndex = 47
'
'txtConsumno
'
Me.txtConsumno.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
Me.txtConsumno.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtConsumno.Location = New System.Drawing.Point(150, 43)
Me.txtConsumno.Name = "txtConsumno"
Me.txtConsumno.ReadOnly = True
Me.txtConsumno.Size = New System.Drawing.Size(100, 23)
Me.txtConsumno.TabIndex = 35
'
'lblConsumNo
'
Me.lblConsumNo.AutoSize = True
Me.lblConsumNo.Location = New System.Drawing.Point(150, 24)
Me.lblConsumNo.Name = "lblConsumNo"
Me.lblConsumNo.Size = New System.Drawing.Size(120, 16)
Me.lblConsumNo.TabIndex = 36
Me.lblConsumNo.Text = "Consumer Number:"
'
'cmbPersonType
'
Me.cmbPersonType.FormattingEnabled = True
Me.cmbPersonType.Items.AddRange(New Object() {"IGP", "Network", "NetSmok", "Generic", "Intervention", "Control"})
Me.cmbPersonType.Location = New System.Drawing.Point(10, 43)
Me.cmbPersonType.Name = "cmbPersonType"
Me.cmbPersonType.Size = New System.Drawing.Size(120, 24)
Me.cmbPersonType.TabIndex = 31
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(8, 24)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(84, 16)
Me.Label6.TabIndex = 30
Me.Label6.Text = "Person Type:"
'
'txtSex
'
Me.txtSex.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtSex.Location = New System.Drawing.Point(484, 36)
Me.txtSex.Name = "txtSex"
Me.txtSex.Size = New System.Drawing.Size(32, 23)
Me.txtSex.TabIndex = 2
'
'Label3
'
Me.Label3.AutoSize = True