-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvfp-chm-command-topics.json
More file actions
4331 lines (4331 loc) · 162 KB
/
Copy pathvfp-chm-command-topics.json
File metadata and controls
4331 lines (4331 loc) · 162 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
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
[
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "! command",
"local": "html/720d4dbf-2afa-4f75-af08-bc667a5fb8e9.htm",
"topicName": "",
"title": "RUN | ! Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "\u0026 command",
"local": "html/58f5798b-92e8-4c5b-ad97-73877f98da6f.htm",
"topicName": "",
"title": "\u0026 Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "\u0026\u0026 command",
"local": "html/67ca3953-88e5-4477-8e12-be4ce3aa2fd4.htm",
"topicName": "",
"title": "\u0026\u0026 Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "* command",
"local": "html/f7274666-bf30-4fe4-876f-7f0b0a6906f5.htm",
"topicName": "",
"title": "* Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "? | ?? command",
"local": "html/4718b6ad-af5e-4ced-8e93-7347259a92d5.htm",
"topicName": "",
"title": "? | ?? Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "??? command",
"local": "html/61fc8869-d1ea-497e-815f-41e1973667e8.htm",
"topicName": "",
"title": "??? Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... BOX command",
"local": "html/064dc9c3-11ac-422e-856c-987a50d32738.htm",
"topicName": "",
"title": "@ ... BOX Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... CLASS command",
"local": "html/53ce9d5c-7697-45c2-add7-569184d8b893.htm",
"topicName": "",
"title": "@ ... CLASS Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... CLEAR command",
"local": "html/5b3cd337-09e8-4ed7-9ac5-553848f057c6.htm",
"topicName": "",
"title": "@ ... CLEAR Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... EDIT - Edit Boxes Command",
"local": "html/c94da8da-0bdd-43d6-8f14-edcf6de00ada.htm",
"topicName": "",
"title": "@ ... EDIT - Edit Boxes Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... FILL command",
"local": "html/9623f34a-234b-494b-9a32-7322ec12a7e2.htm",
"topicName": "",
"title": "@ ... FILL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Check Boxes command",
"local": "html/482f2a40-3ebc-483c-b86b-462cf64c106e.htm",
"topicName": "",
"title": "@ ... GET - Check Boxes Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Combo Boxes command",
"local": "html/d4bb421f-0c66-4fbe-8c96-cb480b1d3f25.htm",
"topicName": "",
"title": "@ ... GET - Combo Boxes Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Command Buttons command",
"local": "html/2b5b18e4-b902-4d8a-8cb7-4eef9f3a60a3.htm",
"topicName": "",
"title": "@ ... GET - Command Buttons Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - List Boxes command",
"local": "html/3f53e0ee-2918-43be-bc29-5ca450c6c59e.htm",
"topicName": "",
"title": "@ ... GET - List Boxes Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Option Buttons command",
"local": "html/d0d2602f-6118-42ef-a8f6-70f6c6e33155.htm",
"topicName": "",
"title": "@ ... GET - Option Buttons Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Spinners Command",
"local": "html/f74d92ac-44e7-46e3-84e0-eb5a45c41727.htm",
"topicName": "",
"title": "@ ... GET - Spinners Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Text Boxes command",
"local": "html/39ecf50d-c111-4ccb-abd3-d752c62bd8ea.htm",
"topicName": "",
"title": "@ ... GET - Text Boxes Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... GET - Transparent Buttons command",
"local": "html/c872cbd2-5a00-4993-bad0-426c48629225.htm",
"topicName": "",
"title": "@ ... GET - Transparent Buttons Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... MENU Command",
"local": "html/5bcd6306-8117-4286-a741-e8d3451fc7de.htm",
"topicName": "",
"title": "@ ... MENU Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... PROMPT command",
"local": "html/7078dc8f-8932-4859-89d9-16b1781b5af8.htm",
"topicName": "",
"title": "@ ... PROMPT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... SAY - Pictures \u0026 OLE Objects command",
"local": "html/ba9f61d7-4173-4a61-b28e-022a034c7cab.htm",
"topicName": "",
"title": "@ ... SAY - Pictures \u0026 OLE Objects Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... SAY command",
"local": "html/087e146d-3b91-4b9a-a1d5-17470b37523b.htm",
"topicName": "",
"title": "@ ... SAY Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... SCROLL command",
"local": "html/a5ea9ae5-ab33-42df-a203-192e9d810c17.htm",
"topicName": "",
"title": "@ ... SCROLL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "@ ... TO command",
"local": "html/a31b0797-02fb-4a17-a2ef-155cd7fefdde.htm",
"topicName": "",
"title": "@ ... TO Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "\\ | \\\\ command",
"local": "html/b04be2e6-5973-4ce2-bc41-3b69439f19e2.htm",
"topicName": "",
"title": "\\ | \\\\ Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "= command",
"local": "html/3e1e5fc7-c629-4aa0-8c24-14f01b8f823d.htm",
"topicName": "",
"title": "= Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "= command",
"local": "html/7d2d6409-f972-4452-9c6d-91ac5c9a2a5e.htm",
"topicName": "",
"title": "SET ANSI Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ACCEPT command",
"local": "html/e8428e66-02be-4822-b8c2-26ffffdc030d.htm",
"topicName": "",
"title": "ACCEPT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ACTIVATE MENU command",
"local": "html/fe530da4-4111-49bd-8207-6e2a3c4d3533.htm",
"topicName": "",
"title": "ACTIVATE MENU Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ACTIVATE POPUP command",
"local": "html/03809745-bd0d-4ba4-9871-4d0dfdead918.htm",
"topicName": "",
"title": "ACTIVATE POPUP Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ACTIVATE SCREEN command",
"local": "html/cec56356-bf35-4720-ba0a-c15ac10c1691.htm",
"topicName": "",
"title": "ACTIVATE SCREEN Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ACTIVATE WINDOW command",
"local": "html/5a38e8ab-6e54-4387-95c6-0a84eb3ef70e.htm",
"topicName": "",
"title": "ACTIVATE WINDOW Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ADD CLASS Command",
"local": "html/d0417150-09bb-4617-a02c-e6e4e1e39393.htm",
"topicName": "",
"title": "ADD CLASS Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ADD OBJECT Clause - DEFINE CLASS Command",
"local": "html/d2417970-2d60-4a28-8dd2-b07930d802bb.htm",
"topicName": "",
"title": "DEFINE CLASS Command - ADD OBJECT Clause",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ADD TABLE command",
"local": "html/00312970-64d1-4f0f-a539-9687382bdcd9.htm",
"topicName": "",
"title": "ADD TABLE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ALTER TABLE - SQL command",
"local": "html/3c5a454a-67ec-48a8-8290-18dd0e8a97ea.htm",
"topicName": "",
"title": "ALTER TABLE - SQL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND command",
"local": "html/7210015f-dc18-451e-97d7-c1c3b86d5a2a.htm",
"topicName": "",
"title": "APPEND Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND FROM ARRAY Command",
"local": "html/5b11bd53-12f9-4727-9ae3-f5a7d3d21274.htm",
"topicName": "",
"title": "APPEND FROM ARRAY Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND FROM command",
"local": "html/c426861f-e5ef-44ae-96a6-8dbc7a4a2ad5.htm",
"topicName": "",
"title": "APPEND FROM Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND GENERAL command",
"local": "html/a87efd8b-c338-4489-83a1-9f2c8d52abb8.htm",
"topicName": "",
"title": "APPEND GENERAL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND MEMO command",
"local": "html/f169f542-85c0-4c7e-8f03-daf3efeab856.htm",
"topicName": "",
"title": "APPEND MEMO Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "APPEND PROCEDURES command",
"local": "html/28f5cb8c-bf23-4d4f-bdc8-5ba2a8fd6219.htm",
"topicName": "",
"title": "APPEND PROCEDURES Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ASSERT command",
"local": "html/6a3aab98-f27b-4fb1-9ceb-1c342782facd.htm",
"topicName": "",
"title": "ASSERT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "ASSIST command",
"local": "html/76bba874-85ca-4c79-8e6c-96a5733b969b.htm",
"topicName": "",
"title": "ASSIST Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "AVERAGE command",
"local": "html/29757d6c-b9ba-4e23-a040-47f5c68216a5.htm",
"topicName": "",
"title": "AVERAGE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BEGIN TRANSACTION command",
"local": "html/fcc6b075-43b2-45f0-9031-532710b4e8be.htm",
"topicName": "",
"title": "BEGIN TRANSACTION Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BLANK command",
"local": "html/8b44de23-12a4-4c9c-a95d-202b6bc06352.htm",
"topicName": "",
"title": "BLANK Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BROWSE command",
"local": "html/8f9cae61-2a9a-4893-8325-40426b907de8.htm",
"topicName": "",
"title": "BROWSE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BUILD APP command",
"local": "html/c18c5bb8-d2b4-4d6f-bf1a-2a0fb8b5b04e.htm",
"topicName": "",
"title": "BUILD APP Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BUILD DLL command",
"local": "html/d0dc130c-71fb-4157-a083-2d8c0bbcf886.htm",
"topicName": "",
"title": "BUILD DLL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BUILD EXE command",
"local": "html/2313b88d-751b-4b6d-800a-463d78112b5c.htm",
"topicName": "",
"title": "BUILD EXE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BUILD MTDLL command",
"local": "html/11aaf528-40c9-416b-bb33-130b12c9c4e7.htm",
"topicName": "",
"title": "BUILD MTDLL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "BUILD PROJECT command",
"local": "html/8d2c0796-23a7-45c8-a166-637152839f76.htm",
"topicName": "",
"title": "BUILD PROJECT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CALCULATE command",
"local": "html/4f6a1667-7ede-46e8-9b65-62a05f9182de.htm",
"topicName": "",
"title": "CALCULATE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CALL command",
"local": "html/8466ae8a-18dd-400a-b611-28655d3ac3a7.htm",
"topicName": "",
"title": "CALL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CANCEL command",
"local": "html/0f641b55-7cf2-4409-866d-37c9a3f63945.htm",
"topicName": "",
"title": "CANCEL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CD | CHDIR Command",
"local": "html/1580eb95-e52b-49e7-9cd2-a48e8a71011c.htm",
"topicName": "",
"title": "CD | CHDIR Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CD command",
"local": "html/1580eb95-e52b-49e7-9cd2-a48e8a71011c.htm",
"topicName": "",
"title": "CD | CHDIR Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CHANGE command",
"local": "html/cffc4866-c609-426f-95a5-e45587122aa8.htm",
"topicName": "",
"title": "CHANGE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CHDIR command",
"local": "html/1580eb95-e52b-49e7-9cd2-a48e8a71011c.htm",
"topicName": "",
"title": "CD | CHDIR Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE ALL command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE ALTERNATE command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE DATABASES command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE FORMAT command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE INDEXES command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE MEMO command",
"local": "html/f7881cc7-20cf-435e-85cd-b68c97eba480.htm",
"topicName": "",
"title": "CLOSE MEMO Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE PROCEDURE command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CLOSE TABLES command",
"local": "html/510d1838-e8cb-471b-8f92-e3409ba7a271.htm",
"topicName": "",
"title": "CLOSE Commands",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COMMAND command",
"local": "html/7d2c52b2-b8cc-421b-bfb8-28c9ba8e2ec1.htm",
"topicName": "",
"title": "Special Terms for Configuration Files",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COMMAND command",
"local": "html/7d2c52b2-b8cc-421b-bfb8-28c9ba8e2ec1.htm",
"topicName": "",
"title": "Special Terms for Configuration Files",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COMMAND command",
"local": "html/e4da0efc-19ca-4eb4-a1b7-c5f7d60a4d9c.htm",
"topicName": "",
"title": "Setting Configuration Options at Startup",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COMPILE command",
"local": "html/1d0841ea-f61e-4ee2-ab55-d531feee5f21.htm",
"topicName": "",
"title": "COMPILE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CONTINUE command",
"local": "html/4d0bef69-fd9f-4ae8-beed-e236dcd7efca.htm",
"topicName": "",
"title": "CONTINUE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY FILE command",
"local": "html/53af0023-ca09-44ff-8c59-7b44bbbd9390.htm",
"topicName": "",
"title": "COPY FILE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY INDEXES command",
"local": "html/e10add95-2f2e-4258-9994-dc735c14ca6b.htm",
"topicName": "",
"title": "COPY INDEXES Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY MEMO command",
"local": "html/fea5f32c-9969-4138-ba22-4894c3b83c7a.htm",
"topicName": "",
"title": "COPY MEMO Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY PROCEDURES command",
"local": "html/c8f4e670-b639-4976-be4f-87bbfd845bff.htm",
"topicName": "",
"title": "COPY PROCEDURES Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY STRUCTURE Command",
"local": "html/e094da09-1fe8-4fa3-80e6-f87bb9a9a4a6.htm",
"topicName": "",
"title": "COPY STRUCTURE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY STRUCTURE EXTENDED command",
"local": "html/31ed53ed-3264-4de0-9d9e-8e225589d5a7.htm",
"topicName": "",
"title": "COPY STRUCTURE EXTENDED Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY TAG Command",
"local": "html/41a79da9-c452-4c62-a200-eb22c351f8ac.htm",
"topicName": "",
"title": "COPY TAG Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY TO ARRAY command",
"local": "html/977adad9-d33e-4f01-8f63-244fd066d832.htm",
"topicName": "",
"title": "COPY TO ARRAY Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COPY TO command",
"local": "html/e5cc1f14-402f-43b7-8066-af695c60e183.htm",
"topicName": "",
"title": "COPY TO Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "COUNT Command",
"local": "html/f945ce5c-ffd1-4fc2-af1c-f45df2f501e7.htm",
"topicName": "",
"title": "COUNT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE CLASS command",
"local": "html/bf40024f-fb8b-4ded-b0a2-8298e5d8a223.htm",
"topicName": "",
"title": "CREATE CLASS Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE CLASSLIB command",
"local": "html/0b563d46-15c2-4a3b-8a64-af2103cea7cf.htm",
"topicName": "",
"title": "CREATE CLASSLIB Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE COLOR SET command",
"local": "html/f65547ce-8abe-44bb-81f1-5f1b9e2548ef.htm",
"topicName": "",
"title": "CREATE COLOR SET Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE command",
"local": "html/0d4b251c-a5cf-4754-b2f8-c01a623463f0.htm",
"topicName": "",
"title": "CREATE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE command",
"local": "html/7afa1e93-68b0-4958-8e96-40accd3b27b2.htm",
"topicName": "",
"title": "CREATE SCREEN - Quick Screen Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE CONNECTION command",
"local": "html/2f558c81-0cfb-408d-88c1-21bd328373ce.htm",
"topicName": "",
"title": "CREATE CONNECTION Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE CURSOR - SQL command",
"local": "html/203ecbbd-12ae-4caa-94b6-d3077eb685ba.htm",
"topicName": "",
"title": "CREATE CURSOR - SQL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE DATABASE command",
"local": "html/64ff85c1-0480-419d-97f5-b6d1195d1a3e.htm",
"topicName": "",
"title": "CREATE DATABASE Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE FORM command",
"local": "html/fc06db33-d64c-4893-a51e-235b5ad3edfa.htm",
"topicName": "",
"title": "CREATE FORM Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE FROM command",
"local": "html/1225275c-e888-49f8-aa8c-ce66673fe761.htm",
"topicName": "",
"title": "CREATE FROM Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE LABEL command",
"local": "html/3c68d83b-9a6c-4990-8361-79d3110c6c27.htm",
"topicName": "",
"title": "CREATE LABEL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE MENU command",
"local": "html/412aa2c2-5056-450c-8d0c-73abea4a2aa9.htm",
"topicName": "",
"title": "CREATE MENU Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE PROJECT command",
"local": "html/d4a51140-2f1f-4423-a207-a0fd38379be2.htm",
"topicName": "",
"title": "CREATE PROJECT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE QUERY Command",
"local": "html/af6dbad4-9e4b-4343-abc7-fab66044f6e6.htm",
"topicName": "",
"title": "CREATE QUERY Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE REPORT - Quick Report Command",
"local": "html/2080c68e-0957-4498-87e7-531dc2248b6b.htm",
"topicName": "",
"title": "CREATE REPORT - Quick Report Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE REPORT command",
"local": "html/2a6cb4a1-564c-4787-9952-cf85f7476ac2.htm",
"topicName": "",
"title": "CREATE REPORT Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE SCREEN - Quick Screen Command",
"local": "html/7afa1e93-68b0-4958-8e96-40accd3b27b2.htm",
"topicName": "",
"title": "CREATE SCREEN - Quick Screen Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE SCREEN command",
"local": "html/786c6c24-d14d-4861-9a21-ad64c1f52839.htm",
"topicName": "",
"title": "CREATE SCREEN Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE SQL VIEW command",
"local": "html/2a22b360-882b-4bc9-ab9d-b89be1e56dd1.htm",
"topicName": "",
"title": "CREATE SQL VIEW Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE TABLE - SQL command",
"local": "html/b14e5d95-5b1c-4cfa-a5ac-4093ea6211e0.htm",
"topicName": "",
"title": "CREATE TABLE - SQL Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE TRIGGER command",
"local": "html/049df271-42ff-47e3-93e2-d6ea50227c4b.htm",
"topicName": "",
"title": "CREATE TRIGGER Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "CREATE VIEW command",
"local": "html/b46957f2-a81b-41c2-a3a1-a85f9c3f0990.htm",
"topicName": "",
"title": "CREATE VIEW Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "DEACTIVATE MENU command",
"local": "html/cbb8b729-a652-474b-9a7e-5a511ed6729d.htm",
"topicName": "",
"title": "DEACTIVATE MENU Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "DEACTIVATE POPUP command",
"local": "html/fe1d7478-6eed-4a3b-b109-3dff56409a9d.htm",
"topicName": "",
"title": "DEACTIVATE POPUP Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "DEACTIVATE WINDOW command",
"local": "html/1dd6c4ba-a1dd-4d13-a8fe-370c97240f11.htm",
"topicName": "",
"title": "DEACTIVATE WINDOW Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "DEBUG command",
"local": "html/43f3a0f5-180f-49a3-af06-98d64bdc2c10.htm",
"topicName": "",
"title": "DEBUG Command",
"kind": "command"
},
{
"chm": "dv_foxhelp.chm",
"sourcePath": "C:\\Program Files (x86)\\Microsoft Visual FoxPro 9\\dv_foxhelp.chm",
"keyword": "DEBUGOUT command",
"local": "html/a9b1a169-0178-453a-81c8-4d12f68101ba.htm",
"topicName": "",
"title": "DEBUGOUT Command",
"kind": "command"
},