-
Notifications
You must be signed in to change notification settings - Fork 0
/
TrackerData.Designer.vb
9508 lines (8220 loc) · 452 KB
/
TrackerData.Designer.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
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:2.0.50727.1433
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict Off
Option Explicit On
'''<summary>
'''Represents a strongly typed in-memory cache of data.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0"), _
Global.System.Serializable(), _
Global.System.ComponentModel.DesignerCategoryAttribute("code"), _
Global.System.ComponentModel.ToolboxItem(true), _
Global.System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema"), _
Global.System.Xml.Serialization.XmlRootAttribute("TrackerData"), _
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")> _
Partial Public Class TrackerData
Inherits Global.System.Data.DataSet
Private tabletodo_by_type_counts_vw As todo_by_type_counts_vwDataTable
Private tableStudies As StudiesDataTable
Private tableStatuses As StatusesDataTable
Private tableRecruitStatuses As RecruitStatusesDataTable
Private tableContactTypes As ContactTypesDataTable
Private tableRecruitContacts As RecruitContactsDataTable
Private tablePhoneNumberTypes As PhoneNumberTypesDataTable
Private tablePhoneNumbers As PhoneNumbersDataTable
Private tableAddresses As AddressesDataTable
Private tableRecruits As RecruitsDataTable
Private tableSamplingProgramVersions As SamplingProgramVersionsDataTable
Private tableContactsOverview As ContactsOverviewDataTable
Private tableQueriedAccessCodeList As QueriedAccessCodeListDataTable
Private tableFullNames As FullNamesDataTable
Private tableUpdatedAddresses As UpdatedAddressesDataTable
Private tableTickler As TicklerDataTable
Private tableincentive_card_counts_vw As incentive_card_counts_vwDataTable
Private relationStatus_History As Global.System.Data.DataRelation
Private relationStatusesRecruitStatuses As Global.System.Data.DataRelation
Private relationContacts As Global.System.Data.DataRelation
Private relationContactTypesRecruitContacts As Global.System.Data.DataRelation
Private relationPhone_Numbers As Global.System.Data.DataRelation
Private relationPhoneNumberTypesPhoneNumbers As Global.System.Data.DataRelation
Private relationAddresses As Global.System.Data.DataRelation
Private relationSamplingProgramVersionsRecruits As Global.System.Data.DataRelation
Private relationParticipants As Global.System.Data.DataRelation
Private relationUpdated_addresses As Global.System.Data.DataRelation
Private _schemaSerializationMode As Global.System.Data.SchemaSerializationMode = Global.System.Data.SchemaSerializationMode.IncludeSchema
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Sub New()
MyBase.New
Me.BeginInit
Me.InitClass
Dim schemaChangedHandler As Global.System.ComponentModel.CollectionChangeEventHandler = AddressOf Me.SchemaChanged
AddHandler MyBase.Tables.CollectionChanged, schemaChangedHandler
AddHandler MyBase.Relations.CollectionChanged, schemaChangedHandler
Me.EndInit
Me.InitExpressions
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Sub New(ByVal info As Global.System.Runtime.Serialization.SerializationInfo, ByVal context As Global.System.Runtime.Serialization.StreamingContext)
MyBase.New(info, context, false)
If (Me.IsBinarySerialized(info, context) = true) Then
Me.InitVars(false)
Dim schemaChangedHandler1 As Global.System.ComponentModel.CollectionChangeEventHandler = AddressOf Me.SchemaChanged
AddHandler Me.Tables.CollectionChanged, schemaChangedHandler1
AddHandler Me.Relations.CollectionChanged, schemaChangedHandler1
Return
End If
Dim strSchema As String = CType(info.GetValue("XmlSchema", GetType(String)),String)
If (Me.DetermineSchemaSerializationMode(info, context) = Global.System.Data.SchemaSerializationMode.IncludeSchema) Then
Dim ds As Global.System.Data.DataSet = New Global.System.Data.DataSet
ds.ReadXmlSchema(New Global.System.Xml.XmlTextReader(New Global.System.IO.StringReader(strSchema)))
If (Not (ds.Tables("todo_by_type_counts_vw")) Is Nothing) Then
MyBase.Tables.Add(New todo_by_type_counts_vwDataTable(ds.Tables("todo_by_type_counts_vw")))
End If
If (Not (ds.Tables("Studies")) Is Nothing) Then
MyBase.Tables.Add(New StudiesDataTable(ds.Tables("Studies")))
End If
If (Not (ds.Tables("Statuses")) Is Nothing) Then
MyBase.Tables.Add(New StatusesDataTable(ds.Tables("Statuses")))
End If
If (Not (ds.Tables("RecruitStatuses")) Is Nothing) Then
MyBase.Tables.Add(New RecruitStatusesDataTable(ds.Tables("RecruitStatuses")))
End If
If (Not (ds.Tables("ContactTypes")) Is Nothing) Then
MyBase.Tables.Add(New ContactTypesDataTable(ds.Tables("ContactTypes")))
End If
If (Not (ds.Tables("RecruitContacts")) Is Nothing) Then
MyBase.Tables.Add(New RecruitContactsDataTable(ds.Tables("RecruitContacts")))
End If
If (Not (ds.Tables("PhoneNumberTypes")) Is Nothing) Then
MyBase.Tables.Add(New PhoneNumberTypesDataTable(ds.Tables("PhoneNumberTypes")))
End If
If (Not (ds.Tables("PhoneNumbers")) Is Nothing) Then
MyBase.Tables.Add(New PhoneNumbersDataTable(ds.Tables("PhoneNumbers")))
End If
If (Not (ds.Tables("Addresses")) Is Nothing) Then
MyBase.Tables.Add(New AddressesDataTable(ds.Tables("Addresses")))
End If
If (Not (ds.Tables("Recruits")) Is Nothing) Then
MyBase.Tables.Add(New RecruitsDataTable(ds.Tables("Recruits")))
End If
If (Not (ds.Tables("SamplingProgramVersions")) Is Nothing) Then
MyBase.Tables.Add(New SamplingProgramVersionsDataTable(ds.Tables("SamplingProgramVersions")))
End If
If (Not (ds.Tables("ContactsOverview")) Is Nothing) Then
MyBase.Tables.Add(New ContactsOverviewDataTable(ds.Tables("ContactsOverview")))
End If
If (Not (ds.Tables("QueriedAccessCodeList")) Is Nothing) Then
MyBase.Tables.Add(New QueriedAccessCodeListDataTable(ds.Tables("QueriedAccessCodeList")))
End If
If (Not (ds.Tables("FullNames")) Is Nothing) Then
MyBase.Tables.Add(New FullNamesDataTable(ds.Tables("FullNames")))
End If
If (Not (ds.Tables("UpdatedAddresses")) Is Nothing) Then
MyBase.Tables.Add(New UpdatedAddressesDataTable(ds.Tables("UpdatedAddresses")))
End If
If (Not (ds.Tables("Tickler")) Is Nothing) Then
MyBase.Tables.Add(New TicklerDataTable(ds.Tables("Tickler")))
End If
If (Not (ds.Tables("incentive_card_counts_vw")) Is Nothing) Then
MyBase.Tables.Add(New incentive_card_counts_vwDataTable(ds.Tables("incentive_card_counts_vw")))
End If
Me.DataSetName = ds.DataSetName
Me.Prefix = ds.Prefix
Me.Namespace = ds.Namespace
Me.Locale = ds.Locale
Me.CaseSensitive = ds.CaseSensitive
Me.EnforceConstraints = ds.EnforceConstraints
Me.Merge(ds, false, Global.System.Data.MissingSchemaAction.Add)
Me.InitVars
Else
Me.ReadXmlSchema(New Global.System.Xml.XmlTextReader(New Global.System.IO.StringReader(strSchema)))
Me.InitExpressions
End If
Me.GetSerializationData(info, context)
Dim schemaChangedHandler As Global.System.ComponentModel.CollectionChangeEventHandler = AddressOf Me.SchemaChanged
AddHandler MyBase.Tables.CollectionChanged, schemaChangedHandler
AddHandler Me.Relations.CollectionChanged, schemaChangedHandler
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property todo_by_type_counts_vw() As todo_by_type_counts_vwDataTable
Get
Return Me.tabletodo_by_type_counts_vw
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property Studies() As StudiesDataTable
Get
Return Me.tableStudies
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property Statuses() As StatusesDataTable
Get
Return Me.tableStatuses
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property RecruitStatuses() As RecruitStatusesDataTable
Get
Return Me.tableRecruitStatuses
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property ContactTypes() As ContactTypesDataTable
Get
Return Me.tableContactTypes
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property RecruitContacts() As RecruitContactsDataTable
Get
Return Me.tableRecruitContacts
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property PhoneNumberTypes() As PhoneNumberTypesDataTable
Get
Return Me.tablePhoneNumberTypes
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property PhoneNumbers() As PhoneNumbersDataTable
Get
Return Me.tablePhoneNumbers
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property Addresses() As AddressesDataTable
Get
Return Me.tableAddresses
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property Recruits() As RecruitsDataTable
Get
Return Me.tableRecruits
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property SamplingProgramVersions() As SamplingProgramVersionsDataTable
Get
Return Me.tableSamplingProgramVersions
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property ContactsOverview() As ContactsOverviewDataTable
Get
Return Me.tableContactsOverview
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property QueriedAccessCodeList() As QueriedAccessCodeListDataTable
Get
Return Me.tableQueriedAccessCodeList
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property FullNames() As FullNamesDataTable
Get
Return Me.tableFullNames
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property UpdatedAddresses() As UpdatedAddressesDataTable
Get
Return Me.tableUpdatedAddresses
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property Tickler() As TicklerDataTable
Get
Return Me.tableTickler
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false), _
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
Public ReadOnly Property incentive_card_counts_vw() As incentive_card_counts_vwDataTable
Get
Return Me.tableincentive_card_counts_vw
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.BrowsableAttribute(true), _
Global.System.ComponentModel.DesignerSerializationVisibilityAttribute(Global.System.ComponentModel.DesignerSerializationVisibility.Visible)> _
Public Overrides Property SchemaSerializationMode() As Global.System.Data.SchemaSerializationMode
Get
Return Me._schemaSerializationMode
End Get
Set
Me._schemaSerializationMode = value
End Set
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.DesignerSerializationVisibilityAttribute(Global.System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public Shadows ReadOnly Property Tables() As Global.System.Data.DataTableCollection
Get
Return MyBase.Tables
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.DesignerSerializationVisibilityAttribute(Global.System.ComponentModel.DesignerSerializationVisibility.Hidden)> _
Public Shadows ReadOnly Property Relations() As Global.System.Data.DataRelationCollection
Get
Return MyBase.Relations
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub InitializeDerivedDataSet()
Me.BeginInit
Me.InitClass
Me.EndInit
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overrides Function Clone() As Global.System.Data.DataSet
Dim cln As TrackerData = CType(MyBase.Clone,TrackerData)
cln.InitVars
cln.InitExpressions
cln.SchemaSerializationMode = Me.SchemaSerializationMode
Return cln
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function ShouldSerializeTables() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function ShouldSerializeRelations() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub ReadXmlSerializable(ByVal reader As Global.System.Xml.XmlReader)
If (Me.DetermineSchemaSerializationMode(reader) = Global.System.Data.SchemaSerializationMode.IncludeSchema) Then
Me.Reset
Dim ds As Global.System.Data.DataSet = New Global.System.Data.DataSet
ds.ReadXml(reader)
If (Not (ds.Tables("todo_by_type_counts_vw")) Is Nothing) Then
MyBase.Tables.Add(New todo_by_type_counts_vwDataTable(ds.Tables("todo_by_type_counts_vw")))
End If
If (Not (ds.Tables("Studies")) Is Nothing) Then
MyBase.Tables.Add(New StudiesDataTable(ds.Tables("Studies")))
End If
If (Not (ds.Tables("Statuses")) Is Nothing) Then
MyBase.Tables.Add(New StatusesDataTable(ds.Tables("Statuses")))
End If
If (Not (ds.Tables("RecruitStatuses")) Is Nothing) Then
MyBase.Tables.Add(New RecruitStatusesDataTable(ds.Tables("RecruitStatuses")))
End If
If (Not (ds.Tables("ContactTypes")) Is Nothing) Then
MyBase.Tables.Add(New ContactTypesDataTable(ds.Tables("ContactTypes")))
End If
If (Not (ds.Tables("RecruitContacts")) Is Nothing) Then
MyBase.Tables.Add(New RecruitContactsDataTable(ds.Tables("RecruitContacts")))
End If
If (Not (ds.Tables("PhoneNumberTypes")) Is Nothing) Then
MyBase.Tables.Add(New PhoneNumberTypesDataTable(ds.Tables("PhoneNumberTypes")))
End If
If (Not (ds.Tables("PhoneNumbers")) Is Nothing) Then
MyBase.Tables.Add(New PhoneNumbersDataTable(ds.Tables("PhoneNumbers")))
End If
If (Not (ds.Tables("Addresses")) Is Nothing) Then
MyBase.Tables.Add(New AddressesDataTable(ds.Tables("Addresses")))
End If
If (Not (ds.Tables("Recruits")) Is Nothing) Then
MyBase.Tables.Add(New RecruitsDataTable(ds.Tables("Recruits")))
End If
If (Not (ds.Tables("SamplingProgramVersions")) Is Nothing) Then
MyBase.Tables.Add(New SamplingProgramVersionsDataTable(ds.Tables("SamplingProgramVersions")))
End If
If (Not (ds.Tables("ContactsOverview")) Is Nothing) Then
MyBase.Tables.Add(New ContactsOverviewDataTable(ds.Tables("ContactsOverview")))
End If
If (Not (ds.Tables("QueriedAccessCodeList")) Is Nothing) Then
MyBase.Tables.Add(New QueriedAccessCodeListDataTable(ds.Tables("QueriedAccessCodeList")))
End If
If (Not (ds.Tables("FullNames")) Is Nothing) Then
MyBase.Tables.Add(New FullNamesDataTable(ds.Tables("FullNames")))
End If
If (Not (ds.Tables("UpdatedAddresses")) Is Nothing) Then
MyBase.Tables.Add(New UpdatedAddressesDataTable(ds.Tables("UpdatedAddresses")))
End If
If (Not (ds.Tables("Tickler")) Is Nothing) Then
MyBase.Tables.Add(New TicklerDataTable(ds.Tables("Tickler")))
End If
If (Not (ds.Tables("incentive_card_counts_vw")) Is Nothing) Then
MyBase.Tables.Add(New incentive_card_counts_vwDataTable(ds.Tables("incentive_card_counts_vw")))
End If
Me.DataSetName = ds.DataSetName
Me.Prefix = ds.Prefix
Me.Namespace = ds.Namespace
Me.Locale = ds.Locale
Me.CaseSensitive = ds.CaseSensitive
Me.EnforceConstraints = ds.EnforceConstraints
Me.Merge(ds, false, Global.System.Data.MissingSchemaAction.Add)
Me.InitVars
Else
Me.ReadXml(reader)
Me.InitVars
End If
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function GetSchemaSerializable() As Global.System.Xml.Schema.XmlSchema
Dim stream As Global.System.IO.MemoryStream = New Global.System.IO.MemoryStream
Me.WriteXmlSchema(New Global.System.Xml.XmlTextWriter(stream, Nothing))
stream.Position = 0
Return Global.System.Xml.Schema.XmlSchema.Read(New Global.System.Xml.XmlTextReader(stream), Nothing)
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Friend Overloads Sub InitVars()
Me.InitVars(true)
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Friend Overloads Sub InitVars(ByVal initTable As Boolean)
Me.tabletodo_by_type_counts_vw = CType(MyBase.Tables("todo_by_type_counts_vw"),todo_by_type_counts_vwDataTable)
If (initTable = true) Then
If (Not (Me.tabletodo_by_type_counts_vw) Is Nothing) Then
Me.tabletodo_by_type_counts_vw.InitVars
End If
End If
Me.tableStudies = CType(MyBase.Tables("Studies"),StudiesDataTable)
If (initTable = true) Then
If (Not (Me.tableStudies) Is Nothing) Then
Me.tableStudies.InitVars
End If
End If
Me.tableStatuses = CType(MyBase.Tables("Statuses"),StatusesDataTable)
If (initTable = true) Then
If (Not (Me.tableStatuses) Is Nothing) Then
Me.tableStatuses.InitVars
End If
End If
Me.tableRecruitStatuses = CType(MyBase.Tables("RecruitStatuses"),RecruitStatusesDataTable)
If (initTable = true) Then
If (Not (Me.tableRecruitStatuses) Is Nothing) Then
Me.tableRecruitStatuses.InitVars
End If
End If
Me.tableContactTypes = CType(MyBase.Tables("ContactTypes"),ContactTypesDataTable)
If (initTable = true) Then
If (Not (Me.tableContactTypes) Is Nothing) Then
Me.tableContactTypes.InitVars
End If
End If
Me.tableRecruitContacts = CType(MyBase.Tables("RecruitContacts"),RecruitContactsDataTable)
If (initTable = true) Then
If (Not (Me.tableRecruitContacts) Is Nothing) Then
Me.tableRecruitContacts.InitVars
End If
End If
Me.tablePhoneNumberTypes = CType(MyBase.Tables("PhoneNumberTypes"),PhoneNumberTypesDataTable)
If (initTable = true) Then
If (Not (Me.tablePhoneNumberTypes) Is Nothing) Then
Me.tablePhoneNumberTypes.InitVars
End If
End If
Me.tablePhoneNumbers = CType(MyBase.Tables("PhoneNumbers"),PhoneNumbersDataTable)
If (initTable = true) Then
If (Not (Me.tablePhoneNumbers) Is Nothing) Then
Me.tablePhoneNumbers.InitVars
End If
End If
Me.tableAddresses = CType(MyBase.Tables("Addresses"),AddressesDataTable)
If (initTable = true) Then
If (Not (Me.tableAddresses) Is Nothing) Then
Me.tableAddresses.InitVars
End If
End If
Me.tableRecruits = CType(MyBase.Tables("Recruits"),RecruitsDataTable)
If (initTable = true) Then
If (Not (Me.tableRecruits) Is Nothing) Then
Me.tableRecruits.InitVars
End If
End If
Me.tableSamplingProgramVersions = CType(MyBase.Tables("SamplingProgramVersions"),SamplingProgramVersionsDataTable)
If (initTable = true) Then
If (Not (Me.tableSamplingProgramVersions) Is Nothing) Then
Me.tableSamplingProgramVersions.InitVars
End If
End If
Me.tableContactsOverview = CType(MyBase.Tables("ContactsOverview"),ContactsOverviewDataTable)
If (initTable = true) Then
If (Not (Me.tableContactsOverview) Is Nothing) Then
Me.tableContactsOverview.InitVars
End If
End If
Me.tableQueriedAccessCodeList = CType(MyBase.Tables("QueriedAccessCodeList"),QueriedAccessCodeListDataTable)
If (initTable = true) Then
If (Not (Me.tableQueriedAccessCodeList) Is Nothing) Then
Me.tableQueriedAccessCodeList.InitVars
End If
End If
Me.tableFullNames = CType(MyBase.Tables("FullNames"),FullNamesDataTable)
If (initTable = true) Then
If (Not (Me.tableFullNames) Is Nothing) Then
Me.tableFullNames.InitVars
End If
End If
Me.tableUpdatedAddresses = CType(MyBase.Tables("UpdatedAddresses"),UpdatedAddressesDataTable)
If (initTable = true) Then
If (Not (Me.tableUpdatedAddresses) Is Nothing) Then
Me.tableUpdatedAddresses.InitVars
End If
End If
Me.tableTickler = CType(MyBase.Tables("Tickler"),TicklerDataTable)
If (initTable = true) Then
If (Not (Me.tableTickler) Is Nothing) Then
Me.tableTickler.InitVars
End If
End If
Me.tableincentive_card_counts_vw = CType(MyBase.Tables("incentive_card_counts_vw"),incentive_card_counts_vwDataTable)
If (initTable = true) Then
If (Not (Me.tableincentive_card_counts_vw) Is Nothing) Then
Me.tableincentive_card_counts_vw.InitVars
End If
End If
Me.relationStatus_History = Me.Relations("Status History")
Me.relationStatusesRecruitStatuses = Me.Relations("StatusesRecruitStatuses")
Me.relationContacts = Me.Relations("Contacts")
Me.relationContactTypesRecruitContacts = Me.Relations("ContactTypesRecruitContacts")
Me.relationPhone_Numbers = Me.Relations("Phone Numbers")
Me.relationPhoneNumberTypesPhoneNumbers = Me.Relations("PhoneNumberTypesPhoneNumbers")
Me.relationAddresses = Me.Relations("Addresses")
Me.relationSamplingProgramVersionsRecruits = Me.Relations("SamplingProgramVersionsRecruits")
Me.relationParticipants = Me.Relations("Participants")
Me.relationUpdated_addresses = Me.Relations("Updated addresses")
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Sub InitClass()
Me.DataSetName = "TrackerData"
Me.Prefix = ""
Me.Namespace = "http://tempuri.org/Recruits.xsd"
Me.EnforceConstraints = true
Me.SchemaSerializationMode = Global.System.Data.SchemaSerializationMode.IncludeSchema
Me.tabletodo_by_type_counts_vw = New todo_by_type_counts_vwDataTable
MyBase.Tables.Add(Me.tabletodo_by_type_counts_vw)
Me.tableStudies = New StudiesDataTable
MyBase.Tables.Add(Me.tableStudies)
Me.tableStatuses = New StatusesDataTable
MyBase.Tables.Add(Me.tableStatuses)
Me.tableRecruitStatuses = New RecruitStatusesDataTable
MyBase.Tables.Add(Me.tableRecruitStatuses)
Me.tableContactTypes = New ContactTypesDataTable
MyBase.Tables.Add(Me.tableContactTypes)
Me.tableRecruitContacts = New RecruitContactsDataTable
MyBase.Tables.Add(Me.tableRecruitContacts)
Me.tablePhoneNumberTypes = New PhoneNumberTypesDataTable
MyBase.Tables.Add(Me.tablePhoneNumberTypes)
Me.tablePhoneNumbers = New PhoneNumbersDataTable
MyBase.Tables.Add(Me.tablePhoneNumbers)
Me.tableAddresses = New AddressesDataTable
MyBase.Tables.Add(Me.tableAddresses)
Me.tableRecruits = New RecruitsDataTable(false)
MyBase.Tables.Add(Me.tableRecruits)
Me.tableSamplingProgramVersions = New SamplingProgramVersionsDataTable
MyBase.Tables.Add(Me.tableSamplingProgramVersions)
Me.tableContactsOverview = New ContactsOverviewDataTable
MyBase.Tables.Add(Me.tableContactsOverview)
Me.tableQueriedAccessCodeList = New QueriedAccessCodeListDataTable
MyBase.Tables.Add(Me.tableQueriedAccessCodeList)
Me.tableFullNames = New FullNamesDataTable
MyBase.Tables.Add(Me.tableFullNames)
Me.tableUpdatedAddresses = New UpdatedAddressesDataTable
MyBase.Tables.Add(Me.tableUpdatedAddresses)
Me.tableTickler = New TicklerDataTable
MyBase.Tables.Add(Me.tableTickler)
Me.tableincentive_card_counts_vw = New incentive_card_counts_vwDataTable
MyBase.Tables.Add(Me.tableincentive_card_counts_vw)
Dim fkc As Global.System.Data.ForeignKeyConstraint
fkc = New Global.System.Data.ForeignKeyConstraint("Status History", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitStatuses.RecruitIDColumn})
Me.tableRecruitStatuses.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("StatusesRecruitStatuses", New Global.System.Data.DataColumn() {Me.tableStatuses.StatusColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitStatuses.StatusColumn})
Me.tableRecruitStatuses.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("Contacts", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitContacts.RecruitIDColumn})
Me.tableRecruitContacts.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("ContactTypesRecruitContacts", New Global.System.Data.DataColumn() {Me.tableContactTypes.ContactTypeColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitContacts.ContactTypeColumn})
Me.tableRecruitContacts.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("Phone Numbers", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tablePhoneNumbers.RecruitIDColumn})
Me.tablePhoneNumbers.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("PhoneNumberTypesPhoneNumbers", New Global.System.Data.DataColumn() {Me.tablePhoneNumberTypes.TypeColumn}, New Global.System.Data.DataColumn() {Me.tablePhoneNumbers.TypeColumn})
Me.tablePhoneNumbers.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("Addresses", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableAddresses.RecruitIDColumn})
Me.tableAddresses.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("SamplingProgramVersionsRecruits", New Global.System.Data.DataColumn() {Me.tableSamplingProgramVersions.RecruitProgVersionColumn}, New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitProgVersionColumn})
Me.tableRecruits.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("Participants", New Global.System.Data.DataColumn() {Me.tableStudies.StudyColumn}, New Global.System.Data.DataColumn() {Me.tableRecruits.StudyColumn})
Me.tableRecruits.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
fkc = New Global.System.Data.ForeignKeyConstraint("Updated addresses", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableUpdatedAddresses.RecruitIDColumn})
Me.tableUpdatedAddresses.Constraints.Add(fkc)
fkc.AcceptRejectRule = Global.System.Data.AcceptRejectRule.None
fkc.DeleteRule = Global.System.Data.Rule.Cascade
fkc.UpdateRule = Global.System.Data.Rule.Cascade
Me.relationStatus_History = New Global.System.Data.DataRelation("Status History", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitStatuses.RecruitIDColumn}, false)
Me.Relations.Add(Me.relationStatus_History)
Me.relationStatusesRecruitStatuses = New Global.System.Data.DataRelation("StatusesRecruitStatuses", New Global.System.Data.DataColumn() {Me.tableStatuses.StatusColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitStatuses.StatusColumn}, false)
Me.Relations.Add(Me.relationStatusesRecruitStatuses)
Me.relationContacts = New Global.System.Data.DataRelation("Contacts", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitContacts.RecruitIDColumn}, false)
Me.Relations.Add(Me.relationContacts)
Me.relationContactTypesRecruitContacts = New Global.System.Data.DataRelation("ContactTypesRecruitContacts", New Global.System.Data.DataColumn() {Me.tableContactTypes.ContactTypeColumn}, New Global.System.Data.DataColumn() {Me.tableRecruitContacts.ContactTypeColumn}, false)
Me.Relations.Add(Me.relationContactTypesRecruitContacts)
Me.relationPhone_Numbers = New Global.System.Data.DataRelation("Phone Numbers", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tablePhoneNumbers.RecruitIDColumn}, false)
Me.Relations.Add(Me.relationPhone_Numbers)
Me.relationPhoneNumberTypesPhoneNumbers = New Global.System.Data.DataRelation("PhoneNumberTypesPhoneNumbers", New Global.System.Data.DataColumn() {Me.tablePhoneNumberTypes.TypeColumn}, New Global.System.Data.DataColumn() {Me.tablePhoneNumbers.TypeColumn}, false)
Me.Relations.Add(Me.relationPhoneNumberTypesPhoneNumbers)
Me.relationAddresses = New Global.System.Data.DataRelation("Addresses", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableAddresses.RecruitIDColumn}, false)
Me.Relations.Add(Me.relationAddresses)
Me.relationSamplingProgramVersionsRecruits = New Global.System.Data.DataRelation("SamplingProgramVersionsRecruits", New Global.System.Data.DataColumn() {Me.tableSamplingProgramVersions.RecruitProgVersionColumn}, New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitProgVersionColumn}, false)
Me.Relations.Add(Me.relationSamplingProgramVersionsRecruits)
Me.relationParticipants = New Global.System.Data.DataRelation("Participants", New Global.System.Data.DataColumn() {Me.tableStudies.StudyColumn}, New Global.System.Data.DataColumn() {Me.tableRecruits.StudyColumn}, false)
Me.Relations.Add(Me.relationParticipants)
Me.relationUpdated_addresses = New Global.System.Data.DataRelation("Updated addresses", New Global.System.Data.DataColumn() {Me.tableRecruits.RecruitIDColumn}, New Global.System.Data.DataColumn() {Me.tableUpdatedAddresses.RecruitIDColumn}, false)
Me.Relations.Add(Me.relationUpdated_addresses)
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializetodo_by_type_counts_vw() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeStudies() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeStatuses() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeRecruitStatuses() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeContactTypes() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeRecruitContacts() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializePhoneNumberTypes() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializePhoneNumbers() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeAddresses() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeRecruits() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeSamplingProgramVersions() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeContactsOverview() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeQueriedAccessCodeList() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeFullNames() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeUpdatedAddresses() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeTickler() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Function ShouldSerializeincentive_card_counts_vw() As Boolean
Return false
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Sub SchemaChanged(ByVal sender As Object, ByVal e As Global.System.ComponentModel.CollectionChangeEventArgs)
If (e.Action = Global.System.ComponentModel.CollectionChangeAction.Remove) Then
Me.InitVars
End If
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Shared Function GetTypedDataSetSchema(ByVal xs As Global.System.Xml.Schema.XmlSchemaSet) As Global.System.Xml.Schema.XmlSchemaComplexType
Dim ds As TrackerData = New TrackerData
Dim type As Global.System.Xml.Schema.XmlSchemaComplexType = New Global.System.Xml.Schema.XmlSchemaComplexType
Dim sequence As Global.System.Xml.Schema.XmlSchemaSequence = New Global.System.Xml.Schema.XmlSchemaSequence
Dim any As Global.System.Xml.Schema.XmlSchemaAny = New Global.System.Xml.Schema.XmlSchemaAny
any.Namespace = ds.Namespace
sequence.Items.Add(any)
type.Particle = sequence
Dim dsSchema As Global.System.Xml.Schema.XmlSchema = ds.GetSchemaSerializable
If xs.Contains(dsSchema.TargetNamespace) Then
Dim s1 As Global.System.IO.MemoryStream = New Global.System.IO.MemoryStream
Dim s2 As Global.System.IO.MemoryStream = New Global.System.IO.MemoryStream
Try
Dim schema As Global.System.Xml.Schema.XmlSchema = Nothing
dsSchema.Write(s1)
Dim schemas As Global.System.Collections.IEnumerator = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator
Do While schemas.MoveNext
schema = CType(schemas.Current,Global.System.Xml.Schema.XmlSchema)
s2.SetLength(0)
schema.Write(s2)
If (s1.Length = s2.Length) Then
s1.Position = 0
s2.Position = 0
Do While ((s1.Position <> s1.Length) _
AndAlso (s1.ReadByte = s2.ReadByte))
Loop
If (s1.Position = s1.Length) Then
Return type
End If
End If
Loop
Finally
If (Not (s1) Is Nothing) Then
s1.Close
End If
If (Not (s2) Is Nothing) Then
s2.Close
End If
End Try
End If
xs.Add(dsSchema)
Return type
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Sub InitExpressions()
Me.Recruits.FullNameColumn.Expression = "LastName + ', ' + FirstName"
End Sub
Public Delegate Sub todo_by_type_counts_vwRowChangeEventHandler(ByVal sender As Object, ByVal e As todo_by_type_counts_vwRowChangeEvent)
Public Delegate Sub StudiesRowChangeEventHandler(ByVal sender As Object, ByVal e As StudiesRowChangeEvent)
Public Delegate Sub StatusesRowChangeEventHandler(ByVal sender As Object, ByVal e As StatusesRowChangeEvent)
Public Delegate Sub RecruitStatusesRowChangeEventHandler(ByVal sender As Object, ByVal e As RecruitStatusesRowChangeEvent)
Public Delegate Sub ContactTypesRowChangeEventHandler(ByVal sender As Object, ByVal e As ContactTypesRowChangeEvent)
Public Delegate Sub RecruitContactsRowChangeEventHandler(ByVal sender As Object, ByVal e As RecruitContactsRowChangeEvent)
Public Delegate Sub PhoneNumberTypesRowChangeEventHandler(ByVal sender As Object, ByVal e As PhoneNumberTypesRowChangeEvent)
Public Delegate Sub PhoneNumbersRowChangeEventHandler(ByVal sender As Object, ByVal e As PhoneNumbersRowChangeEvent)
Public Delegate Sub AddressesRowChangeEventHandler(ByVal sender As Object, ByVal e As AddressesRowChangeEvent)
Public Delegate Sub RecruitsRowChangeEventHandler(ByVal sender As Object, ByVal e As RecruitsRowChangeEvent)
Public Delegate Sub SamplingProgramVersionsRowChangeEventHandler(ByVal sender As Object, ByVal e As SamplingProgramVersionsRowChangeEvent)
Public Delegate Sub ContactsOverviewRowChangeEventHandler(ByVal sender As Object, ByVal e As ContactsOverviewRowChangeEvent)
Public Delegate Sub QueriedAccessCodeListRowChangeEventHandler(ByVal sender As Object, ByVal e As QueriedAccessCodeListRowChangeEvent)
Public Delegate Sub FullNamesRowChangeEventHandler(ByVal sender As Object, ByVal e As FullNamesRowChangeEvent)
Public Delegate Sub UpdatedAddressesRowChangeEventHandler(ByVal sender As Object, ByVal e As UpdatedAddressesRowChangeEvent)
Public Delegate Sub TicklerRowChangeEventHandler(ByVal sender As Object, ByVal e As TicklerRowChangeEvent)
Public Delegate Sub incentive_card_counts_vwRowChangeEventHandler(ByVal sender As Object, ByVal e As incentive_card_counts_vwRowChangeEvent)
'''<summary>
'''Represents the strongly named DataTable class.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0"), _
Global.System.Serializable(), _
Global.System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")> _
Partial Public Class todo_by_type_counts_vwDataTable
Inherits Global.System.Data.DataTable
Implements Global.System.Collections.IEnumerable
Private columntobedone As Global.System.Data.DataColumn
Private columnnum As Global.System.Data.DataColumn
Private columnWanted As Global.System.Data.DataColumn
Private columnpersontype As Global.System.Data.DataColumn
Private columnstudy As Global.System.Data.DataColumn
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Sub New()
MyBase.New
Me.TableName = "todo_by_type_counts_vw"
Me.BeginInit
Me.InitClass
Me.EndInit
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Friend Sub New(ByVal table As Global.System.Data.DataTable)
MyBase.New
Me.TableName = table.TableName
If (table.CaseSensitive <> table.DataSet.CaseSensitive) Then
Me.CaseSensitive = table.CaseSensitive
End If
If (table.Locale.ToString <> table.DataSet.Locale.ToString) Then
Me.Locale = table.Locale
End If
If (table.Namespace <> table.DataSet.Namespace) Then
Me.Namespace = table.Namespace
End If
Me.Prefix = table.Prefix
Me.MinimumCapacity = table.MinimumCapacity
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Sub New(ByVal info As Global.System.Runtime.Serialization.SerializationInfo, ByVal context As Global.System.Runtime.Serialization.StreamingContext)
MyBase.New(info, context)
Me.InitVars
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property tobedoneColumn() As Global.System.Data.DataColumn
Get
Return Me.columntobedone
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property numColumn() As Global.System.Data.DataColumn
Get
Return Me.columnnum
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property WantedColumn() As Global.System.Data.DataColumn
Get
Return Me.columnWanted
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property persontypeColumn() As Global.System.Data.DataColumn
Get
Return Me.columnpersontype
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property studyColumn() As Global.System.Data.DataColumn
Get
Return Me.columnstudy
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.ComponentModel.Browsable(false)> _
Public ReadOnly Property Count() As Integer
Get
Return Me.Rows.Count
End Get
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Default ReadOnly Property Item(ByVal index As Integer) As todo_by_type_counts_vwRow
Get
Return CType(Me.Rows(index),todo_by_type_counts_vwRow)
End Get
End Property
Public Event todo_by_type_counts_vwRowChanging As todo_by_type_counts_vwRowChangeEventHandler
Public Event todo_by_type_counts_vwRowChanged As todo_by_type_counts_vwRowChangeEventHandler
Public Event todo_by_type_counts_vwRowDeleting As todo_by_type_counts_vwRowChangeEventHandler
Public Event todo_by_type_counts_vwRowDeleted As todo_by_type_counts_vwRowChangeEventHandler
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overloads Sub Addtodo_by_type_counts_vwRow(ByVal row As todo_by_type_counts_vwRow)
Me.Rows.Add(row)
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overloads Function Addtodo_by_type_counts_vwRow(ByVal tobedone As String, ByVal num As Integer, ByVal Wanted As Integer, ByVal persontype As String, ByVal study As Integer) As todo_by_type_counts_vwRow
Dim rowtodo_by_type_counts_vwRow As todo_by_type_counts_vwRow = CType(Me.NewRow,todo_by_type_counts_vwRow)
Dim columnValuesArray() As Object = New Object() {tobedone, num, Wanted, persontype, study}
rowtodo_by_type_counts_vwRow.ItemArray = columnValuesArray