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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.VisualBasic.Compatibility.Data</name>
</assembly>
<members>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EndOfRecordset">
<summary>The <see langword="EndOfRecordset" /> event is called when there is an attempt to move to a row past the end of the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Error">
<summary>Occurs when an exception is raised in a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FetchComplete">
<summary>Occurs when a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control completes a fetch from a database.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FetchProgress">
<summary>Occurs while a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is fetching data from a database.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FieldChangeComplete">
<summary>Occurs when an update to a <see langword="Field" /> in a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is complete.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.MoveComplete">
<summary>Occurs when a <see langword="MoveFirst" />, <see langword="MoveNext" />, or <see langword="MoveLast" /> method has occurred in a <see langword="Recordset" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.RecordChangeComplete">
<summary>Occurs when the current record has changed in the <see langword="Recordset" /> of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.RecordsetChangeComplete">
<summary>Occurs when the <see langword="Recordset" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeField">
<summary>Occurs before the current field in a <see langword="Recordset" /> of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeRecord">
<summary>Occurs before the current record in a <see langword="Recordset" /> of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeRecordset">
<summary>Occurs before the <see langword="Recordset" /> of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillMove">
<summary>Occurs before the <see langword="MoveFirst" />, <see langword="MoveNext" />, or <see langword="MoveLast" /> method of a <see langword="Recordset" /> of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control executes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.BackColorChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackColor" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.BackgroundImageChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.BindingContextChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.CausesValidationChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ChangeUICues">
<summary>Occurs when the focus or keyboard user interface (UI) cues change.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Click">
<summary>Occurs when an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> in an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> is clicked.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ContextMenuChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ContextMenu" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.CtlLoad">
<summary>Occurs when an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is loaded.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.CursorChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DockChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Dock" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DoubleClick">
<summary>Occurs when an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control in an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> is double-clicked.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DragDrop">
<summary>Occurs when a drag-and-drop operation is completed.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DragEnter">
<summary>Occurs when an object is dragged into the control's bounds.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DragLeave">
<summary>Occurs when an object is dragged out of the control's bounds.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.DragOver">
<summary>Occurs when an object is dragged over the control's bounds.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.EnabledChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Enabled" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.EndOfRecordset">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOF" /> property of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Enter">
<summary>Occurs when the control is entered.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Error">
<summary>Occurs when an exception is raised for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.FetchComplete">
<summary>Occurs when an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control completes a fetch from a database.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.FetchProgress">
<summary>Occurs while an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is fetching data from a database.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.FieldChangeComplete">
<summary>Occurs when an update to a <see langword="Field" /> in a <see langword="Recordset" /> for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is complete.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.FontChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Font" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ForeColorChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.GiveFeedback">
<summary>Occurs during a drag operation.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.HelpRequested">
<summary>Occurs when the user requests Help for a control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ImeModeChanged">
<summary>Occurs when value of the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.KeyDown">
<summary>Occurs when a key is pressed and the control has focus.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.KeyPress">
<summary>Occurs when a key is pressed and the control has focus.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.KeyUp">
<summary>Occurs when a key is released and the control has focus.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Layout">
<summary>Occurs when a control should reposition its child controls.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Leave">
<summary>Occurs when the input focus leaves the control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.LocationChanged">
<summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Location" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseDown">
<summary>Occurs when the mouse pointer is over the control and a mouse button is pressed.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseEnter">
<summary>Occurs when the mouse pointer enters the control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseHover">
<summary>Occurs when the mouse pointer rests on the control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseLeave">
<summary>Occurs when the mouse pointer leaves the control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseMove">
<summary>Occurs when the mouse pointer is moved over the control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MouseUp">
<summary>Occurs when the mouse pointer is over the control and a mouse button is released.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Move">
<summary>Occurs when the control is moved.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.MoveComplete">
<summary>Occurs when a <see langword="MoveFirst" />, <see langword="MoveNext" />, or <see langword="MoveLast" /> method has occurred in a <see langword="Recordset" /> for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Paint">
<summary>Occurs when the control is redrawn.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ParentChanged">
<summary>Occurs when the control's <see cref="P:System.Windows.Forms.Control.Parent" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.QueryAccessibilityHelp">
<summary>Occurs when an <see cref="T:System.Windows.Forms.AccessibleObject" /> is providing Help to accessibility applications.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.QueryContinueDrag">
<summary>Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.RecordChangeComplete">
<summary>Occurs when the current record has changed in the <see langword="Recordset" /> of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.RecordsetChangeComplete">
<summary>Occurs when the <see langword="Recordset" /> for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Resize">
<summary>Occurs when the control is resized.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.RightToLeftChanged">
<summary>Occurs when the <see cref="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.RightToLeftChanged" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.SizeChanged">
<summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Size" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.StyleChanged">
<summary>Occurs when the control style changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.SystemColorsChanged">
<summary>Occurs when the system colors change.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.TabIndexChanged">
<summary>Occurs when the <see cref="P:System.Windows.Forms.Control.TabIndex" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.TabStopChanged">
<summary>Occurs when the <see cref="P:System.Windows.Forms.Control.TabStop" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Validated">
<summary>Occurs when the control is finished validating.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Validating">
<summary>Occurs when the control is validating.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.VisibleChanged">
<summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Visible" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.WillChangeField">
<summary>Occurs before a <see langword="Field" /> in the <see langword="Recordset" /> of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.WillChangeRecord">
<summary>Occurs before the current record in a <see langword="Recordset" /> of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.WillChangeRecordset">
<summary>Occurs before the <see langword="Recordset" /> of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.WillMove">
<summary>Occurs before the <see langword="MoveFirst" />, <see langword="MoveNext" />, or <see langword="MoveLast" /> method of a <see langword="Recordset" /> of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control executes.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Commands">
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands" /> collection.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Connections">
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections" /> collection.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_NonRSReturningCommands">
<summary>Contains a collection.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.m_Recordsets">
<summary>Contains the <see cref="Overload:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets" /> collection.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA.cookie">
<summary>An <see langword="Integer" /> used by the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA" /><see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA.pUnk">
<summary>An <see cref="T:System.IntPtr" /> used by the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.bPrecision">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.bScale">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.cbMaxLen">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.dwFlags">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.eParamIO">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.iOrdinal">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.memOwner">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.obLength">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.obStatus">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.obValue">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.part">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.pBindExt">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.pObject">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.typeInfo">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING.wType">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.columnFlags">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.columnId">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.columnOrdinal">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.columnSize">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.columnType">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.name">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.precision">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.scale">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO.typeInfo">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBID.dbkind">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBID" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBID.uGuid">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBID" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBID.uName">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBID" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET.cPropertyIDs">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET.guidPropertySet">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET.rgPropertyIDs">
<summary>A field for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.UGUID.guid">
<summary>A field containing a <see cref="T:System.Guid" /> for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.UGUID" /> <see langword="Structure" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.UNAME.name">
<summary>Contains a <see cref="T:System.IntPtr" /> for the internal <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.UNAME" /><see langword="Structure" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.addDataSourceListener(msdatasrc.DataSourceListener)">
<summary>Adds an interface to monitor changes in a data set.</summary>
<param name="dsl">A <see langword="Msdatasrc.DataSourceListener" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> and optionally releases the managed resources.</summary>
<param name="disposing">
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.getDataMember(System.String,System.Guid@)">
<summary>Returns a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</summary>
<param name="dataMember">A <see cref="T:System.String" /> that describes the data member that represents one or more sets of data supported by the data source.</param>
<param name="riid">The interface identifier of the specified data access object.</param>
<returns>Returns a data access object (such as a row position) for a given data member.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.getDataMemberCount">
<summary>Implements the OLE DB <see langword="DataSource.getDataMemberCount" /> method.</summary>
<returns>An <see langword="Integer" /> that represents the count.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.getDataMemberName(System.Int32)">
<summary>Implements the OLE DB <see langword="DataSource.getDataMemberName" /> method.</summary>
<param name="index">An index into the list of data member names.</param>
<returns>A <see cref="T:System.String" /> that describes the data member name.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.OnResize(System.EventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
<param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Refresh">
<summary>Forces a control to invalidate its client area and immediately redraw itself and any child controls.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODC.removeDataSourceListener(msdatasrc.DataSourceListener)">
<summary>Removes a <see langword="DataSourceListener" />.</summary>
<param name="dsl">A <see langword="Msdatasrc.DataSourceListener" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.#ctor(System.ComponentModel.IContainer)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> class, specifying its container.</summary>
<param name="Container">The <see cref="T:System.ComponentModel.IContainer" /> where the control array will be hosted.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.CanExtend(System.Object)">
<summary>Gets a value that determines whether a control is a member of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" />.</summary>
<param name="target">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</param>
<returns>
<see langword="true" /> if <paramref name="target" /> is a member of the control array; otherwise <see langword="false" />.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.GetControlInstanceType">
<summary>Overrides <see cref="M:Microsoft.VisualBasic.Compatibility.VB6.BaseControlArray.GetControlInstanceType" />.</summary>
<returns>The <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> class is the base class for all control arrays that are used in applications upgraded from Visual Basic 6.0. Because this class is not typically used to create an instance of the class, this <see langword="Protected" /> method is usually not called directly but is instead called by a derived class.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.GetIndex(Microsoft.VisualBasic.Compatibility.VB6.ADODC)">
<summary>Gets the index of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> in a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" />.</summary>
<param name="o">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> in the control array.</param>
<returns>A <see langword="Short" /> that represents the index of the specified <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.HookUpControlEvents(System.Object)">
<summary>Overrides <see cref="M:Microsoft.VisualBasic.Compatibility.VB6.BaseControlArray.HookUpControlEvents(System.Object)" />.</summary>
<param name="o">An <see cref="T:System.Object" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ResetIndex(Microsoft.VisualBasic.Compatibility.VB6.ADODC)">
<summary>The <see langword="ResetIndex" /> method is not supported in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> class</summary>
<param name="o">A <see cref="T:System.Windows.Forms.Control" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.SetIndex(Microsoft.VisualBasic.Compatibility.VB6.ADODC,System.Int16)">
<summary>Sets the index of the initial <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> in a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" />.</summary>
<param name="o">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> in the control array.</param>
<param name="Index">A <see langword="Short" /> that represents the index of the specified <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.ShouldSerializeIndex(Microsoft.VisualBasic.Compatibility.VB6.ADODC)">
<summary>Returns a value that indicates whether an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control is a member of this <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" />.</summary>
<param name="o">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> control.</param>
<returns>If the specified <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> is a member of a different <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" />, <see langword="ShouldSerializeIndex" /> returns <see langword="false" />.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.addDataSourceListener(msdatasrc.DataSourceListener)">
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<param name="ds">None.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Dispose">
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" />, and optionally releases the managed resources.</summary>
<param name="disposing">
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Finalize">
<summary>Overrides the <see cref="M:System.Object.Finalize" /> method.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.getDataMember(System.String,System.Guid@)">
<summary>Invokes a method based on an <see langword="ADODB.Command" /> object.</summary>
<param name="strDataMember">A <see langword="String" /> that contains an <see langword="ADODB.Command" /> object.</param>
<param name="Id">A GUID representing an <see langword="ADODB.Recordset" /> object.</param>
<returns>An <see cref="T:System.Object" /> that contains the <see langword="ADODB.Command" /> object.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.GetDataMemberCount">
<summary>Gets a count of <see langword="ADODB.Command" /> objects.</summary>
<returns>An <see langword="Integer" /> that contains the count.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.GetDataMemberName(System.Int32)">
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<param name="Index">Not applicable.</param>
<returns>
<see langword="Nothing" />.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.removeDataSourceListener(msdatasrc.DataSourceListener)">
<summary>This method is not implemented in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> class.</summary>
<param name="ds">Not applicable.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BindingCollectionEnumerator.MoveNext">
<summary>Advances the enumerator to the next element of the collection. </summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.BindingCollectionEnumerator.Reset">
<summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.Add(System.Object,System.String,System.String,Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp,System.String)">
<summary>Adds a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> to a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<param name="obj">An <see cref="T:System.Object" /> that contains data.</param>
<param name="propertyName">A <see langword="String" /> that contains a property name.</param>
<param name="dataField">A <see langword="String" /> that contains the name of a data field.</param>
<param name="dataFormat">Optional. An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp" /> interface.</param>
<param name="key">Optional. A <see langword="String" /> that contains the key value.</param>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> interface.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.Clear">
<summary>Clears the collection of binding objects.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.Remove(System.Object)">
<summary>Removes a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> interface from a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<param name="index">An <see cref="T:System.Object" /> representing the index.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.UpdateControls">
<summary>Gets the current row from the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" /> object's data source and resets the contents of controls bound through the object.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IAccessor.AddRefAccessor(System.Int32,System.Int32@)">
<summary>Adds a reference count to an existing accessor.</summary>
<param name="hAccessor">The handle of the accessor for which to increment the reference count.</param>
<param name="cRefCount">A pointer to memory in which to return the reference count of the accessor handle. If <paramref name="cRefCount" /> is a null pointer, no reference count is returned.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IAccessor.CreateAccessor(System.Int32,System.Int32,Microsoft.VisualBasic.Compatibility.VB6.DBBINDING[],System.Int32,System.Int32@,System.IntPtr)">
<summary>Creates an accessor from a set of bindings.</summary>
<param name="accessorFlags">A bitmask that describes the properties of the accessor and how it can be used. </param>
<param name="cBindings">The number of bindings in the accessor.</param>
<param name="bindings">An array of <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> structures.</param>
<param name="cbRowSize">The number of bytes allocated for a single set of parameters or criteria values in the consumer's buffer.</param>
<param name="hAccessor">A pointer to memory in which to return the handle of the created accessor.</param>
<param name="pBindStatus">A pointer to an array of <see langword="DBBINDSTATUS" /> values.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IAccessor.GetBindings(System.Int32,System.Int32@,System.Int32@,System.IntPtr@)">
<summary>Returns the bindings in an accessor.</summary>
<param name="hAccessor">The handle of the accessor for which to return the bindings.</param>
<param name="accessorFlags">A pointer to memory in which to return a bitmask that describes the properties of the accessor and how it is intended to be used.</param>
<param name="cBindings">A pointer to memory in which to return the number of bindings in the accessor.</param>
<param name="rgBindings">A pointer to memory in which to return an array of <see langword="DBBINDSTATUS" /> structures.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IAccessor.ReleaseAccessor(System.Int32,System.Int32@)">
<summary>Releases an accessor.</summary>
<param name="hAccessor">The handle of the accessor to release.</param>
<param name="cRefCount">A pointer to memory in which to return the remaining reference count of the accessor handle.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IChapteredRowset.AddRefChapter(System.Int32,System.Int32@)">
<summary>Adds a reference count to an existing chapter.</summary>
<param name="hChapter">The handle of the chapter for which to increment the reference count.</param>
<param name="cRefCount">A pointer to memory in which to return the reference count of the chapter handle.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IChapteredRowset.ReleaseChapter(System.Int32,System.Int32@)">
<summary>Releases a chapter.</summary>
<param name="hChapter">The chapter handle.</param>
<param name="cRefCount">A pointer to memory in which to return the reference count of the chapter handle.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IColumnsInfo.GetColumnInfo(System.Int32@,System.IntPtr@,System.IntPtr@)">
<summary>Returns the column metadata needed by most consumers.</summary>
<param name="cColumns">A pointer to memory in which to return the number of columns in the rowset; this number includes the bookmark column, if there is one.</param>
<param name="pColumnInfo">A pointer to memory in which to return an array of <see langword="DBCOLUMNINFO" /> structures.</param>
<param name="pStringsBuffer">A pointer to memory in which to return a pointer to storage for all string values (names used either within columnid or for pwszName) within a single allocation block.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IColumnsInfo.MapColumnIDs(System.Int32,Microsoft.VisualBasic.Compatibility.VB6.DBID[],System.Int32[])">
<summary>Returns an array of ordinals of the columns in a rowset that are identified by the specified column IDs.</summary>
<param name="cColumnIDs">The number of column IDs to map.</param>
<param name="columnIDs">An array of IDs of the columns for which to determine the column ordinals.</param>
<param name="rgColumns">An array of <paramref name="cColumnIDs" /> ordinals of the columns identified by the elements of <paramref name="columnIDs" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.Advise(System.IntPtr,System.Int32@)">
<summary>Establishes an advisory connection between the connection point and the caller's sink object.</summary>
<param name="sink">A reference to the sink to receive calls for the outgoing interface managed by this connection point.</param>
<param name="cookie">When this method returns, contains the connection cookie. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.EnumConnections(Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections@)">
<summary>Creates an enumerator object for iteration through the connections that exist to this connection point.</summary>
<param name="enumC">When this method returns, contains the newly created enumerator. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.GetConnectionInterface(System.Guid@)">
<summary>Returns the IID of the outgoing interface managed by this connection point.</summary>
<param name="piid">When this parameter returns, contains the IID of the outgoing interface managed by this connection point. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.GetConnectionPointContainer(Microsoft.VisualBasic.Compatibility.VB6.IConnectionPointContainer@)">
<summary>Retrieves the <see langword="IConnectionPointContainer" /> interface pointer to the connectable object that conceptually owns this connection point. </summary>
<param name="cpc">When this parameter returns, contains the connectable object's <see langword="IConnectionPointContainer" /> interface. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.Unadvise(System.Int32)">
<summary>Closes an advisory connection that was previously established through the <see cref="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.Advise(System.IntPtr,System.Int32@)" /> method.</summary>
<param name="cookie">The connection cookie previously returned from the <see cref="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint.Advise(System.IntPtr,System.Int32@)" /> method.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPointContainer.EnumConnectionPoints(Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints@)">
<summary>Creates an enumerator of all the connection points supported in the connectable object, one connection point per IID.</summary>
<param name="enumC">When the method returns, this parameter contains the interface pointer of the enumerator. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPointContainer.FindConnectionPoint(System.Guid@,Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint@)">
<summary>Queries the connectable object about whether it has a connection point for a particular IID, and, if so, returns the <see langword="IConnectionPoint" /> interface pointer to that connection point.</summary>
<param name="riid">A reference to the outgoing interface IID whose connection point is being requested. </param>
<param name="cp">When the method returns, this parameter contains the connection point that manages the outgoing interface <paramref name="riid" />. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.Clone(Microsoft.VisualBasic.Compatibility.VB6.IDataFormat@)">
<summary>Creates a shallow copy of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</summary>
<param name="newObject">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.Convert(System.Int32,System.Object,System.Object@)">
<summary>Converts an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> to a Visual Basic 6.0 <see langword="Variant" />.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
<param name="from">An <see cref="T:System.Object" />.</param>
<param name="varTo">A <see cref="T:Microsoft.VisualBasic.VariantType" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.Default(System.Boolean@)">
<summary>Determines whether an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> is the default <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</summary>
<param name="fDefault">A <see cref="T:System.Boolean" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.GetBinding(System.Runtime.InteropServices.VarEnum,System.Int32,Microsoft.VisualBasic.Compatibility.VB6.IRowset,Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO@,Microsoft.VisualBasic.Compatibility.VB6.DBBINDING@,System.Int32@,System.Int32@)">
<summary>Gets a binding for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</summary>
<param name="vtPropHint">A <see cref="T:System.Runtime.InteropServices.VarEnum" />.</param>
<param name="rgfDataFormat">An <see langword="Integer" />.</param>
<param name="rowset">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IRowset" />.</param>
<param name="columnInfo">A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO" /> structure.</param>
<param name="binding">A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING" /> structure.</param>
<param name="size">An <see langword="Integer" />.</param>
<param name="cookie">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.GetData(System.Int32,System.IntPtr,System.Object@,System.Int32@,System.Object)">
<summary>Gets the data for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
<param name="from">An <see cref="T:System.IntPtr" />.</param>
<param name="varTo">A <see cref="T:Microsoft.VisualBasic.VariantType" />.</param>
<param name="dbStatus">An <see langword="Integer" />.</param>
<param name="pObject">An <see cref="T:System.Object" /> .</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.GetLcid(System.Int32@)">
<summary>Gets a locale ID for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="lcid">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.GetRawData(System.Int32,System.IntPtr,System.Object@,System.Int32@)">
<summary>Gets the raw data for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
<param name="from">An <see cref="T:System.IntPtr" />.</param>
<param name="varTo">A <see cref="T:Microsoft.VisualBasic.VariantType" />.</param>
<param name="dbStatus">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.GetSubFormatType(System.Int32@)">
<summary>Gets the subformat type for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="subFormatType">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.ReleaseBinding(System.Int32)">
<summary>Releases a binding for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.ReleaseData(System.Int32,System.IntPtr)">
<summary>Releases the data for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="cookie">An Integer.</param>
<param name="pv">An <see cref="T:System.IntPtr" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.SetData(System.Int32,System.Object@,System.IntPtr,System.Object)">
<summary>Sets the data for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
<param name="from">An <see cref="T:System.IntPtr" />.</param>
<param name="pVarTo">A <see cref="T:Microsoft.VisualBasic.VariantType" />.</param>
<param name="pObject">An <see cref="T:System.Object" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.SetLcid(System.Int32)">
<summary>Sets the locale ID for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</summary>
<param name="lcid">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.SetRawData(System.Int32,System.Object,System.IntPtr)">
<summary>Sets the raw data for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" />.</summary>
<param name="cookie">An <see langword="Integer" />.</param>
<param name="from">An <see cref="T:System.IntPtr" />.</param>
<param name="pVarTo">A <see cref="T:Microsoft.VisualBasic.VariantType" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat.SetSubFormatType(System.Int32)">
<summary>Sets the subformat type for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat" /> interface.</summary>
<param name="subFormatType">An <see langword="Integer" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints.Clone(Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints@)">
<summary>Creates a new enumerator that contains the same enumeration state as the current one. </summary>
<param name="ecp">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints.Next(System.Int32,Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint[]@,System.Int32@)">
<summary>Retrieves a specified number of items in the enumeration sequence. </summary>
<param name="cConnections">The number of <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint" /> references to return in <paramref name="cp" />.</param>
<param name="cp">When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized.</param>
<param name="cFetched">When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="cp" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints.Reset">
<summary>Resets the enumeration sequence to the beginning.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints.Skip(System.Int32)">
<summary>Skips a specified number of items in the enumeration sequence.</summary>
<param name="cConnections">The number of elements to skip in the enumeration.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections.Clone(Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections@)">
<summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
<param name="ec">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections.Next(System.Int32,Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA[]@,System.Int32@)">
<summary>Retrieves a specified number of items in the enumeration sequence.</summary>
<param name="cConnections">The number of <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA" /> structures to return in <paramref name="cd" />.</param>
<param name="cd">When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized.</param>
<param name="cFetched">When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="cd" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections.Reset">
<summary>Resets the enumeration sequence to the start.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections.Skip(System.Int32)">
<summary>Skips a specified number of items in the enumeration sequence.</summary>
<param name="cConnections">The number of elements to skip in the enumeration.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition.ClearRowPosition">
<summary>Clears the row position.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition.GetRowPosition(System.Int32@,System.Int32@,System.Int32@)">
<summary>Retrieves the current row position.</summary>
<param name="hChapter">A pointer to memory in which to return the chapter associated with the current row. If the rowset is not chaptered, <paramref name="hChapter" /> is set to <see langword="DB_NULL_HCHAPTER" />. If <paramref name="hChapter" /> is a null pointer on input, no chapter value is returned.</param>
<param name="hRow">A pointer to memory in which to return the <see langword="hRow" /> of the current row position; or <see langword="DB_NULL_HROW" /> if there is no current row position.</param>
<param name="dbPositionFlags">A pointer to memory in which to return additional information about the row position.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition.GetRowset(System.Guid@,System.Object@)">
<summary>Returns the current underlying <see langword="Rowset" />.</summary>
<param name="iid">The requested IID for the rowset returned in <paramref name="rowset" />.</param>
<param name="rowset">A pointer to memory in which to return the interface pointer of the underlying rowset.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition.Initialize(System.Object)">
<summary>Initializes the row position object by setting the source rowset.</summary>
<param name="rowset">Pointer to an interface on the source rowset.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition.SetRowPosition(System.Int32,System.Int32,System.Int32)">
<summary>Sets the current row position.</summary>
<param name="hChapter">The chapter associated with the current row, or with <see langword="DB_NULL_HCHAPTER" /> if the rowset is not chaptered.</param>
<param name="hRow">The new current row.</param>
<param name="dbPositionFlags">A flag indicating additional information about the new row position.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowPositionChange.OnRowPositionChange(System.Int32,System.Int32,System.Int32)">
<summary>Notifies the consumer of a row position object of a change to the current row position.</summary>
<param name="dbReason">The reason of the event that caused this change.</param>
<param name="eventPhase">The phase of this notification.</param>
<param name="fCantDeny">When this flag is set to <see langword="true" />, the consumer cannot veto the event by returning <see langword="S_FALSE" /> because the provider cannot undo the event.</param>
<returns>An <see langword="Integer" /> that represents the result. </returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowset.AddRefRows(System.Int32,System.Int32[],System.Int32[]@,System.Int32[]@)">
<summary>Adds a reference count to an existing row handle.</summary>
<param name="cRows">The number of rows for which to increment the reference count.</param>
<param name="hRows">An array of row handles for which to increment the reference count. The reference count of row handles is incremented by one for each time they appear in the array.</param>
<param name="refCounts">An array with <paramref name="cRows" /> elements in which to return the new reference count for each row handle. The consumer allocates memory for this array. If <paramref name="refCounts" /> is a null pointer, no reference counts are returned.</param>
<param name="rowStatus">An array with <paramref name="cRows" /> elements in which to return values indicating the status of each row specified in <paramref name="hRows" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowset.GetData(System.Int32,System.Int32,System.IntPtr)">
<summary>Retrieves data from the rowset's copy of the row.</summary>
<param name="hRow">The handle of the row from which to get the data.</param>
<param name="hAccessor">The handle of the accessor to use.</param>
<param name="pData">A pointer to a buffer in which to return the data.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowset.GetNextRows(System.Int32,System.Int32,System.Int32,System.Int32@,System.Int32[]@)">
<summary>Fetches rows sequentially, remembering the previous position.</summary>
<param name="hChapter">The chapter handle designating the rows to fetch.</param>
<param name="lRowsOffset">The signed count of rows to skip before fetching rows. Deleted rows that the provider has removed from the rowset are not counted in the skip.</param>
<param name="cRows">The number of rows to fetch. A negative number means to fetch backward.</param>
<param name="cRowsObtained">A pointer to memory in which to return the actual number of fetched rows.</param>
<param name="hRows">A pointer to memory in which to return an array of handles of the fetched rows.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowset.ReleaseRows(System.Int32,System.Int32[],System.IntPtr,System.IntPtr,System.IntPtr)">
<summary>Releases rows.</summary>
<param name="cRows">The number of rows to release.</param>
<param name="hRows">An array of handles of the rows to be released. The row handles do not need to form a logical cluster; they may have been obtained at separate times and need not be for contiguous underlying rows. Row handles are decremented by one reference count for each time they appear in the array.</param>
<param name="rowOptions">An array of <paramref name="cRows" /> elements containing bitmasks indicating additional options to be specified when a row is released.</param>
<param name="rowRefCounts">An array with <paramref name="cRows" /> elements in which to return the new reference count of each row.</param>
<param name="rgRowStatus">An array with <paramref name="cRows" /> elements in which to return values indicating the status of each row specified in <paramref name="hRows" />.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowset.RestartPosition(System.Int32)">
<summary>Repositions the next fetch position to its initial position.</summary>
<param name="hChapter">The chapter handle designating the rows on which to reposition.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetChange.DeleteRows(System.Int32,System.Int32,System.Int32[],System.Int32[]@)">
<summary>Deletes rows.</summary>
<param name="hChapterReserved">The chapter handle.</param>
<param name="cRows">The number of rows to be deleted.</param>
<param name="rghRows">An array of handles of the rows to be deleted.</param>
<param name="rgRowStatus">An array with <paramref name="cRows" /> elements in which to return values indicating the status of each row specified in <paramref name="rghRows" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetChange.InsertRow(System.Int32,System.Int32,System.IntPtr,System.Int32@)">
<summary>Creates and initializes a new row.</summary>
<param name="hChapterReserved">The chapter handle.</param>
<param name="hAccessor">The handle of the accessor to use.</param>
<param name="pData">A pointer to memory containing the new data values, at offsets that correspond to the bindings in the accessor.</param>
<param name="hRow">A pointer to memory in which to return the handle of the new row.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetChange.SetData(System.Int32,System.Int32,System.IntPtr)">
<summary>Sets data values in one or more columns in a row.</summary>
<param name="hRow">The handle of the row in which to set data.</param>
<param name="hAccessor">The handle of the accessor to use.</param>
<param name="pData">A pointer to memory containing the new data values, at offsets that correspond to the bindings in the accessor.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetIdentity.IsSameRow(System.Int32,System.Int32)">
<summary>Compares two row handles to see whether they refer to the same row instance.</summary>
<param name="hThisRow">The handle of an active row.</param>
<param name="hThatRow">The handle of an active row.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetInfo.GetProperties(System.Int32,Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET[],System.Int32@,System.IntPtr@)">
<summary>Returns the current settings of all properties supported by the rowset.</summary>
<param name="cPropertyIDSets">The number of <see langword="DBPROPIDSET" /> structures in <paramref name="rgPropertyIDSets" />.</param>
<param name="rgPropertyIDSets">An array of <see langword="DBPROPIDSET" /> structures.</param>
<param name="cPropertySets">A pointer to memory in which to return the number of <see langword="DBPROPSET" /> structures returned in <paramref name="prgPropertySets" />.</param>
<param name="prgPropertySets">A pointer to memory in which to return an array of <see langword="DBPROPSET" /> structures.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetInfo.GetReferencedRowset(System.Int32,System.Guid,System.Object@)">
<summary>Returns an interface pointer to the rowset to which a bookmark or chapter applies.</summary>
<param name="iOrdinal">The bookmark or chapter column for which to get the related rowset.</param>
<param name="riid">The IID of the interface pointer to return in <paramref name="referencedRowset" />.</param>
<param name="referencedRowset">A pointer to memory in which to return an <see langword="IUnknown" /> interface pointer on the rowset that interprets values from this column.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetInfo.GetSpecification(System.Guid,System.Object@)">
<summary>Returns an interface pointer on the object (command or session) that created this rowset.</summary>
<param name="riid">The IID of the interface on which to return a pointer.</param>
<param name="specification">A pointer to memory in which to return the interface pointer.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetNotify.OnFieldChange(Microsoft.VisualBasic.Compatibility.VB6.IRowset,System.Int32,System.Int32,System.Int32[],System.Int32,System.Int32,System.Int32)">
<summary>Notifies the consumer of any change to the value of a column.</summary>
<param name="rowset">A pointer to the rowset, because the consumer may be receiving notifications from multiple rowsets and this identifies which one is calling.</param>
<param name="hRow">The handle of the row in which the column value was changed.</param>
<param name="cColumns">The count of columns in <paramref name="rgColumns" />.</param>
<param name="rgColumns">An array of columns in the row for which the value was changed.</param>
<param name="dbReason">The reason for the change, as indicated by the value of <see langword="DBREASON" />.</param>
<param name="eventPhase">The phase of this notification.</param>
<param name="fCantDeny">When this flag is set to <see langword="true" />, the consumer cannot veto the event by returning <see langword="S_FALSE" /> because the provider cannot undo the event.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetNotify.OnRowChange(Microsoft.VisualBasic.Compatibility.VB6.IRowset,System.Int32,System.Int32[],System.Int32,System.Int32,System.Int32)">
<summary>Notifies the consumer of the first change to a row or of any change that affects the entire row.</summary>
<param name="rowset">A pointer to the rowset, because the consumer may be receiving notifications from multiple rowsets and this identifies which one is calling.</param>
<param name="cRows">The count of row handles in <paramref name="rghRows" />.</param>
<param name="rghRows">An array of handles of rows that are changing.</param>
<param name="dbReason">The reason for the change, as indicated by the value of <see langword="DBREASON" />.</param>
<param name="eventPhase">The phase of this notification.</param>
<param name="fCantDeny">When this flag is set to <see langword="true" />, the consumer cannot veto the event by returning <see langword="S_FALSE" /> because the provider cannot undo the event.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.IRowsetNotify.OnRowsetChange(Microsoft.VisualBasic.Compatibility.VB6.IRowset,System.Int32,System.Int32,System.Int32)">
<summary>Notifies the consumer of any change affecting the entire rowset.</summary>
<param name="rowset">A pointer to the rowset, because the consumer may be receiving notifications from multiple rowsets and this identifies which one is calling.</param>
<param name="dbReason">The reason for the change, as indicated by the value of <see langword="DBREASON" />.</param>
<param name="eventPhase">The phase of this notification.</param>
<param name="fCantDeny">When this flag is set to <see langword="true" />, the consumer cannot veto the event by returning <see langword="S_FALSE" /> because the provider cannot undo the event.</param>
<returns>An <see langword="Integer" /> representing the result.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBinding.Dispose">
<summary>Releases the unmanaged resources that are used by an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBinding.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources that are used by an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> and, optionally, releases the managed resources.</summary>
<param name="disposing">
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.#ctor">
<summary>Initializes an instance of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Add(System.Object,System.String,System.String,Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp,System.String)">
<summary>Adds a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> to a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<param name="obj">An <see cref="T:System.Object" /> that contains data.</param>
<param name="propertyName">A <see langword="String" /> that contains a property name.</param>
<param name="dataField">A <see langword="String" /> that contains the name of a data field.</param>
<param name="dataFormat">Optional. An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp" /> interface.</param>
<param name="key">Optional. A <see langword="String" /> that contains the key value.</param>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> interface.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Add(System.Object,System.String,System.String,Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp,System.String,System.Boolean)">
<summary>Adds a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> to a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<param name="obj">An <see cref="T:System.Object" /> that contains data.</param>
<param name="propertyName">A <see langword="String" /> that contains a property name.</param>
<param name="dataField">A <see langword="String" /> that contains the name of a data field.</param>
<param name="dataFormat">An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp" /> interface.</param>
<param name="key">A <see langword="String" /> that contains the key value.</param>
<param name="immediateBind">
<see langword="true" /> to bind immediately; otherwise <see langword="false" />.</param>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> interface.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Clear">
<summary>Clears the collection of binding objects.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Dispose">
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources that are used by a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" /> and optionally releases the managed resources.</summary>
<param name="disposing">
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.GetEnumerator">
<summary>Gets an enumerator for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the collection.</returns>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Remove(System.Object)">
<summary>Removes a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> interface from a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<param name="index">An <see cref="T:System.Object" /> that represents the index.</param>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.SavePendingChanges">
<summary>Determines whether to save changes in a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.UpdateControls">
<summary>Gets the current row from the data source of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" /> object and resets the contents of controls bound through the object.</summary>
</member>
<member name="M:Microsoft.VisualBasic.Compatibility.VB6.SRDescriptionAttribute.#ctor(System.String)">
<summary>Initializes an instance of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.SRDescriptionAttribute" />.</summary>
<param name="description">A <see cref="T:System.String" /> that contains the description.</param>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BackColor">
<summary>Gets or sets the background color for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</summary>
<returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOF">
<summary>Gets a value that indicates whether the current row position is before the first row in a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
<returns>
<see langword="true" /> if the current row position is before the first row; otherwise <see langword="false" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOFAction">
<summary>Gets or sets a value that indicates what action the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> takes when the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOF" /> property is <see langword="true" />.</summary>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOFActionEnum" /> enumeration that specifies the action to take.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.CacheSize">
<summary>Gets or sets the number of records that are cached in local memory for the current <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
<returns>An <see langword="Integer" /> that specifies the number of records that are cached in local memory for the current <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" /> object. The default is 50 records.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.CommandTimeout">
<summary>Gets or sets the duration, in seconds, that the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> waits for a command to return from the server.</summary>
<returns>An <see langword="Integer" /> that specifies the number of seconds to wait when a connection is being established. The default is 15 seconds.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.CommandType">
<summary>Gets or sets a value that informs the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> what type of command to pass when opening a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
<returns>A <see langword="ADODB.CommandTypeEnum" /> enumeration that specifies the command type.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.ConnectionString">
<summary>Gets of sets the information that is used to establish a connection to a data source.</summary>
<returns>A <see cref="T:System.String" /> that contains the connection information.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.ConnectionTimeout">
<summary>Gets or sets the duration of time, in seconds, for which the provider attempts to connect to the server specified in the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.ConnectionString" /> property.</summary>
<returns>An <see langword="Integer" /> that specifies the number of seconds to wait when a connection is being established. The default is 15 seconds.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.CursorLocation">
<summary>Gets or sets the location of the cursor library for the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> object.</summary>
<returns>A <see langword="ADODB.CursorLocationEnum" /> enumeration that specifies s the location. The default is <see langword="ADODB.CursorLocationEnum.adUseClient" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.CursorType">
<summary>Gets or sets a value that specifies the default type of cursor to use when opening a result set from the specified query.</summary>
<returns>A <see langword="ADODB.CursorTypeEnum" /> enumeration that specifies the type of cursor to use.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOF">
<summary>Gets a value that indicates whether the current row position is after the last row in a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
<returns>
<see langword="true" /> if the current row position is after the last row; otherwise <see langword="false" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFAction">
<summary>Gets or sets a value that indicates what action the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> takes when the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOF" /> property is <see langword="true" />.</summary>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFActionEnum" /> enumeration that specifies the action to take.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.LockType">
<summary>Gets or sets a value that indicates the type of concurrency handling.</summary>
<returns>A <see langword="ADODB.LockTypeEnum" /> enumeration that specifies the type of concurrency handling.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.MaxRecords">
<summary>Gets or sets the maximum number of records that can be retrieved from the data source.</summary>
<returns>An <see langword="Integer" /> that specifies the number of records that can be retrieved from the data source.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Mode">
<summary>Gets or sets a value that specifies the available permissions for modifying data in a <see langword="Connection" /> or opening a <see langword="Record" /> in a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</summary>
<returns>A <see langword="ADO.ConnectModeEnum" /> that specifies the mode.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Orientation">
<summary>Gets or sets a value that specifies whether a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> will be oriented horizontally (the default) or vertically.</summary>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.OrientationEnum" /> enumeration that specifies the orientation.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Password">
<summary>Sets the password that is used during the creation of an ADO <see langword="Recordset" /> object.</summary>
<returns>A <see cref="T:System.String" /> that contains the password.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset">
<summary>Gets or sets a reference to the underlying ADO <see langword="Recordset" /> object.</summary>
<returns>An ADO <see langword="Recordset" /> object.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.RecordSource">
<summary>Gets or sets the statement or query that returns a <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" />.</summary>
<returns>A <see cref="T:System.String" /> that contains the statement or query.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Text">
<summary>Gets or sets the text that is contained in the display area of a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" />.</summary>
<returns>A <see cref="T:System.String" /> that specifies the text.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.UserName">
<summary>Gets or sets a value that represents a user of an ADO <see langword="Recordset" /> object.</summary>
<returns>A <see cref="T:System.String" /> that contains a user name.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray.Item(System.Int16)">
<summary>Gets a specific element of an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray" /> by index. Read-only.</summary>
<param name="Index">A <see langword="Short" /> that specifies the position of an element of the control array.</param>
<returns>An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> at the specified <paramref name="Index" /> in the control array.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands">
<summary>Gets a collection of <see langword="ADODB.Command" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<returns>A collection of <see langword="ADODB.Command" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Commands(System.Object)">
<summary>Gets a collection of <see langword="ADODB.Command" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Command" /> objects.</param>
<returns>A collection of <see langword="ADODB.Command" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections">
<summary>Gets a collection of <see langword="ADODB.Connection" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<returns>A collection of <see langword="ADODB.Connection" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Connections(System.Object)">
<summary>Gets a collection of <see langword="ADODB.Connection" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Connection" /> objects.</param>
<returns>A collection of <see langword="ADODB.Connection" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Object">
<summary>Gets the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> object.</summary>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment" /> object.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets">
<summary>Gets a collection of <see langword="ADODB.Recordset" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<returns>A collection of <see langword="ADODB.Recordset" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment.Recordsets(System.Object)">
<summary>Gets a collection of <see langword="ADODB.Recordset" /> objects for use in an application upgraded from Visual Basic 6.0.</summary>
<param name="lpVar">A Visual Basic 6.0 <see langword="Variant" /> that contains the <see langword="ADODB.Recordset" /> objects.</param>
<returns>A collection of <see langword="ADODB.Recordset" /> objects.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.BindingCollectionEnumerator.Current">
<summary>Gets the current element in the binding collection.</summary>
<returns>The current element in the collection.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.DataChanged">
<summary>Gets or sets a value indicating that data has changed.</summary>
<returns>
<see langword="true" /> if data has changed; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.DataField">
<summary>Gets a data field.</summary>
<returns>A <see langword="String" /> that contains the data.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.DataFormat">
<summary>Gets or sets the data format for a data field.</summary>
<returns>An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp" /> interface.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.Key">
<summary>Gets the key value for a data field.</summary>
<returns>A <see langword="String" /> that contains the key value.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.Object">
<summary>Gets a data object.</summary>
<returns>An <see cref="T:System.Object" /> that contains data.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.PropertyName">
<summary>Gets the name of a property from a data object.</summary>
<returns>A <see langword="String" /> that contains the property name.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.Count">
<summary>Gets the total number of bindings in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<returns>An <see langword="Integer" /> that contains the count.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.DataMember">
<summary>Gets or sets the data member for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<returns>A string that contains the name of the data member.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.DataSource">
<summary>Gets or sets the data source for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<returns>A COM-based <see langword="msdatasrc.DataSource" /> object.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.Item(System.Object)">
<summary>Gets the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> at the specified index.</summary>
<param name="index">An <see cref="T:System.Object" /> representing the index.</param>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> interface.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.UpdateMode">
<summary>Gets or sets the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.UpdateMode" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection" />.</summary>
<returns>An <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.UpdateMode" /> enumeration.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.DataChanged">
<summary>Gets or sets a value indicating whether data has changed.</summary>
<returns>
<see langword="true" /> if data has changed; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.DataField">
<summary>Gets a data field.</summary>
<returns>A <see langword="String" /> that contains the data.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.DataFormat">
<summary>Gets or sets the data format for a data field.</summary>
<returns>An <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp" /> interface.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.Key">
<summary>Gets the key value for a data field.</summary>
<returns>A <see langword="String" /> that contains the key value.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.Object">
<summary>Gets a data object.</summary>
<returns>An <see cref="T:System.Object" /> that contains data.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBinding.PropertyName">
<summary>Gets the name of a property from a data object.</summary>
<returns>A <see langword="String" /> that contains the property name.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Count">
<summary>Gets the total number of bindings in the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<returns>An <see langword="Integer" /> that contains the count.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.DataMember">
<summary>Gets or sets the data member for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<returns>A <see langword="String" /> that contains the name of the data member.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.DataSource">
<summary>Gets or sets the data source for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<returns>A COM-based <see langword="msdatasrc.DataSource" /> object.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.Item(System.Object)">
<summary>Gets the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> at the specified index.</summary>
<param name="index">An <see cref="T:System.Object" /> that represents the index.</param>
<returns>A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding" /> interface.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.UpdateMode">
<summary>Gets or sets the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection.UpdateMode" /> for a <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection" />.</summary>
<returns>A <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection.UpdateMode" /> enumeration.</returns>
</member>
<member name="P:Microsoft.VisualBasic.Compatibility.VB6.SRDescriptionAttribute.Description">
<summary>Gets the string that contains the description for an <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.SRDescriptionAttribute" />.</summary>
<returns>A <see cref="T:System.String" /> that contains the description.</returns>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC">
<summary>Provides compatibility with the Visual Basic 6.0 <see langword="ADO Data Control" />, which enabled you to create a connection to a database using Microsoft ActiveX Data Objects (<see langword="ADO" />). </summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOFActionEnum">
<summary>Provides constants for compatibility with the Visual Basic 6.0 <see langword="BOFAction" /> property.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOFActionEnum.adDoMoveFirst">
<summary>Keeps the first record as the current record.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.BOFActionEnum.adStayBOF">
<summary>Moving past the start of a <see langword="Recordset" /> triggers the <see langword="Validate" /> event on the first record, followed by a Reposition event on the invalid (BOF) record. At this point, the Move Previous button on the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> is disabled.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EndOfRecordsetDelegate">
<summary>Represents the method that will handle an event.</summary>
<param name="fMoreData">A <see langword="Boolean" /> determining whether the end of the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.ADODC.Recordset" /> has been reached.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFActionEnum">
<summary>Provides constants for compatibility with the Visual Basic 6.0 <see langword="EOFAction" /> property.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFActionEnum.adDoMoveLast">
<summary>Keeps the last record as the current record.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFActionEnum.adStayEOF">
<summary>Moving past the end of a <see langword="Recordset" /> triggers the <see langword="ADODC" />'s <see langword="Validation" /> event on the last record, followed by a <see langword="Reposition" /> event on the invalid (<see langword="EOF" />) record. At this point, the MoveNext button on the <see langword="ADODC" /> is disabled.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.EOFActionEnum.adDoAddNew">
<summary>Moving past the last record triggers the <see langword="ADODC" />'s <see langword="Validation" /> event to occur on the current record, followed by an automatic <see langword="AddNew" />, followed by a <see langword="Reposition" /> event on the new record.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.ErrorDelegate">
<summary>Represents the method that will handle an <see langword="Error" /> event.</summary>
<param name="errorNumber">An <see langword="Integer" /> that represents the error number.</param>
<param name="description">A <see langword="String" /> that contains the error message.</param>
<param name="scode">An <see langword="Integer" /> that represents the error source.</param>
<param name="source">A <see langword="String" /> that represents the source name.</param>
<param name="helpFile">A <see langword="String" /> that represents the Help file for the error.</param>
<param name="helpContext">An <see langword="Integer" /> that represents the context ID for a Help topic.</param>
<param name="cancelDisplay">A <see langword="Boolean" /> that determines whether the user can cancel the error dialog box.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FetchCompleteDelegate">
<summary>Represents the method that will handle a <see langword="FetchComplete" /> event.</summary>
<param name="pError">An <see langword="ADODB.Error" /> object.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" /> enumeration.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FetchProgressDelegate">
<summary>Represents the method that will handle a <see langword="FetchProgress" /> event.</summary>
<param name="progress">An <see langword="Integer" /> representing the progress of the fetch operation.</param>
<param name="maxProgress">An <see langword="Integer" /> representing the size of the fetch operation.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.FieldChangeCompleteDelegate">
<summary>Represents the method that will handle a <see langword="FieldChange" /> event.</summary>
<param name="cFields">An <see langword="Integer" /> that specifies the number of fields.</param>
<param name="fields">An <see langword="ADODB.Field" /> object.</param>
<param name="pError">An <see langword="ADODB.Error" /> object.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.MoveCompleteDelegate">
<summary>Represents the method that will handle a <see langword="MoveComplete" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="pError">An <see langword="ADODB.Error" /> object.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.OrientationEnum">
<summary>Provides constants for compatibility with the Visual Basic 6.0 <see langword="Orientation" /> property.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.OrientationEnum.adHorizontal">
<summary>The <see langword="ADODC" /> will be displayed horizontally.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.ADODC.OrientationEnum.adVertical">
<summary>The <see langword="ADODC" /> will be displayed vertically.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.RecordChangeCompleteDelegate">
<summary>Represents the method that will handle a <see langword="RecordChangeComplete" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="cRecords">An <see langword="Integer" /> representing the number of records.</param>
<param name="pError">An <see langword="ADODB.Error" /> object.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.RecordsetChangeCompleteDelegate">
<summary>Represents the method that will handle a <see langword="RecordsetChangeComplete" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="pError">An <see langword="ADODB.Field" /> object.</param>
<param name="adStatus">An <see langword="ADODB.Error" /> object.</param>
<param name="pRecordset">An <see langword="ADODB.EventStatusEnum" />.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeFieldDelegate">
<summary>Represents the method that will handle a <see langword="WillChangeField" /> event.</summary>
<param name="cFields">An <see langword="Integer" /> that represents the number of fields.</param>
<param name="fields">An <see langword="Object" /> that contains the fields.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeRecordDelegate">
<summary>Represents the method that will handle a <see langword="WillChangeRecord" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="cRecords">An <see langword="Integer" /> that represents the number of records.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillChangeRecordsetDelegate">
<summary>Represents the method that will handle a <see langword="WillChangeRecordset" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC.WillMoveDelegate">
<summary>Represents the method that will handle a <see langword="WillMove" /> event.</summary>
<param name="adReason">An <see langword="ADODB.EventReasonEnum" />.</param>
<param name="adStatus">An <see langword="ADODB.EventStatusEnum" />.</param>
<param name="pRecordset">An <see langword="ADODB.Recordset" /> object.</param>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.ADODCArray">
<summary>Provides a control array of <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ADODC" /> controls.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.BaseDataEnvironment">
<summary>Emulates a Visual Basic 6.0 <see langword="Data Environment" /> in applications that have been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.BindingCollectionEnumerator">
<summary>Supports a simple iteration over a binding collection in an application upgraded from Visual Basic 6.0. </summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.CONNECTDATA">
<summary>A <see langword="Structure" /> that contains data that is used internally by an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBBINDING">
<summary>Provides a <see langword="Structure" /> that represents an ADO binding in an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBCOLUMNINFO">
<summary>A <see langword="Structure" /> that contains data that is used internally by an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBID">
<summary>Provides a <see langword="Structure" /> that is used internally in an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding">
<summary>Provides a managed equivalent of the <see langword="DBinding" /> interface from the Microsoft Data Binding Collection library (msbind) for use in applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBindingCollection">
<summary>Provides an interface to replace COM-based data binding in an application upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM">
<summary>Provides an enumeration for use by the tools for upgrading Visual Basic 6.0 applications to Visual Basic.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_GUID_NAME">
<summary>0</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_GUID_PROPID">
<summary>1</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_NAME">
<summary>2</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_PGUID_NAME">
<summary>3</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_PGUID_PROPID">
<summary>4</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_PROPID">
<summary>5</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.DBKINDENUM.DBKIND_GUID">
<summary>6</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.DBPROPIDSET">
<summary>Provides a <see langword="Structure" /> for use in an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IAccessor">
<summary>Provides an implementation of the OLE DB <see langword="IAccessor" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IChapteredRowset">
<summary>Provides an implementation of the OLE DB <see langword="IAccessor" /> interface for use by applications upgraded from Visual Basic 6.0. </summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IColumnsInfo">
<summary>Provides an implementation of the OLE DB <see langword="IColumnInfo" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPoint">
<summary>Provides an implementation of the OLE DB <see langword="IConnectionPoint" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IConnectionPointContainer">
<summary>Provides an implementation of the OLE DB <see langword="IConnectionPointContainer" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormat">
<summary>Provides support for the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.DataFormat" /> property of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> interface.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IDataFormatDisp">
<summary>Provides support for the <see cref="P:Microsoft.VisualBasic.Compatibility.VB6.DBinding.DataFormat" /> property of the <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.DBinding" /> interface.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnectionPoints">
<summary>Manages the definition of the <see langword="IEnumConnectionPoints" /> interface.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IEnumConnections">
<summary>Manages the definition of the <see langword="IEnumConnections" /> interface.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowPosition">
<summary>Provides an implementation of the OLE DB <see langword="IRowPosition" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowPositionChange">
<summary>Provides an implementation of the OLE DB <see langword="IRowPositionChange" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowset">
<summary>Provides an implementation of the OLE DB <see langword="IRowset" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowsetChange">
<summary>Provides an implementation of the OLE DB <see langword="IRowsetChange" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowsetIdentity">
<summary>Provides an implementation of the OLE DB <see langword="IRowsetIdentity" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowsetInfo">
<summary>Provides an implementation of the OLE DB <see langword="IRowsetInfo" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.IRowsetNotify">
<summary>Provides an implementation of the OLE DB <see langword="IRowsetNotify" /> interface for use by applications upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.MBinding">
<summary>Enables Windows Forms controls to be bound to ADO recordsets. This type is a managed equivalent of the Visual Basic 6.0 msbind library.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.MBindingCollection">
<summary>Provides an interface to replace COM-based data binding in an application upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.SRDescriptionAttribute">
<summary>Provides an attribute for use in upgrading Visual Basic 6.0 applications to Visual Basic.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.UGUID">
<summary>Provides a <see langword="Structure" /> that represents a <see cref="T:System.Guid" /> in an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.UNAME">
<summary>Provides a <see langword="Structure" /> that represents a pointer to a Name property in an application that has been upgraded from Visual Basic 6.0.</summary>
</member>
<member name="T:Microsoft.VisualBasic.Compatibility.VB6.UpdateMode">
<summary>Provides constants for compatibility with the Visual Basic 6.0 <see langword="UpdateMode" /> method.</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.UpdateMode.vbUsePropertyAttributes">
<summary>0</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.UpdateMode.vbUpdateWhenPropertyChanges">
<summary>1</summary>
</member>
<member name="F:Microsoft.VisualBasic.Compatibility.VB6.UpdateMode.vbUpdateWhenRowChanges">
<summary>2</summary>
</member>
</members>
</doc>
|