-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainForm.Designer.cs
1359 lines (1351 loc) · 70.5 KB
/
MainForm.Designer.cs
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
namespace DataQuestBuilder
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newDataQuestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.preferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.primaryTooltip = new System.Windows.Forms.ToolTip(this.components);
this.questNPCRegionID = new System.Windows.Forms.TextBox();
this.acceptText = new System.Windows.Forms.TextBox();
this.description = new System.Windows.Forms.RichTextBox();
this.questDependency = new System.Windows.Forms.TextBox();
this.questClassType = new System.Windows.Forms.TextBox();
this.startNPCName = new System.Windows.Forms.TextBox();
this.questID = new System.Windows.Forms.TextBox();
this.finishText = new System.Windows.Forms.RichTextBox();
this.sourceText = new System.Windows.Forms.RichTextBox();
this.stepText = new System.Windows.Forms.RichTextBox();
this.targetText = new System.Windows.Forms.RichTextBox();
this.advanceText = new System.Windows.Forms.RichTextBox();
this.rewardBp = new System.Windows.Forms.TextBox();
this.rewardCLXp = new System.Windows.Forms.TextBox();
this.rewardRp = new System.Windows.Forms.TextBox();
this.rewardMoney = new System.Windows.Forms.TextBox();
this.rewardXp = new System.Windows.Forms.TextBox();
this.stepItem = new System.Windows.Forms.TextBox();
this.targetName = new System.Windows.Forms.TextBox();
this.collectItem = new System.Windows.Forms.TextBox();
this.getFin = new System.Windows.Forms.TextBox();
this.getOpt = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.questMinLevel = new System.Windows.Forms.TextBox();
this.setQuest = new System.Windows.Forms.Button();
this.setStart = new System.Windows.Forms.Button();
this.startNPCSearch = new System.Windows.Forms.Button();
this.questSearch = new System.Windows.Forms.Button();
this.maxCount = new System.Windows.Forms.TextBox();
this.label32 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.eStartType = new DataQuestBuilder.eStartType();
this.questMaxLevel = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.allowedClasses = new eCharacterClass();
this.questName = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.individualStepBox = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.label19 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label31 = new System.Windows.Forms.Label();
this.label30 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.label28 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label21 = new System.Windows.Forms.Label();
this.targetSelected = new System.Windows.Forms.Button();
this.targetSearch = new System.Windows.Forms.Button();
this.eStepType = new DataQuestBuilder.eStepType();
this.label24 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.clearindstep = new System.Windows.Forms.Button();
this.stepBack = new System.Windows.Forms.Button();
this.stepForward = new System.Windows.Forms.Button();
this.stepNumber = new System.Windows.Forms.Label();
this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.label33 = new System.Windows.Forms.Label();
this.label34 = new System.Windows.Forms.Label();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.optNumber = new System.Windows.Forms.Label();
this.optrewardForward = new System.Windows.Forms.Button();
this.optrewardBack = new System.Windows.Forms.Button();
this.finNumber = new System.Windows.Forms.Label();
this.finrewardForward = new System.Windows.Forms.Button();
this.finrewardBack = new System.Windows.Forms.Button();
this.collectSelect = new System.Windows.Forms.Button();
this.itemSelect = new System.Windows.Forms.Button();
this.finSelect = new System.Windows.Forms.Button();
this.optSelect = new System.Windows.Forms.Button();
this.itemSearch = new System.Windows.Forms.Button();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.menuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.individualStepBox.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox7.SuspendLayout();
this.groupBox8.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.optionsToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(844, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newDataQuestToolStripMenuItem,
this.saveToDatabaseToolStripMenuItem,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// newDataQuestToolStripMenuItem
//
this.newDataQuestToolStripMenuItem.Name = "newDataQuestToolStripMenuItem";
this.newDataQuestToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
this.newDataQuestToolStripMenuItem.Text = "New";
this.newDataQuestToolStripMenuItem.ToolTipText = "Empties the main form.";
this.newDataQuestToolStripMenuItem.Click += new System.EventHandler(this.newDataQuestToolStripMenuItem_Click);
//
// saveToDatabaseToolStripMenuItem
//
this.saveToDatabaseToolStripMenuItem.Name = "saveToDatabaseToolStripMenuItem";
this.saveToDatabaseToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
this.saveToDatabaseToolStripMenuItem.Text = "Save";
this.saveToDatabaseToolStripMenuItem.ToolTipText = "Saves the main form to the database.";
this.saveToDatabaseToolStripMenuItem.Click += new System.EventHandler(this.saveToDatabaseToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.preferencesToolStripMenuItem});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.optionsToolStripMenuItem.Text = "Options";
//
// preferencesToolStripMenuItem
//
this.preferencesToolStripMenuItem.Name = "preferencesToolStripMenuItem";
this.preferencesToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.preferencesToolStripMenuItem.Text = "Preferences";
this.preferencesToolStripMenuItem.Click += new System.EventHandler(this.preferencesToolStripMenuItem_Click);
//
// primaryTooltip
//
this.primaryTooltip.IsBalloon = true;
this.primaryTooltip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
//
// questNPCRegionID
//
this.questNPCRegionID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.questNPCRegionID.ForeColor = System.Drawing.Color.Black;
this.questNPCRegionID.Location = new System.Drawing.Point(115, 117);
this.questNPCRegionID.Name = "questNPCRegionID";
this.questNPCRegionID.Size = new System.Drawing.Size(51, 20);
this.questNPCRegionID.TabIndex = 100;
this.primaryTooltip.SetToolTip(this.questNPCRegionID, "How many times can players complete this quest?");
this.questNPCRegionID.TextChanged += new System.EventHandler(this.questNPCRegionID_TextChanged);
//
// acceptText
//
this.acceptText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.acceptText.ForeColor = System.Drawing.Color.Black;
this.acceptText.Location = new System.Drawing.Point(10, 234);
this.acceptText.Name = "acceptText";
this.acceptText.Size = new System.Drawing.Size(156, 20);
this.acceptText.TabIndex = 12;
this.primaryTooltip.SetToolTip(this.acceptText, "This is the bracketed [] text from \"Quest Start Text\" that will accept the quest." +
" Enter without the brackets.");
//
// description
//
this.description.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.description.ForeColor = System.Drawing.Color.Black;
this.description.Location = new System.Drawing.Point(189, 192);
this.description.Name = "description";
this.description.Size = new System.Drawing.Size(121, 102);
this.description.TabIndex = 14;
this.description.Text = "";
this.primaryTooltip.SetToolTip(this.description, "This is the text displayed when the quest is offered, this is entered in the \"des" +
"cription\" field in the database. Text used to accept the quest must be [bracket" +
"ed] and set in the \"Accept Text\" box!");
this.description.TextChanged += new System.EventHandler(this.description_TextChanged);
//
// questDependency
//
this.questDependency.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.questDependency.ForeColor = System.Drawing.Color.Black;
this.questDependency.Location = new System.Drawing.Point(10, 196);
this.questDependency.Name = "questDependency";
this.questDependency.Size = new System.Drawing.Size(156, 20);
this.questDependency.TabIndex = 100;
this.primaryTooltip.SetToolTip(this.questDependency, "This is the quest that must be completed before this quest can be offered.");
//
// questClassType
//
this.questClassType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.questClassType.ForeColor = System.Drawing.Color.Black;
this.questClassType.Location = new System.Drawing.Point(11, 153);
this.questClassType.Name = "questClassType";
this.questClassType.Size = new System.Drawing.Size(100, 20);
this.questClassType.TabIndex = 8;
this.primaryTooltip.SetToolTip(this.questClassType, "Custom scripted quest steps, called on each step and when the quest is complete.");
//
// startNPCName
//
this.startNPCName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.startNPCName.ForeColor = System.Drawing.Color.Black;
this.startNPCName.Location = new System.Drawing.Point(10, 117);
this.startNPCName.Name = "startNPCName";
this.startNPCName.Size = new System.Drawing.Size(100, 20);
this.startNPCName.TabIndex = 100;
this.primaryTooltip.SetToolTip(this.startNPCName, "The NPC that offers or completes the quest (in the case of a one time drop type q" +
"uest).");
//
// questID
//
this.questID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.questID.ForeColor = System.Drawing.Color.Black;
this.questID.Location = new System.Drawing.Point(10, 34);
this.questID.Name = "questID";
this.questID.Size = new System.Drawing.Size(100, 20);
this.questID.TabIndex = 1;
this.primaryTooltip.SetToolTip(this.questID, "Enter a number for the quest ID from 0 to 32767.");
this.questID.TextChanged += new System.EventHandler(this.questID_TextChanged);
//
// finishText
//
this.finishText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.finishText.ForeColor = System.Drawing.Color.Black;
this.finishText.Location = new System.Drawing.Point(25, 371);
this.finishText.Name = "finishText";
this.finishText.Size = new System.Drawing.Size(460, 113);
this.finishText.TabIndex = 31;
this.finishText.Text = "";
this.primaryTooltip.SetToolTip(this.finishText, "This is the text the final NPC will display in the text window when the final ste" +
"p is completed.");
//
// sourceText
//
this.sourceText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.sourceText.ForeColor = System.Drawing.Color.Black;
this.sourceText.Location = new System.Drawing.Point(12, 28);
this.sourceText.Name = "sourceText";
this.sourceText.Size = new System.Drawing.Size(139, 97);
this.sourceText.TabIndex = 27;
this.sourceText.Text = "";
this.primaryTooltip.SetToolTip(this.sourceText, "This is the text that the NPC you are interacting with for this step will display" +
". If something must be whispered to advance from this step, enter it in [bracke" +
"ts].");
//
// stepText
//
this.stepText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.stepText.ForeColor = System.Drawing.Color.Black;
this.stepText.Location = new System.Drawing.Point(12, 180);
this.stepText.Name = "stepText";
this.stepText.Size = new System.Drawing.Size(139, 60);
this.stepText.TabIndex = 29;
this.stepText.Text = "";
this.primaryTooltip.SetToolTip(this.stepText, "This is the text that will be displayed in the quest journal for the current step" +
".");
//
// targetText
//
this.targetText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.targetText.ForeColor = System.Drawing.Color.Black;
this.targetText.Location = new System.Drawing.Point(12, 256);
this.targetText.Name = "targetText";
this.targetText.Size = new System.Drawing.Size(139, 60);
this.targetText.TabIndex = 30;
this.targetText.Text = "";
this.primaryTooltip.SetToolTip(this.targetText, "Typically not used, this is text shown to player when current step ends");
//
// advanceText
//
this.advanceText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.advanceText.ForeColor = System.Drawing.Color.Black;
this.advanceText.Location = new System.Drawing.Point(12, 144);
this.advanceText.Name = "advanceText";
this.advanceText.Size = new System.Drawing.Size(139, 20);
this.advanceText.TabIndex = 28;
this.advanceText.Text = "";
this.primaryTooltip.SetToolTip(this.advanceText, "This is the bracketed [] text from \"Step Text\" that will advance the step. Enter" +
" the text without the brackets here.");
//
// rewardBp
//
this.rewardBp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.rewardBp.ForeColor = System.Drawing.Color.Black;
this.rewardBp.Location = new System.Drawing.Point(49, 80);
this.rewardBp.Name = "rewardBp";
this.rewardBp.Size = new System.Drawing.Size(100, 20);
this.rewardBp.TabIndex = 25;
this.rewardBp.Text = "0";
this.primaryTooltip.SetToolTip(this.rewardBp, "BP granted at completion of this step.");
//
// rewardCLXp
//
this.rewardCLXp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.rewardCLXp.ForeColor = System.Drawing.Color.Black;
this.rewardCLXp.Location = new System.Drawing.Point(200, 32);
this.rewardCLXp.Name = "rewardCLXp";
this.rewardCLXp.Size = new System.Drawing.Size(90, 20);
this.rewardCLXp.TabIndex = 24;
this.rewardCLXp.Text = "0";
this.primaryTooltip.SetToolTip(this.rewardCLXp, resources.GetString("rewardCLXp.ToolTip"));
//
// rewardRp
//
this.rewardRp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.rewardRp.ForeColor = System.Drawing.Color.Black;
this.rewardRp.Location = new System.Drawing.Point(157, 80);
this.rewardRp.Name = "rewardRp";
this.rewardRp.Size = new System.Drawing.Size(100, 20);
this.rewardRp.TabIndex = 26;
this.rewardRp.Text = "0";
this.primaryTooltip.SetToolTip(this.rewardRp, "RP granted at completion of this step.");
//
// rewardMoney
//
this.rewardMoney.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.rewardMoney.ForeColor = System.Drawing.Color.Black;
this.rewardMoney.Location = new System.Drawing.Point(8, 32);
this.rewardMoney.Name = "rewardMoney";
this.rewardMoney.Size = new System.Drawing.Size(90, 20);
this.rewardMoney.TabIndex = 22;
this.rewardMoney.Text = "0";
this.primaryTooltip.SetToolTip(this.rewardMoney, "Money granted at completion of this step, this is the amount in copper.");
//
// rewardXp
//
this.rewardXp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.rewardXp.ForeColor = System.Drawing.Color.Black;
this.rewardXp.Location = new System.Drawing.Point(105, 32);
this.rewardXp.Name = "rewardXp";
this.rewardXp.Size = new System.Drawing.Size(90, 20);
this.rewardXp.TabIndex = 23;
this.rewardXp.Text = "0";
this.primaryTooltip.SetToolTip(this.rewardXp, "XP granted at completion of this step.");
//
// stepItem
//
this.stepItem.BackColor = System.Drawing.Color.PaleGoldenrod;
this.stepItem.ForeColor = System.Drawing.Color.Black;
this.stepItem.Location = new System.Drawing.Point(9, 105);
this.stepItem.Name = "stepItem";
this.stepItem.Size = new System.Drawing.Size(135, 20);
this.stepItem.TabIndex = 20;
this.primaryTooltip.SetToolTip(this.stepItem, "Upon completion of this step (kill, interact, etc), you will receive this item.");
//
// targetName
//
this.targetName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.targetName.ForeColor = System.Drawing.Color.Black;
this.targetName.Location = new System.Drawing.Point(9, 30);
this.targetName.Name = "targetName";
this.targetName.Size = new System.Drawing.Size(135, 20);
this.targetName.TabIndex = 17;
this.primaryTooltip.SetToolTip(this.targetName, "The NPC or Mob that must be interacted with in some way to advance or complet the" +
" quest.");
//
// collectItem
//
this.collectItem.BackColor = System.Drawing.Color.Thistle;
this.collectItem.ForeColor = System.Drawing.Color.Black;
this.collectItem.Location = new System.Drawing.Point(159, 105);
this.collectItem.Name = "collectItem";
this.collectItem.Size = new System.Drawing.Size(135, 20);
this.collectItem.TabIndex = 21;
this.primaryTooltip.SetToolTip(this.collectItem, "This is an item you must give to an NPC to advance to the next step.");
//
// getFin
//
this.getFin.BackColor = System.Drawing.Color.NavajoWhite;
this.getFin.ForeColor = System.Drawing.Color.Black;
this.getFin.Location = new System.Drawing.Point(48, 68);
this.getFin.Name = "getFin";
this.getFin.Size = new System.Drawing.Size(228, 20);
this.getFin.TabIndex = 16;
this.primaryTooltip.SetToolTip(this.getFin, "Rewards given when the quest is complete.");
//
// getOpt
//
this.getOpt.BackColor = System.Drawing.Color.MistyRose;
this.getOpt.ForeColor = System.Drawing.Color.Black;
this.getOpt.Location = new System.Drawing.Point(48, 29);
this.getOpt.Name = "getOpt";
this.getOpt.Size = new System.Drawing.Size(228, 20);
this.getOpt.TabIndex = 15;
this.primaryTooltip.SetToolTip(this.getOpt, "Optional rewards, used only with \"RewardQuest.\"");
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.White;
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.questNPCRegionID);
this.groupBox1.Controls.Add(this.label12);
this.groupBox1.Controls.Add(this.questMinLevel);
this.groupBox1.Controls.Add(this.setQuest);
this.groupBox1.Controls.Add(this.setStart);
this.groupBox1.Controls.Add(this.startNPCSearch);
this.groupBox1.Controls.Add(this.questSearch);
this.groupBox1.Controls.Add(this.maxCount);
this.groupBox1.Controls.Add(this.label32);
this.groupBox1.Controls.Add(this.acceptText);
this.groupBox1.Controls.Add(this.label15);
this.groupBox1.Controls.Add(this.label14);
this.groupBox1.Controls.Add(this.eStartType);
this.groupBox1.Controls.Add(this.questMaxLevel);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.label11);
this.groupBox1.Controls.Add(this.label10);
this.groupBox1.Controls.Add(this.allowedClasses);
this.groupBox1.Controls.Add(this.description);
this.groupBox1.Controls.Add(this.questDependency);
this.groupBox1.Controls.Add(this.questClassType);
this.groupBox1.Controls.Add(this.startNPCName);
this.groupBox1.Controls.Add(this.questName);
this.groupBox1.Controls.Add(this.questID);
this.groupBox1.Controls.Add(this.label7);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 27);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(320, 303);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Constant Quest Attributes";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(264, 175);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(13, 13);
this.label4.TabIndex = 101;
this.label4.Text = "1";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(113, 16);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(73, 13);
this.label12.TabIndex = 20;
this.label12.Text = "Min Level#:";
//
// questMinLevel
//
this.questMinLevel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.questMinLevel.ForeColor = System.Drawing.Color.Black;
this.questMinLevel.Location = new System.Drawing.Point(116, 34);
this.questMinLevel.Name = "questMinLevel";
this.questMinLevel.Size = new System.Drawing.Size(50, 20);
this.questMinLevel.TabIndex = 2;
this.questMinLevel.TextChanged += new System.EventHandler(this.questMinLevel_TextChanged);
//
// setQuest
//
this.setQuest.Location = new System.Drawing.Point(116, 174);
this.setQuest.Name = "setQuest";
this.setQuest.Size = new System.Drawing.Size(50, 20);
this.setQuest.TabIndex = 11;
this.setQuest.Text = "Set";
this.setQuest.UseVisualStyleBackColor = true;
this.setQuest.Click += new System.EventHandler(this.setQuest_Click);
//
// setStart
//
this.setStart.Location = new System.Drawing.Point(115, 94);
this.setStart.Name = "setStart";
this.setStart.Size = new System.Drawing.Size(51, 20);
this.setStart.TabIndex = 6;
this.setStart.Text = "Set";
this.setStart.UseVisualStyleBackColor = true;
this.setStart.Click += new System.EventHandler(this.setStart_Click);
//
// startNPCSearch
//
this.startNPCSearch.Location = new System.Drawing.Point(9, 94);
this.startNPCSearch.Name = "startNPCSearch";
this.startNPCSearch.Size = new System.Drawing.Size(100, 20);
this.startNPCSearch.TabIndex = 5;
this.startNPCSearch.Text = "Start NPC ->";
this.startNPCSearch.UseVisualStyleBackColor = true;
this.startNPCSearch.Click += new System.EventHandler(this.startNPCSearch_Click);
//
// questSearch
//
this.questSearch.Location = new System.Drawing.Point(10, 174);
this.questSearch.Name = "questSearch";
this.questSearch.Size = new System.Drawing.Size(100, 20);
this.questSearch.TabIndex = 10;
this.questSearch.Text = "Quest Dep ->";
this.questSearch.UseVisualStyleBackColor = true;
this.questSearch.Click += new System.EventHandler(this.questSearch_Click);
//
// maxCount
//
this.maxCount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.maxCount.ForeColor = System.Drawing.Color.Black;
this.maxCount.Location = new System.Drawing.Point(116, 153);
this.maxCount.Name = "maxCount";
this.maxCount.Size = new System.Drawing.Size(50, 20);
this.maxCount.TabIndex = 9;
this.maxCount.TextChanged += new System.EventHandler(this.maxCount_TextChanged);
//
// label32
//
this.label32.AutoSize = true;
this.label32.Location = new System.Drawing.Point(113, 137);
this.label32.Name = "label32";
this.label32.Size = new System.Drawing.Size(73, 13);
this.label32.TabIndex = 25;
this.label32.Text = "Max Count#:";
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(7, 255);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(73, 13);
this.label15.TabIndex = 3;
this.label15.Text = "Start Type:";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(7, 218);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(79, 13);
this.label14.TabIndex = 24;
this.label14.Text = "Accept Text:";
//
// eStartType
//
this.eStartType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.eStartType.ForeColor = System.Drawing.Color.Black;
this.eStartType.FormattingEnabled = true;
this.eStartType.Location = new System.Drawing.Point(9, 271);
this.eStartType.Name = "eStartType";
this.eStartType.Size = new System.Drawing.Size(157, 21);
this.eStartType.TabIndex = 13;
//
// questMaxLevel
//
this.questMaxLevel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.questMaxLevel.ForeColor = System.Drawing.Color.Black;
this.questMaxLevel.Location = new System.Drawing.Point(115, 73);
this.questMaxLevel.Name = "questMaxLevel";
this.questMaxLevel.Size = new System.Drawing.Size(51, 20);
this.questMaxLevel.TabIndex = 4;
this.questMaxLevel.TextChanged += new System.EventHandler(this.questMaxLevel_TextChanged);
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(113, 57);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(73, 13);
this.label13.TabIndex = 21;
this.label13.Text = "Max Level#:";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(207, 145);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(79, 13);
this.label11.TabIndex = 19;
this.label11.Text = "for Multiple";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(207, 132);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(79, 13);
this.label10.TabIndex = 18;
this.label10.Text = "Ctrl + Click";
//
// allowedClasses
//
this.allowedClasses.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.allowedClasses.ForeColor = System.Drawing.Color.Black;
this.allowedClasses.FormattingEnabled = true;
this.allowedClasses.Location = new System.Drawing.Point(189, 34);
this.allowedClasses.Name = "allowedClasses";
this.allowedClasses.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.allowedClasses.Size = new System.Drawing.Size(121, 95);
this.allowedClasses.TabIndex = 7;
//
// questName
//
this.questName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.questName.ForeColor = System.Drawing.Color.Black;
this.questName.Location = new System.Drawing.Point(9, 73);
this.questName.Name = "questName";
this.questName.Size = new System.Drawing.Size(100, 20);
this.questName.TabIndex = 3;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(186, 18);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(103, 13);
this.label7.TabIndex = 6;
this.label7.Text = "Allowed Classes:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(7, 137);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(73, 13);
this.label6.TabIndex = 5;
this.label6.Text = "Class Type:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(188, 175);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(73, 13);
this.label5.TabIndex = 4;
this.label5.Text = "Start Text:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(7, 57);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(73, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Quest Name:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(7, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(37, 13);
this.label1.TabIndex = 0;
this.label1.Text = "ID #:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(22, 352);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(79, 13);
this.label9.TabIndex = 8;
this.label9.Text = "Finish Text:";
//
// individualStepBox
//
this.individualStepBox.BackColor = System.Drawing.Color.White;
this.individualStepBox.Controls.Add(this.label3);
this.individualStepBox.Controls.Add(this.groupBox4);
this.individualStepBox.Controls.Add(this.groupBox2);
this.individualStepBox.Controls.Add(this.groupBox5);
this.individualStepBox.Controls.Add(this.groupBox3);
this.individualStepBox.Controls.Add(this.finishText);
this.individualStepBox.Controls.Add(this.label9);
this.individualStepBox.ForeColor = System.Drawing.Color.Black;
this.individualStepBox.Location = new System.Drawing.Point(338, 27);
this.individualStepBox.Name = "individualStepBox";
this.individualStepBox.Size = new System.Drawing.Size(499, 507);
this.individualStepBox.TabIndex = 4;
this.individualStepBox.TabStop = false;
this.individualStepBox.Text = "Individual Step";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Aquamarine;
this.label3.Font = new System.Drawing.Font("Consolas", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.Black;
this.label3.Location = new System.Drawing.Point(118, 486);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(232, 17);
this.label3.TabIndex = 32;
this.label3.Text = "Indicates a mandatory field!";
//
// groupBox4
//
this.groupBox4.BackColor = System.Drawing.Color.White;
this.groupBox4.Controls.Add(this.label19);
this.groupBox4.Controls.Add(this.sourceText);
this.groupBox4.Controls.Add(this.label20);
this.groupBox4.Controls.Add(this.stepText);
this.groupBox4.Controls.Add(this.label22);
this.groupBox4.Controls.Add(this.targetText);
this.groupBox4.Controls.Add(this.label26);
this.groupBox4.Controls.Add(this.advanceText);
this.groupBox4.Location = new System.Drawing.Point(322, 16);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(163, 333);
this.groupBox4.TabIndex = 7;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Text";
//
// label19
//
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(9, 15);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(79, 13);
this.label19.TabIndex = 17;
this.label19.Text = "Source Text:";
//
// label20
//
this.label20.AutoSize = true;
this.label20.Location = new System.Drawing.Point(9, 167);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(67, 13);
this.label20.TabIndex = 19;
this.label20.Text = "Step Text:";
//
// label22
//
this.label22.AutoSize = true;
this.label22.Location = new System.Drawing.Point(9, 128);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(85, 13);
this.label22.TabIndex = 23;
this.label22.Text = "Advance Text:";
//
// label26
//
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(9, 242);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(79, 13);
this.label26.TabIndex = 29;
this.label26.Text = "Target Text:";
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.Color.White;
this.groupBox2.Controls.Add(this.rewardBp);
this.groupBox2.Controls.Add(this.rewardCLXp);
this.groupBox2.Controls.Add(this.rewardRp);
this.groupBox2.Controls.Add(this.label31);
this.groupBox2.Controls.Add(this.label30);
this.groupBox2.Controls.Add(this.label29);
this.groupBox2.Controls.Add(this.label28);
this.groupBox2.Controls.Add(this.label27);
this.groupBox2.Controls.Add(this.rewardMoney);
this.groupBox2.Controls.Add(this.rewardXp);
this.groupBox2.Location = new System.Drawing.Point(16, 222);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(300, 127);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Reward";
//
// label31
//
this.label31.AutoSize = true;
this.label31.Location = new System.Drawing.Point(46, 63);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(31, 13);
this.label31.TabIndex = 37;
this.label31.Text = "BP#:";
//
// label30
//
this.label30.AutoSize = true;
this.label30.Location = new System.Drawing.Point(154, 63);
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(31, 13);
this.label30.TabIndex = 36;
this.label30.Text = "RP#:";
//
// label29
//
this.label29.AutoSize = true;
this.label29.Location = new System.Drawing.Point(197, 16);
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(43, 13);
this.label29.TabIndex = 35;
this.label29.Text = "CLXP#:";
//
// label28
//
this.label28.AutoSize = true;
this.label28.Location = new System.Drawing.Point(9, 16);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(49, 13);
this.label28.TabIndex = 33;
this.label28.Text = "Money#:";
//
// label27
//
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(102, 16);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(31, 13);
this.label27.TabIndex = 34;
this.label27.Text = "XP#:";
//
// groupBox5
//
this.groupBox5.BackColor = System.Drawing.Color.White;
this.groupBox5.Controls.Add(this.stepItem);
this.groupBox5.Controls.Add(this.label21);
this.groupBox5.Controls.Add(this.targetSelected);
this.groupBox5.Controls.Add(this.targetName);
this.groupBox5.Controls.Add(this.targetSearch);
this.groupBox5.Controls.Add(this.eStepType);
this.groupBox5.Controls.Add(this.collectItem);
this.groupBox5.Controls.Add(this.label24);
this.groupBox5.Controls.Add(this.label16);
this.groupBox5.Controls.Add(this.label25);
this.groupBox5.Location = new System.Drawing.Point(16, 16);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(300, 135);
this.groupBox5.TabIndex = 7;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Target Info";
//
// label21
//
this.label21.AutoSize = true;
this.label21.Location = new System.Drawing.Point(156, 87);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(85, 13);
this.label21.TabIndex = 21;
this.label21.Text = "Collect Item:";
//
// targetSelected
//
this.targetSelected.Location = new System.Drawing.Point(256, 28);
this.targetSelected.Name = "targetSelected";
this.targetSelected.Size = new System.Drawing.Size(40, 23);
this.targetSelected.TabIndex = 19;
this.targetSelected.Text = "Set";
this.targetSelected.UseVisualStyleBackColor = true;
this.targetSelected.Click += new System.EventHandler(this.targetSelected_Click);
//
// targetSearch
//
this.targetSearch.Location = new System.Drawing.Point(159, 28);
this.targetSearch.Name = "targetSearch";
this.targetSearch.Size = new System.Drawing.Size(95, 23);
this.targetSearch.TabIndex = 18;
this.targetSearch.Text = "Target Search";
this.targetSearch.UseVisualStyleBackColor = true;
this.targetSearch.Click += new System.EventHandler(this.targetSearch_Click);
//
// eStepType
//
this.eStepType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.eStepType.ForeColor = System.Drawing.Color.Black;
this.eStepType.FormattingEnabled = true;
this.eStepType.Location = new System.Drawing.Point(9, 64);
this.eStepType.Name = "eStepType";
this.eStepType.Size = new System.Drawing.Size(135, 21);
this.eStepType.TabIndex = 20;
//
// label24
//
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(6, 16);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(121, 13);
this.label24.TabIndex = 25;
this.label24.Text = "Target Name;Region:";
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(6, 50);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(67, 13);
this.label16.TabIndex = 4;
this.label16.Text = "Step Type:";
//
// label25
//
this.label25.AutoSize = true;
this.label25.Location = new System.Drawing.Point(6, 88);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(67, 13);
this.label25.TabIndex = 31;
this.label25.Text = "Step Item:";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.clearindstep);
this.groupBox3.Controls.Add(this.stepBack);
this.groupBox3.Controls.Add(this.stepForward);
this.groupBox3.Controls.Add(this.stepNumber);
this.groupBox3.Location = new System.Drawing.Point(40, 160);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(239, 56);
this.groupBox3.TabIndex = 8;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Step #";
//
// clearindstep
//
this.clearindstep.Location = new System.Drawing.Point(123, 19);
this.clearindstep.Name = "clearindstep";
this.clearindstep.Size = new System.Drawing.Size(100, 23);
this.clearindstep.TabIndex = 100;
this.clearindstep.TabStop = false;
this.clearindstep.Text = "Clear Values";
this.clearindstep.UseVisualStyleBackColor = true;
this.clearindstep.Click += new System.EventHandler(this.button1_Click);
//
// stepBack
//
this.stepBack.Location = new System.Drawing.Point(21, 19);
this.stepBack.Name = "stepBack";
this.stepBack.Size = new System.Drawing.Size(28, 23);
this.stepBack.TabIndex = 100;
this.stepBack.TabStop = false;
this.stepBack.Text = "<";
this.stepBack.UseVisualStyleBackColor = true;
this.stepBack.Click += new System.EventHandler(this.stepBack_Click);
//
// stepForward
//
this.stepForward.Location = new System.Drawing.Point(80, 19);
this.stepForward.Name = "stepForward";
this.stepForward.Size = new System.Drawing.Size(28, 23);
this.stepForward.TabIndex = 100;
this.stepForward.TabStop = false;
this.stepForward.Text = ">";
this.stepForward.UseVisualStyleBackColor = true;
this.stepForward.Click += new System.EventHandler(this.stepForward_Click);
//
// stepNumber
//