forked from syntax53/Nightmare-Redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmItem.frm
4653 lines (4388 loc) · 159 KB
/
frmItem.frm
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
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.2#0"; "MSCOMCTL.OCX"
Object = "{20D5284F-7B23-4F0A-B8B1-6C9D18B64F1C}#1.0#0"; "exlimiter.ocx"
Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
Begin VB.Form frmItem
Caption = "Item Editor"
ClientHeight = 6135
ClientLeft = 60
ClientTop = 345
ClientWidth = 8970
Icon = "frmItem.frx":0000
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 6135
ScaleWidth = 8970
Begin VB.Frame fraFilter
BackColor = &H00808080&
BorderStyle = 0 'None
Height = 5655
Left = 60
TabIndex = 243
Top = 420
Visible = 0 'False
Width = 5235
Begin VB.Frame fraFilter2
Caption = "Filtering Options"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 5295
Left = 180
TabIndex = 244
Top = 180
Width = 4875
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 9
ItemData = "frmItem.frx":08CA
Left = 3120
List = "frmItem.frx":08CC
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 285
Top = 2220
Width = 1575
End
Begin VB.CheckBox chkFilterExcludeZero
Caption = "Exclude 0 value on <= search"
Height = 255
Left = 2160
TabIndex = 284
Top = 240
Value = 1 'Checked
Width = 2535
End
Begin VB.CheckBox chkFilter
Caption = "Spell"
Enabled = 0 'False
Height = 255
Index = 14
Left = 180
TabIndex = 283
Top = 4800
Width = 1095
End
Begin VB.TextBox txtFilterSpell
Enabled = 0 'False
Height = 315
Left = 1500
MaxLength = 29
TabIndex = 282
Text = "0"
Top = 4800
Width = 1095
End
Begin VB.CheckBox chkFilter
Caption = "Message"
Enabled = 0 'False
Height = 255
Index = 12
Left = 180
TabIndex = 281
Top = 4080
Width = 1095
End
Begin VB.CheckBox chkFilter
Caption = "Textblock"
Enabled = 0 'False
Height = 255
Index = 13
Left = 180
TabIndex = 280
Top = 4440
Width = 1095
End
Begin VB.TextBox txtFilterMessage
Enabled = 0 'False
Height = 315
Left = 1500
MaxLength = 29
TabIndex = 279
Text = "0"
Top = 4080
Width = 1095
End
Begin VB.TextBox txtFilterTB
Enabled = 0 'False
Height = 315
Left = 1500
MaxLength = 29
TabIndex = 278
Text = "0"
Top = 4440
Width = 1095
End
Begin VB.CheckBox chkFilter
Caption = "Ability"
Enabled = 0 'False
Height = 255
Index = 7
Left = 180
TabIndex = 277
Top = 3300
Width = 915
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 7
ItemData = "frmItem.frx":08CE
Left = 1500
List = "frmItem.frx":08D0
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 276
Top = 3300
Width = 1575
End
Begin VB.TextBox txtFilterAbilityValue
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 7
Left = 3900
TabIndex = 275
Text = "0"
Top = 3300
Width = 555
End
Begin VB.ComboBox cmbFilterAbilityGL
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 7
ItemData = "frmItem.frx":08D2
Left = 3120
List = "frmItem.frx":08E2
Style = 2 'Dropdown List
TabIndex = 274
Top = 3300
Width = 735
End
Begin VB.CheckBox chkFilter
Caption = "Ability"
Enabled = 0 'False
Height = 255
Index = 6
Left = 180
TabIndex = 273
Top = 2940
Width = 915
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 6
ItemData = "frmItem.frx":08F6
Left = 1500
List = "frmItem.frx":08F8
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 272
Top = 2940
Width = 1575
End
Begin VB.TextBox txtFilterAbilityValue
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 6
Left = 3900
TabIndex = 271
Text = "0"
Top = 2940
Width = 555
End
Begin VB.ComboBox cmbFilterAbilityGL
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 6
ItemData = "frmItem.frx":08FA
Left = 3120
List = "frmItem.frx":090A
Style = 2 'Dropdown List
TabIndex = 270
Top = 2940
Width = 735
End
Begin VB.CheckBox chkFilter
Caption = "Non-Magical"
Enabled = 0 'False
Height = 255
Index = 11
Left = 3360
TabIndex = 269
Top = 1860
Width = 1395
End
Begin VB.TextBox txtFilterAbilityValue
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 8
Left = 3900
TabIndex = 268
Text = "0"
Top = 3660
Width = 555
End
Begin VB.ComboBox cmbFilterAbilityGL
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 8
ItemData = "frmItem.frx":091E
Left = 3120
List = "frmItem.frx":092E
Style = 2 'Dropdown List
TabIndex = 267
Top = 3660
Width = 735
End
Begin VB.CheckBox chkFilter
Caption = "Cost"
Enabled = 0 'False
Height = 255
Index = 8
Left = 180
TabIndex = 266
Top = 3660
Width = 915
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 8
ItemData = "frmItem.frx":0942
Left = 1500
List = "frmItem.frx":0955
Style = 2 'Dropdown List
TabIndex = 265
Top = 3660
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Uses > 0"
Enabled = 0 'False
Height = 255
Index = 10
Left = 3360
TabIndex = 264
Top = 1500
Width = 1395
End
Begin VB.CheckBox chkFilter
Caption = "Limit > 0"
Enabled = 0 'False
Height = 255
Index = 9
Left = 3360
TabIndex = 263
Top = 1140
Width = 1395
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 3
ItemData = "frmItem.frx":0980
Left = 1500
List = "frmItem.frx":09A2
Style = 2 'Dropdown List
TabIndex = 262
Top = 1860
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Armour"
Enabled = 0 'False
Height = 255
Index = 3
Left = 180
TabIndex = 261
Top = 1860
Width = 1035
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 2
ItemData = "frmItem.frx":0A29
Left = 1500
List = "frmItem.frx":0A39
Style = 2 'Dropdown List
TabIndex = 260
Top = 1500
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Weapon"
Enabled = 0 'False
Height = 255
Index = 2
Left = 180
TabIndex = 259
Top = 1500
Width = 1035
End
Begin VB.ComboBox cmbFilterAbilityGL
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 5
ItemData = "frmItem.frx":0A65
Left = 3120
List = "frmItem.frx":0A75
Style = 2 'Dropdown List
TabIndex = 258
Top = 2580
Width = 735
End
Begin VB.TextBox txtFilterAbilityValue
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 5
Left = 3900
TabIndex = 257
Text = "0"
Top = 2580
Width = 555
End
Begin VB.CommandButton cmdFilterReset
Caption = "Reset"
Height = 315
Left = 3420
TabIndex = 256
Top = 540
Width = 1275
End
Begin VB.CommandButton cmdFilterApply
Caption = "Apply Filter"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3120
TabIndex = 255
Top = 4080
Width = 1575
End
Begin VB.CommandButton cmdFilterCancel
Caption = "Cancel"
Height = 495
Left = 3120
TabIndex = 254
Top = 4620
Width = 1575
End
Begin VB.CheckBox chkFilterNone
Caption = "No Filter"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 180
TabIndex = 253
Top = 360
Value = 1 'Checked
Width = 1575
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 0
ItemData = "frmItem.frx":0A89
Left = 1500
List = "frmItem.frx":0AAE
Style = 2 'Dropdown List
TabIndex = 252
Top = 780
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Type"
Enabled = 0 'False
Height = 255
Index = 0
Left = 180
TabIndex = 251
Top = 780
Width = 915
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 5
ItemData = "frmItem.frx":0B09
Left = 1500
List = "frmItem.frx":0B0B
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 250
Top = 2580
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Ability"
Enabled = 0 'False
Height = 255
Index = 5
Left = 180
TabIndex = 249
Top = 2580
Width = 915
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 4
ItemData = "frmItem.frx":0B0D
Left = 1500
List = "frmItem.frx":0B0F
Sorted = -1 'True
Style = 2 'Dropdown List
TabIndex = 248
Top = 2220
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Class/Race"
Enabled = 0 'False
Height = 255
Index = 4
Left = 180
TabIndex = 247
Top = 2220
Width = 1155
End
Begin VB.ComboBox cmbFilter
Enabled = 0 'False
ForeColor = &H80000012&
Height = 315
Index = 1
ItemData = "frmItem.frx":0B11
Left = 1500
List = "frmItem.frx":0B51
Style = 2 'Dropdown List
TabIndex = 246
Top = 1140
Width = 1575
End
Begin VB.CheckBox chkFilter
Caption = "Worn"
Enabled = 0 'False
Height = 255
Index = 1
Left = 180
TabIndex = 245
Top = 1140
Width = 915
End
End
End
Begin VB.CommandButton cmdFilter
Caption = "Filter"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 60
TabIndex = 5
Top = 60
Width = 2895
End
Begin VB.Frame framNav
BorderStyle = 0 'None
Height = 6075
Left = 3060
TabIndex = 6
Top = 0
Width = 5835
Begin VB.CheckBox chkAutoSave
Caption = "Auto-Save"
Height = 195
Left = 2640
TabIndex = 242
Top = 120
Value = 1 'Checked
Width = 1155
End
Begin VB.CommandButton cmdDelete
Caption = "&Delete"
Height = 345
Left = 960
TabIndex = 8
Top = 0
Width = 975
End
Begin VB.CommandButton cmdDiscard
Caption = "Dis&card"
Height = 345
Left = 4860
TabIndex = 10
Top = 0
Width = 975
End
Begin VB.CommandButton cmdInsert
Caption = "&Insert"
Height = 345
Left = 0
TabIndex = 7
Top = 0
Width = 975
End
Begin VB.CommandButton cmdSave
Caption = "&Save"
Height = 345
Left = 3900
TabIndex = 9
Top = 0
Width = 975
End
Begin TabDlg.SSTab SSTab1
Height = 5655
Left = 0
TabIndex = 11
Top = 360
Width = 5835
_ExtentX = 10292
_ExtentY = 9975
_Version = 393216
Style = 1
Tabs = 5
TabsPerRow = 5
TabHeight = 520
TabCaption(0) = "General"
TabPicture(0) = "frmItem.frx":0BEF
Tab(0).ControlEnabled= -1 'True
Tab(0).Control(0)= "label(21)"
Tab(0).Control(0).Enabled= 0 'False
Tab(0).Control(1)= "label(20)"
Tab(0).Control(1).Enabled= 0 'False
Tab(0).Control(2)= "label(19)"
Tab(0).Control(2).Enabled= 0 'False
Tab(0).Control(3)= "label(18)"
Tab(0).Control(3).Enabled= 0 'False
Tab(0).Control(4)= "label(17)"
Tab(0).Control(4).Enabled= 0 'False
Tab(0).Control(5)= "label(15)"
Tab(0).Control(5).Enabled= 0 'False
Tab(0).Control(6)= "label(14)"
Tab(0).Control(6).Enabled= 0 'False
Tab(0).Control(7)= "label(13)"
Tab(0).Control(7).Enabled= 0 'False
Tab(0).Control(8)= "label(12)"
Tab(0).Control(8).Enabled= 0 'False
Tab(0).Control(9)= "label(11)"
Tab(0).Control(9).Enabled= 0 'False
Tab(0).Control(10)= "label(10)"
Tab(0).Control(10).Enabled= 0 'False
Tab(0).Control(11)= "label(9)"
Tab(0).Control(11).Enabled= 0 'False
Tab(0).Control(12)= "Line1"
Tab(0).Control(12).Enabled= 0 'False
Tab(0).Control(13)= "label(8)"
Tab(0).Control(13).Enabled= 0 'False
Tab(0).Control(14)= "label(1)"
Tab(0).Control(14).Enabled= 0 'False
Tab(0).Control(15)= "label(0)"
Tab(0).Control(15).Enabled= 0 'False
Tab(0).Control(16)= "Label4"
Tab(0).Control(16).Enabled= 0 'False
Tab(0).Control(17)= "Label5"
Tab(0).Control(17).Enabled= 0 'False
Tab(0).Control(18)= "lblACDR"
Tab(0).Control(18).Enabled= 0 'False
Tab(0).Control(19)= "label(6)"
Tab(0).Control(19).Enabled= 0 'False
Tab(0).Control(20)= "Label7"
Tab(0).Control(20).Enabled= 0 'False
Tab(0).Control(21)= "txtDR"
Tab(0).Control(21).Enabled= 0 'False
Tab(0).Control(22)= "chkDestroy"
Tab(0).Control(22).Enabled= 0 'False
Tab(0).Control(23)= "chkGettable"
Tab(0).Control(23).Enabled= 0 'False
Tab(0).Control(24)= "chkNotDroppable"
Tab(0).Control(24).Enabled= 0 'False
Tab(0).Control(25)= "txtAC"
Tab(0).Control(25).Enabled= 0 'False
Tab(0).Control(26)= "txtReqSTR"
Tab(0).Control(26).Enabled= 0 'False
Tab(0).Control(27)= "txtAccuracy"
Tab(0).Control(27).Enabled= 0 'False
Tab(0).Control(28)= "txtSpeed"
Tab(0).Control(28).Enabled= 0 'False
Tab(0).Control(29)= "txtMaxHit"
Tab(0).Control(29).Enabled= 0 'False
Tab(0).Control(30)= "txtMinHit"
Tab(0).Control(30).Enabled= 0 'False
Tab(0).Control(31)= "cmbCostType"
Tab(0).Control(31).Enabled= 0 'False
Tab(0).Control(32)= "txtCost"
Tab(0).Control(32).Enabled= 0 'False
Tab(0).Control(33)= "txtUses"
Tab(0).Control(33).Enabled= 0 'False
Tab(0).Control(34)= "txtLimit"
Tab(0).Control(34).Enabled= 0 'False
Tab(0).Control(35)= "txtWeight"
Tab(0).Control(35).Enabled= 0 'False
Tab(0).Control(36)= "cmbWeapon"
Tab(0).Control(36).Enabled= 0 'False
Tab(0).Control(37)= "cmbArmour"
Tab(0).Control(37).Enabled= 0 'False
Tab(0).Control(38)= "cmbWornOn"
Tab(0).Control(38).Enabled= 0 'False
Tab(0).Control(39)= "cmbType"
Tab(0).Control(39).Enabled= 0 'False
Tab(0).Control(40)= "txtName"
Tab(0).Control(40).Enabled= 0 'False
Tab(0).Control(41)= "txtNumber"
Tab(0).Control(41).Enabled= 0 'False
Tab(0).Control(42)= "chkRetainAfterUses"
Tab(0).Control(42).Enabled= 0 'False
Tab(0).Control(43)= "chkRobable"
Tab(0).Control(43).Enabled= 0 'False
Tab(0).Control(44)= "txtUnknown1"
Tab(0).Control(44).Enabled= 0 'False
Tab(0).Control(45)= "txtUnknown8"
Tab(0).Control(45).Enabled= 0 'False
Tab(0).Control(46)= "cmdCalcSwings"
Tab(0).Control(46).Enabled= 0 'False
Tab(0).Control(47)= "Text1"
Tab(0).Control(47).Enabled= 0 'False
Tab(0).ControlCount= 48
TabCaption(1) = "Desc/Msg/Cash"
TabPicture(1) = "frmItem.frx":0C0B
Tab(1).ControlEnabled= 0 'False
Tab(1).Control(0)= "Frame6"
Tab(1).Control(1)= "Frame5"
Tab(1).Control(2)= "Frame2"
Tab(1).ControlCount= 3
TabCaption(2) = "Race/Class/Negate"
TabPicture(2) = "frmItem.frx":0C27
Tab(2).ControlEnabled= 0 'False
Tab(2).Control(0)= "Frame1"
Tab(2).Control(1)= "Frame4"
Tab(2).Control(2)= "Frame3"
Tab(2).ControlCount= 3
TabCaption(3) = "Abilities p1"
TabPicture(3) = "frmItem.frx":0C43
Tab(3).ControlEnabled= 0 'False
Tab(3).Control(0)= "cmdAbilsClear(0)"
Tab(3).Control(1)= "frmAbilities(0)"
Tab(3).Control(2)= "Label8"
Tab(3).ControlCount= 3
TabCaption(4) = "Abilities p2"
TabPicture(4) = "frmItem.frx":0C5F
Tab(4).ControlEnabled= 0 'False
Tab(4).Control(0)= "Label9"
Tab(4).Control(1)= "frmAbilities(1)"
Tab(4).Control(2)= "cmdAbilsClear(1)"
Tab(4).ControlCount= 3
Begin VB.CommandButton cmdAbilsClear
Caption = "Clear"
BeginProperty Font
Name = "Small Fonts"
Size = 6.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 1
Left = -74760
TabIndex = 241
Top = 600
Width = 675
End
Begin VB.CommandButton cmdAbilsClear
Caption = "Clear"
BeginProperty Font
Name = "Small Fonts"
Size = 6.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 0
Left = -74760
TabIndex = 149
Top = 600
Width = 675
End
Begin VB.TextBox Text1
Height = 285
Left = 4500
TabIndex = 57
Top = 4620
Width = 675
End
Begin VB.Frame Frame6
Caption = "Cash when opened (container item type only)"
Height = 1035
Left = -74160
TabIndex = 82
Top = 4380
Width = 4095
Begin VB.TextBox txtRunic
Height = 315
Left = 180
TabIndex = 88
Top = 540
Width = 615
End
Begin VB.TextBox txtPlatinum
Height = 315
Left = 960
TabIndex = 89
Top = 540
Width = 615
End
Begin VB.TextBox txtGold
Height = 315
Left = 1740
TabIndex = 90
Top = 540
Width = 615
End
Begin VB.TextBox txtSilver
Height = 315
Left = 2520
TabIndex = 91
Top = 540
Width = 615
End
Begin VB.TextBox txtCopper
Height = 315
Left = 3300
TabIndex = 92
Top = 540
Width = 615
End
Begin VB.Label label
Caption = "Runic"
Height = 195
Index = 25
Left = 180
TabIndex = 83
Top = 360
Width = 615
End
Begin VB.Label label
Caption = "Platinum"
Height = 195
Index = 26
Left = 960
TabIndex = 84
Top = 360
Width = 615
End
Begin VB.Label label
Caption = "Gold"
Height = 195
Index = 27
Left = 1740
TabIndex = 85
Top = 360
Width = 435
End
Begin VB.Label label
Caption = "Silver"
Height = 195
Index = 28
Left = 2520
TabIndex = 86
Top = 360
Width = 495
End
Begin VB.Label label
Caption = "Copper"
Height = 195
Index = 29
Left = 3300
TabIndex = 87
Top = 360
Width = 615
End
End
Begin VB.CommandButton cmdCalcSwings
Caption = "Calculate Swings"
Height = 555
Left = 4680
TabIndex = 12
Top = 420
Width = 975
End
Begin VB.TextBox txtUnknown8
Height = 285
Left = 3840
TabIndex = 56
Top = 4620
Width = 615
End
Begin VB.TextBox txtUnknown1
Height = 285
Left = 3180
TabIndex = 55
Top = 4620
Width = 615
End
Begin VB.CheckBox chkRobable
Caption = "Robable"
Height = 255
Left = 3180
TabIndex = 41
Top = 2580
Width = 1095
End
Begin VB.CheckBox chkRetainAfterUses
Caption = "Retain After Uses Expire"
Height = 255
Left = 3180
TabIndex = 40
Top = 2280
Width = 2175
End
Begin VB.Frame Frame1
Caption = "Negate Spells"
Height = 1935
Left = -74880
TabIndex = 117
Top = 3600
Width = 5595
Begin VB.CommandButton cmdResetNegate
Caption = "Reset"
BeginProperty Font
Name = "Small Fonts"
Size = 6.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 4800
TabIndex = 118
Top = 60
Width = 735
End
Begin VB.TextBox txtNegate
Height = 315
Index = 9
Left = 3120
TabIndex = 147
Top = 1500
Width = 615
End
Begin VB.TextBox txtNegateName
BackColor = &H8000000F&
Height = 315
Index = 9
Left = 3720
Locked = -1 'True
MaxLength = 28
TabIndex = 148
TabStop = 0 'False
Top = 1500
Width = 1755
End
Begin VB.CommandButton cmdEditNegate
Height = 195
Index = 9
Left = 2880
TabIndex = 146
Top = 1560
Width = 195
End
Begin VB.TextBox txtNegate
Height = 315
Index = 8
Left = 3120
TabIndex = 144
Top = 1200
Width = 615
End
Begin VB.TextBox txtNegateName
BackColor = &H8000000F&
Height = 315
Index = 8
Left = 3720
Locked = -1 'True
MaxLength = 28
TabIndex = 145
TabStop = 0 'False
Top = 1200
Width = 1755
End
Begin VB.CommandButton cmdEditNegate
Height = 195
Index = 8
Left = 2880
TabIndex = 143
Top = 1260
Width = 195
End
Begin VB.TextBox txtNegate
Height = 315
Index = 7
Left = 3120
TabIndex = 141
Top = 900
Width = 615
End
Begin VB.TextBox txtNegateName
BackColor = &H8000000F&
Height = 315
Index = 7
Left = 3720
Locked = -1 'True
MaxLength = 28
TabIndex = 142
TabStop = 0 'False
Top = 900
Width = 1755
End
Begin VB.CommandButton cmdEditNegate
Height = 195
Index = 7
Left = 2880
TabIndex = 140
Top = 960
Width = 195
End
Begin VB.TextBox txtNegate
Height = 315
Index = 6
Left = 3120