-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneratorComments_CS.txt_normalized.txt
3713 lines (3713 loc) · 488 KB
/
GeneratorComments_CS.txt_normalized.txt
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
-<autogenerated>thiscodewasgeneratedbyatoolchangestothisfilemaycauseincorrectbehaviorandwillbelostifthecodeisregenerated</autogenerated>-
<summary>privatesubnetmaskvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>submitbuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>coNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>crmusersstatscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>divmessageboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secmanagementnetworkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblspacedescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>statuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbdisablesubscribecommandcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblpythonpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
thisfilewasgeneratedbythegtk#codegeneratorchangedtousestringsinsteadofgparamspecs
<summary>lblhtmlsignaturecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtforwardtocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtzipnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>wzrdorderhostingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pointmaildomainpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>stlblcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>licensemustaccesscheckboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lockedcheckboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locissuewarningcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sourcehypervservicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>showtoolbarcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkexchangehostededitionorganizationsummarycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>websiteshomefoldercontrolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkrdpNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsprivateaddressespagedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowaspcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastpositive_int_constcs
<summary>locsummarycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlexpyearcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnwebpartscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnsendcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>changepasswordoldpasswordtextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litmessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmanagealternatenameservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locvpsaddressesquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrsvccycleperiodcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>createfilemodalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvcustomersinvoicescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>optionspanelheadercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>radioservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lochypervservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnordercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>linkwelcomemsgcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnaddvirtualdirectorycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccpureservecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsuspensionmailbodycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
thegeneratedparserwithdebuggingmessagesmaintainsastateandavaluestackcurrentlywithfixedmaximumsize@paramyylexscanner@paramyydebugdebugmessagewriterimplementingyydebugornull@returnresultofthelastreductionifany@throwsyyexceptiononirrecoverableparseerror
<summary>ltrcompanycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnwipealldatacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastand_exprcs
<summary>txtitemnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblvirtdirnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>playlabelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>deletionsettingscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lstdomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>maildomainaliaspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaspNUMBERpoolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>administratoremailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txthddcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litloggedusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tblviewitemcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtallowzonetransferscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtoucontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddldatabaseusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>organizations_settingsclass</summary><remarks>auto-generatedclass</remarks>
<summary>sslcitycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>endipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtfaxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjavaccdonoteditthislineerrorcsVERSIONVERSION
<summary>lblabusecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odscustomersinvoicescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litmaxexternaladdressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>embedtabcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lclselectcyclecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>customersservicesclass</summary><remarks>auto-generatedclass</remarks>
<summary>litextaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>masterpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>servicepropscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secsendreportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locquotareachedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>websitescustomheaderscontrolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>connectionheadercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loctotalitemscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtlastnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldatabasenamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locautodiscoverdomaincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnusedsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeleteselectedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>hostingplansquotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncreateplancontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>frontpagepasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblretryintervalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmonthdaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>linkpaypalaccntcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mailboxescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsdomainspagedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>drpdwneclcontactcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mailboxpasswordpolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>languagechoicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litsummaryemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvplancyclescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>flashlabelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>servernamerowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>selecttemplatebuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>requireconfirmpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtexecutablepathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ftp_quotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblgroupnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequireconfirmpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locwebsitedescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastoctet_typecs
<summary>calthemecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>exchangeactivesyncsettingsclass</summary><remarks>auto-generatedclass</remarks>
begingeneratedcodegeneratedbyfunction_gen_interfacesfromgenerate_setpy
<summary>lblusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litproductdesccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlfrontpagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldeviceimeacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litexternaladdressesnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkdedicatedpoolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrsvccreatedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loclastlogoffcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>imgenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tabhomefoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlcontactcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqvalusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtbackupfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>filterbuttonsrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblwarningmailbodyhintcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locjobtitlecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldomainregcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtowaurlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkrecursivecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secthrottlingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctionfunction_callersfromgenerate_callspy
<summary>pnlwelcomemsgcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnaddprivateaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtstartdatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtforwardcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>catalogbreadcrumbclass</summary><remarks>auto-generatedclass</remarks>
<summary>lblspacefoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeleteprivatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbliphelpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domaincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequirenewnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltargetspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>passwordrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valcorrectlengthcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>optionprivatenetworkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>requiredmethodfordesignersupport-donotmodifythecontentsofthismethodwiththecodeeditor</summary>
<summary>chkdisablecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqvalbouncesperhourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncancelpermissionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfirsttimeusernotecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeallocateaddressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>emailaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>introparcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtbandwidthperhourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlprimarygroupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsharedipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tblquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldiskspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccompanycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litramusagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tblmonthlycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chknumlockcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>repuserspathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>enddatelabelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mprcontentholderNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtintervalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valwarningthresholdcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastinterface_bodycs
<summary>regularexpressionvalidatorNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblservicenamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valuseraliasescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlmailaccountscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastconstr_type_speccs
<summary>lblportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtstatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>minsizescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>astrongly-typedresourceclassforlookinguplocalizedstringsetc</summary>thisclasswasauto-generatedbythestronglytypedresourcebuilderclassviaatoollikeresgenorvisualstudionettoaddorremoveamemberedityourresxfilethenrerunresgenwiththe/stroptionorrebuildyourvsproject
<summary>managealternatenameservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastunion_typejava
<summary>requirehddvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>calmodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>varrequirepasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblhtmlbodycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeleteplancontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>optionbootfromcdcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>validatorusernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locnamesteptitleNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>contactsstatscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsubjectprefixcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblinstallonwebsitecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddllicensetypecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprohibitsendcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litcountrycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsecurefoldersmodulesasmcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
autogeneratedcategory=version_NUMBER_NUMBER_deprecatedVERSION=VERSIONentrypoint=glcolorNUMBERus
<summary>txtfromcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>corgicontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsourcecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>xmldataislandNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ramquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>programidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtspacesquerycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineaststruct_typejava
<summary>secvpspermissionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>filterdialogpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>perlpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnzipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblwebsiterootfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblowneremailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rdpshadowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
thisfilewasgeneratedautomaticallybythesnowballtojavacompiler
begingeneratedcodegeneratedbyfunctiontokenkinds_generatorfromgenerate_opspy
<summary>exchangeYEARcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
-<auto-generated>thiscodewasgeneratedbyatoolruntimereleaseVERSIONVERSIONchangestothisfilemaycauseincorrectbehaviorandwillbelostifthecodeisregenerated</auto-generated>-
<summary>linkpaymentreceivedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrsvcrecurringfeecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtitemidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>littotaluserdiskspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccurrentservicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secsitecollectionsreportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>exchangecreatemailboxclass</summary><remarks>auto-generatedclass</remarks>
<summary>secwebextensionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>emailpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnksharepointpolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblwebsitelogsfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtredirecturlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaccesspasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkpasswordremindercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmailfromcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tempurlpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_comtomanagedprimitivetypesfromgenerate_comdispatchpy
<summary>lnkmailpolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secforwardingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastspecificationcs
<summary>locmodifiedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnaddselectedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdestinationservicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblcgibincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowtechnicaldetailscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastchar_typecs
<summary>lbladminpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkexchangepolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>updatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>operationtimercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>spsNUMBER_settingsclass</summary><remarks>auto-generatedclass</remarks>
<summary>txtreplytocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvcategoriescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlbandwidthcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiredisplaynamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>navigationmenucontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkviewbandwidthdetailscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secapplicationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>emailnotificationeditorclass</summary><remarks>auto-generatedclass</remarks>
<summary>valsuspensionthresholdcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btneditfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txthostingaddondesccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litdescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>administratorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblspacefolderhintcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
@generated
<summary>lblremotefoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlcountrycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>demolistboxaddcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>vldservicenamerequiredcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>timefromtimecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>managementnetworkpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequirefirstnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>savedclaimsetscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtscriptsdirectorycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncanceldeletefilescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gridmodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdomainpointwebsitecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
autogeneratedcategory=version_NUMBER_NUMBER_deprecatedVERSION=VERSIONentrypoint=glcolorNUMBERui
<summary>lblallowzonetransferscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>errormessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>plstateprovincecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmovecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlmapirichtextformatcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_recursion_checksfromgenerate_callspy
<summary>lblprotectedusersfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldomainavailablecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litlogsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiredomainnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlprioritycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsuspensionmailbcccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locipformatcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblexternaladdresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtcountrystatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>websitesextensionscontrolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domainpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>demodropdowncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlftpaccountscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtstateprovincecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cmdunzipfilescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblftpaccountscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfileencodingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizemaxreceivingsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrcurrencysymbcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbladdonnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mailboxtabsNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbdownloadcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>emptyexternaladdressesmessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gverrorpagescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkeditspacedetailscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblcrmorgidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locchangepasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlwarningsettingscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlplanscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnactivecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>responsemessageinfocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>wsspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncreatesitecollectioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlpfxpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rpthighlightscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsschedulescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txthostnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>imgNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccpuweightcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_topython_helperfromgenerate_exceptionspy
<summary>dsnnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>completesetupbuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkcrmuserscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secmailboxfeaturescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>updatepanelNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmessagesizequotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndisplaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>desctextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gperccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkgeneratecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>descriptiontextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlcountriescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fileuploadcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkresponderenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_accessor_propertyinfofromgenerate_comdispatchpy
<summary>lblsuspensionmailbodycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locinstantaliasenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sharedsslsitescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtzipfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblinstalledcountrycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fileNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>boolvaluecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>enableremotedesktopcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtwelcomemsgcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>allowsubdomainspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmxprioritycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>outputtextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locrenamesnapshotcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtfaxnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmailboxtypecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>allocateaddressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>senddocumentformcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsuspensionmailbodyhintcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sectargetcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsuspensionthresholdcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>imgrdccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaccessusernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locerrorreadingnetworkslistcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtbrowseparameterscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>clusteredmailboxservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>commentsrepeatercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>uktldfieldscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbllocationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>maileditaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
thissourcecodewasauto-generatedbywsdlVERSION=VERSIONVERSIONVERSION
<summary>litcfunavailablecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowphpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblcurrpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>itemsgridviewcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastvalue_declcs
<summary>locmanagementadaptercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_static_storagefromgenerate_uncollectablecompilationmodepy
<summary>tabheaderscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>messagetextcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>privateaddressesnumberrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txbnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbllisttoaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sslnotinstalledheadingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litmaxaddressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastwide_string_typecs
<summary>lblwarningmailfromcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litdomaincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locecpurldescrcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locstoragegroupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>radioexternalselectedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizeboxclass</summary><remarks>auto-generatedclass</remarks>
<summary>tcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrstatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>labelNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsplanscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprivateaddressesnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litpackagenamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secdisplaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmaxmessagesizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlunitscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txturlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locminutescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldisabledsummaryletterhintcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblprimarydomaincontrollercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_debug_proxiesfromgenerate_treepy
<summary>custNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsserverspagedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvedgeservicescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>providersubdomainlinkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowsiteipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secwsscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>responsecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtdomainupdatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btneditselectedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>msftpNUMBER_settingsclass</summary><remarks>auto-generatedclass</remarks>
<summary>locdnsdisabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblplandescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_compilerfromgenerate_treepy
<summary>lnkwebpolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>drplisthourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>minheightcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblperlpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>biospanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblowneremailNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_python_walker_nrfromgenerate_walkerpy
<summary>txtdomainnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mailboxselectorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtprotectedaccessfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_python_switchfromgenerate_callspy
<summary>lblusernameNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loctimecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>allcustomerscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsetupvariablescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fishcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmanagercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>targetpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbluserpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>blackberry_quotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlwmsvcsiteenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvhubtransportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>recordsprogresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>requireenumvaluecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loctimereentercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>privatesubnetmaskcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldiskspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_instructionlist_factoryfromgenerate_dynamic_instructionspy
<summary>curpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizemaxattachmentsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtdatabaseslocationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtpfxinstallpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mailboxpasswordpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locinstantaliasnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtserviceusernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsignaturecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>checkposcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>termsandconditionsclass</summary><remarks>auto-generatedclass</remarks>
<summary>txtcoldfusionpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtissuenumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbautodiscoverycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkowacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyprotogenVERSION=VERSIONculture=neutralpublickeytoken=NUMBERfNUMBERbebNUMBERVERSIONdonotedit
<summary>requireofferidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gridbuttonareacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnsetprimaryexternalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnchangeadpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtresponsecontainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbsharednotescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblgalleryfeedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccitycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>updatequotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltitleNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastsigned_longlong_intcs
<summary>cbshowspammenucontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncopycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locversioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>showcelltipscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loconeperlinecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locheartbeatcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>linkcreditcardcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>drplistyearcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldisplaynamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
autogeneratedbythriftdonoteditunlessyouaresurethatyouknowwhatyouaredoing
<summary>administratorpasswordpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddleuadrlangcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccurrentprogramidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>themecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblstartedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txttaxamountcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litprovidercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>formatcodeclass</summary><remarks>auto-generatedclass</remarks>
<summary>btnrecalculatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkcreatewebsitecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>VERSIONdatasourcecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>editrecordpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ctlassignedcatscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsubdomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>resourcespanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locfirstnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmaxsendingsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>modaltaskdetailspropertiescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldomainordercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>permissionsfilemodalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkreplacechildpermissionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>deletecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>clpmessageheadercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>stepconfigcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtfiltervaluecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowaspnetcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domainnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>emptyaddressesmessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaspnetNUMBERpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsecuritymodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizepasswordhistorycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbloldpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnsavecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblworkonbehalfcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddldatabasegroupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccpulimitcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddllocaleidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>adminoptionspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>newofferidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valbandwidthperhourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastsigned_long_intcs
<summary>lclhostingplancontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsummaryemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txthostingplandesccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbgeneratepasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tableNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>serverdetailscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbllistreplytoaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_untypedfromgenerate_dynamic_instructionspy
<summary>chkvirtdircontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>opendircontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtinitialscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secdeletionsettingscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequirecorrectprioritycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locstartedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkenabledforwardingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>dluserscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>addresseslistrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locelapsedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>optionresetcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblpdrcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmailboxdatabasecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsitelocaleidNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>headcontentplaceholdercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdisplaynamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblitemsperpagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>childentityeditcontrolNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddluserfieldscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locstopactioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbexchangecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
-<autogenerated>thiscodewasgeneratedbyatoolruntimeVERSIONVERSIONVERSIONchangestothisfilemaycauseincorrectbehaviorandwillbelostifthecodeisregenerated</autogenerated>-
<summary>btndisablecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkbackupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizenumberattemptscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>panelNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblpasswordprotectioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locunzipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrservicetypenamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncreateprofilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>recordlabelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>securedfolderspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>adheadercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rblrecurringaddoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowecommerceenblcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>resetbuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>addaccountsupdatepanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrfaxnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastdeclaratorscs
<summary>chkbuilduncfilespathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ctlcustomercreatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastboolean_typecs
<summary>locexternalnetworknamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowvirtdircontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnbackcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locnamesteptitlecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqvalrecipientspermessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>overusagereportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtprivateaddressesnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>drplistmincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldomaintranscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odscategoriescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizepasswordexpirationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastbase_type_speccs
begingeneratedcodegeneratedbyfunctiongen_convertbyreftoptrdelegatesfromgenerate_comdispatchpy
<summary>resultcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>bystatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locramquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtccemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litsendsubjectcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlphpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfilecontentoptionalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvaddressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secsendonbehalfcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locserviceplancontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblwarningstorageviewcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqcountrystatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtphpNUMBERpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtmoderatoremailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvrolescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkimapcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>imgdisabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locrebootallowedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cmdcreateaccessdbcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>itemnamerowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>managercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_accessorsfromgenerate_comdispatchpy
<summary>intretrycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnklistscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>passwordupdatepanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>numfrozencontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>deleteinstantaliascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblretainlocalcopycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>zipfilesmodalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>radioprivateselectedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbmessagesperhourenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbexistingusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locsnapshotsNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chksavevhdcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>demolistboxmultiplecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbenablepopretreivalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdomainsquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>logoutbtncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblinternaladdresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtpopretreivalaccountscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locgrantaccesscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblinstalledexpirationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkallspacescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locsharepointcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdepartmentcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sechousekeepingtoolscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>templatespathvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtemerrecpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltitlecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secautorespondercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtportcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_shared_call_sites_propertiesfromgenerate_callspy
<summary>lblinternalipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sslorganizationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>hostedsolution_quotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtvaluecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltotalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblprotectedaccessfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tabextensionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiredatabasecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyprotogenVERSION=VERSIONculture=neutralpublickeytoken=NUMBERfdNUMBERbNUMBERfNUMBERdNUMBERcddonotedit
<summary>lbltasknamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secfrontpagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaspnetNUMBERxNUMBERpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>userspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlsourcecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltargetservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprivatenetworkenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddltopleveldomstranscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblserverpathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblbcccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtbusinessphonecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlfedarationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>startipcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ipaddressespanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblrootwebapplicationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>adminpasswordpolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>exportpathvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secresourcescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblusernamereadonlycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkterminalsessionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastsimple_declaratorjava
<summary>webapplicationgalleryheaderNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>bcnavigatepathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncreateusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>radioprivaterandomcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locfaxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqvalmessagesperhourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>securedusernamepolicycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongenerate_enum_castsfromgenerate_castspy
<summary>pnlcustomauthcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnupdateprofilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>trchangepasswordwarningcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>movefilespanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>quotadomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequirecorrectnumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domainslistcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>administratornamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>forwardingaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>convertcodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locnotecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>statusdivcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>optiondvdinstalledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>titletextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvcustomerssvcscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>usersrepeatercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fullaccesspermissioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblrecordnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunction_gen_opsfromgenerate_setpy
<summary>txtresponsiblepersoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litextsubnetcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbluseraliasesquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblpoolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeletecyclecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mdaemon_editaccountclass</summary><remarks>auto-generatedclass</remarks>
<summary>personalinfopanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnlblcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjavaccdonoteditthislinequeryparserconstantsjava
<summary>litsendfromcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrcitycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtgalleryfeedurlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkwhoisenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>changepasswordbuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvitemscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>usersquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
thissourcecodewasauto-generatedbymicrosoftvsdesignerVERSIONVERSIONVERSIONVERSION
<summary>lblcfcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltrsvcprovidernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>linkenomregistrarcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblserviceurlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>startdatecalendarcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litsuffixcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblramcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_shared_call_sites_storagefromgenerate_callspy
<summary>chkallowsimplepasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>autostartcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>offline_paymentclass</summary><remarks>auto-generatedclass</remarks>
<summary>chkrebootcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncreatetldcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtorganizationnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>statistics_quotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secprivatenetworkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncancelcreatedatabasecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>bllogcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdescriptioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
endgeneratedcode
<summary>ddlfiltercolumncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccreatefoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfinishedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>categorieslistcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locstartoptionstextcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnldefaultdocumentscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litstatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lstbitscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbcopycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdomaintemplatescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastinteger_typecs
<summary>btncloseprogressdialogcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sendinstructionemailcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnviewcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequireservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>instantaliasnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>headcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fsftpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>privcustomformatrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>filespanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprivdefaultgatewaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncontacteclcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ltraddonnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valpopretreivalaccountscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctionkeyword_lookup_generatorfromgenerate_opspy
<summary>websitescustomerrorscontrolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmanagenicconfigcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>advancedsettingspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkaccountlettercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnsaveeditfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>hddquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litrdppageurlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtasppathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btncancelcopycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlproviderscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlsiteownercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbdigestmodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbdigestmodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>nosnapshotspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkoriginalmessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsnapshotscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>addaccountspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>wizardcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lochddcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqaddonnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctionfast_op_ret_bool_chooserfromgenerate_opspy
<summary>gvemailscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnrecalculatediscspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkupdatecomputernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ctxformshieldvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiresiteownercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsfilespagedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkenablepasswordrecoverycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblorganizationidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
___________|_||__|/|___||____||||||_||/||/___/_`||||_|||_||||__/||_||||____/|___/|_||_|___|_____|_|auto-generatedfromdemodbonYEAR-NUMBER-NUMBERNUMBERNUMBERNUMBERzpleasevisitURLformoreinformation
generatedbyjjtreedonoteditthislineastforward_dclcs
<summary>lblloglogicalnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbllogincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>snapshotdetailspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbbouncesperhourcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>addressespervpscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sslorganizationunitcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblenterpriseservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litprivateaddresseslistcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locdefaultgatewaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>contactsquotacontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnejectdiskcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtsitedatafoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>changeuserpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>filelookupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldemoaccountcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>tabsearchuserscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltaskcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiretxtorganizationidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtree&javaccdonoteditthislineidlparsertokenmanagercs
<summary>locstartupdelaytextcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>adpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locmanagementaddressescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprocessorsettingscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>securitycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>requirehypervservicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjavaccdonoteditthislinequeryparserjava
<summary>cbenableemailsigningcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblrefreshintervalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbspecifypasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rangecontactscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sizeissuewarningcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>percentageamountcomparevalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>blinstallresultscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddltopleveldomscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtinstantmsngrcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccurrentofferidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastor_exprcs
<summary>accountslistclass</summary><remarks>auto-generatedclass</remarks>
<summary>locostemplatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litphonenumbercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkcreateresourcescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cmdsearchcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>valrequiretitlecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>managealternatenameserverrowcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>topmenucontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>fssystemcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastfixed_pt_typecs
upgrade_todothefollowingmethodwasautomaticallygeneratedanditmustbeimplementedinordertopreservetheclasslogicms-helpmsvsccvNUMBER/dv_commoner/local/redirecthtmindex=defaultcontextwindowindex&keyword=jlcaNUMBER
<summary>createitemupdatepanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlplanaddonscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>reqdomainvalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rblusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmoderatoraddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>_defaultclass</summary><remarks>auto-generatedclass</remarks>
<summary>lcladdonstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>provisioningsettingseditclass</summary><remarks>auto-generatedclass</remarks>
<summary>lblmessagecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_expr_factory_comfromgenerate_exception_factorypy
<summary>secpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblversioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>hostingplan_briefclass</summary><remarks>auto-generatedclass</remarks>
generatedbyjjtreedonoteditthislineastop_type_speccs
<summary>trpasswordconfirmcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblasppathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locadministratornamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litplannamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtcompanyidnumcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbltotalexternalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>seccoldfusioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domainrequiredvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>drpdwneclemercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvdomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>administratorpasswordcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>celluploadfilecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>stepprivatenetworkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odstaxationscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbllistfromaddresscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>idhiddenfieldcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mail_quotascontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locsearchcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddldatabaseversioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblallowedfilesNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loccrmcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblorgidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtmessagesizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnwmsvcsiteenablecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>expanddircontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mpversionmaxtextboxcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>registerusercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkquotaunlimitedcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litgroupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastconst_expcs
<summary>lbllastsynccontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>webcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtfooterhtmlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>quotasubdomainscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkmaxmessagesizeenabledcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>demoradiocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddldatabasetypecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>mainupdatepanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldirectorynamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>databasemodecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblfooterhtmlcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locwhensizeexceedscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locsendtocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
begingeneratedcodegeneratedbyfunctiongen_max_delegate_arityfromgenerate_dynsitespy
<summary>postnewcontactcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lnkvpssummarylettercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkpreserveexistingfilescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprohibitsendreceivecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>serversaddserverpanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblphpcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>passwordcontrolbcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>quicksignupclass</summary><remarks>auto-generatedclass</remarks>
<summary>generalsettingspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lclplanstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locbusinessphonecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>servicescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlsearchspacescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secconfigurationcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>enddatecalendarcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblhomefoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkparentpathscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>hostedsolutioncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>clpwarningsettingsheadercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnchangepasswordpopupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locadminoptionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>createdatabasemodalcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>directorynamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblitemnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>itemdetailsviewcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>formlogincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txttermsandcondscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkzipbackupcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>requseroptionvalidatorcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rowinstallresultscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeletetldcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locminimumpasswordlengthcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>odsapplicationscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>sendtocontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>demobuttoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbladdomaincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>litpaymentroutinecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locexternalnetworkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>marketidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>scriptmanagerNUMBERcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtaspnetNUMBERpoolcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>formcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>masterclass</summary><remarks>auto-generatedclass</remarks>
<summary>litfirstnamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>toolspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>allowedactionspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtemailannouncementscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>managepreferrednameservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locheadstatisticscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastvalue_abs_decljava
<summary>locservernamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>usealternatingbackgroundcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblbuilduncfilespathcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblmailformatcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblaspcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>intmaxexecutiontimecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkaddrandomdomainstringcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnactivateinvoicecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loctotalprivatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtmessengeridcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjavaccdonoteditthislinetokenjavaVERSIONVERSION
<summary>createdatabasepanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>showlinenumberscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>foldersstatscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>quotaspanelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>gvvpspermissionscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>domainpointerlinkcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locnewofferidcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rbltldstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbsharedtaskscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>commentaddlabelcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldomaindiskspacecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locincludesearchcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btndeleteaddoncontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>secarchivingcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldevicewiperequesttimecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblbackuptempfoldercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chkincluderoomscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnrenamecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>cbapplydefaulttemplatecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
generatedbyjjtreedonoteditthislineastinterface_namecs
<summary>btnadddomaincontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>ddlstatuscontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>txtmonthdaycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lblsitecollectionownercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>chksavefilescontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>pnlquantitycontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>lbldrivercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>loctotalsizecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>locprivpreferrednameservercontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>btnselectaccountfakecontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>
<summary>rvcontentcontrol</summary><remarks>auto-generatedfieldtomodifymovefielddeclarationfromdesignerfiletocode-behindfile</remarks>