Subversion Repositories spk

Rev

Rev 228 | Rev 237 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 228 Rev 236
Line 22... Line 22...
22
#include "Options.h"
22
#include "Options.h"
23
#include "CustomiseShip.h"
23
#include "CustomiseShip.h"
24
#include "SelectGame.h"
24
#include "SelectGame.h"
25
 
25
 
26
#undef GetTempPath
26
#undef GetTempPath
-
 
27
 
-
 
28
#define DESIGNER
27
 
29
 
28
namespace Creator {
30
namespace Creator {
29
	/// <summary>
31
	/// <summary>
30
	/// Summary for PackageForm
32
	/// Summary for PackageForm
31
	///
33
	///
Line 33... Line 35...
33
	///          'Resource File Name' property for the managed resource compiler tool
35
	///          'Resource File Name' property for the managed resource compiler tool
34
	///          associated with all .resx files this class depends on.  Otherwise,
36
	///          associated with all .resx files this class depends on.  Otherwise,
35
	///          the designers will not be able to interact properly with localized
37
	///          the designers will not be able to interact properly with localized
36
	///          resources associated with this form.
38
	///          resources associated with this form.
37
	/// </summary>
39
	/// </summary>
38
//#define DESIGNER
-
 
39
#ifdef DESIGNER
40
	/// 
40
	public ref class PackageForm : public System::Windows::Forms::Form
41
	public ref class PackageForm : public System::Windows::Forms::Form
-
 
42
/*
-
 
43
#ifdef DESIGNER
41
#else
44
#else
42
	public ref class PackageForm : public Creator::BaseForm
45
	public ref class PackageForm : public Creator::BaseForm
43
#endif	
46
#endif	
-
 
47
*/
44
	{
48
	{
45
	public:
49
	public:
46
		PackageForm(System::Windows::Forms::Form ^parent, System::Windows::Forms::TabControl ^ctrl, System::Windows::Forms::TabPage ^page, System::Windows::Forms::ToolStripMenuItem ^tool, CPackages *p, Windows::Forms::ImageList ^imagelist, SSettings *set) : BaseForm(parent, ctrl, page, tool, p, imagelist, set),
50
		PackageForm(System::Windows::Forms::Form ^parent, System::Windows::Forms::TabControl ^ctrl, System::Windows::Forms::TabPage ^page, System::Windows::Forms::ToolStripMenuItem ^tool, CPackages *p, Windows::Forms::ImageList ^imagelist, SSettings *set)
-
 
51
			/*
-
 
52
#ifndef DESIGNER
-
 
53
			: BaseForm(parent, ctrl, page, tool, p, imagelist, set),
47
			_addGameItem(nullptr),
54
			_addGameItem(nullptr),
48
			_removeGameItem(nullptr)
55
			_removeGameItem(nullptr)
-
 
56
#endif
-
 
57
*/
49
		{
58
		{
50
			InitializeComponent();
59
			InitializeComponent();
51
			m_pSettings = set;
60
			m_pSettings = set;
52
			_init();
61
			_init();
53
		}
62
		}
Line 59... Line 68...
59
 
68
 
60
		void CreateShip() { 
69
		void CreateShip() { 
61
			if ( m_pPackage ) delete m_pPackage; 
70
			if ( m_pPackage ) delete m_pPackage; 
62
			m_pPackage = new CXspFile; 
71
			m_pPackage = new CXspFile; 
63
			((CXspFile *)m_pPackage)->setShipData(L"0;0;0;0;0;0;0;0;0;106;1;5;37;0;112;202;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;35;36;1;0;0;0;0;0;1;0;25;1;0;0;0;0;0;SC_NEW_SHIP;");
72
			((CXspFile *)m_pPackage)->setShipData(L"0;0;0;0;0;0;0;0;0;106;1;5;37;0;112;202;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;35;36;1;0;0;0;0;0;1;0;25;1;0;0;0;0;0;SC_NEW_SHIP;");
64
		}
73
		}
65
		void CreatePackage() { 
74
		void CreatePackage() { 
66
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
75
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
67
			this->Icon = (cli::safe_cast<System::Drawing::Icon^  >(resources->GetObject(L"$this.Icon")));
76
			this->Icon = (cli::safe_cast<System::Drawing::Icon^  >(resources->GetObject(L"$this.Icon")));
68
			if ( m_pPackage ) delete m_pPackage; 
77
			if ( m_pPackage ) delete m_pPackage; 
69
			m_pPackage = new CSpkFile; 
78
			m_pPackage = new CSpkFile; 
Line 80... Line 89...
80
		{
89
		{
81
			if ( m_bLoading )
90
			if ( m_bLoading )
82
				return;
91
				return;
83
			if ( !m_pPackage )
92
			if ( !m_pPackage )
84
				return;
93
				return;
85
 
94
 
86
			String ^text = _US(CFileIO(m_pPackage->filename()).filename());
95
			String ^text = _US(CFileIO(m_pPackage->filename()).filename());
87
			String ^addonText = "";
96
			String ^addonText = "";
88
			if ( text->Length < 1 )
97
			if ( text->Length < 1 )
89
			{
98
			{
90
				if ( m_pPackage->GetType() == TYPE_XSP )
99
				if ( m_pPackage->GetType() == TYPE_XSP )
Line 472... Line 481...
472
		/// the contents of this method with the code editor.
481
		/// the contents of this method with the code editor.
473
		/// </summary>
482
		/// </summary>
474
		void InitializeComponent(void)
483
		void InitializeComponent(void)
475
		{
484
		{
476
			this->components = (gcnew System::ComponentModel::Container());
485
			this->components = (gcnew System::ComponentModel::Container());
477
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
486
			System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
478
			this->PicChange5 = (gcnew System::Windows::Forms::PictureBox());
487
			this->PicChange5 = (gcnew System::Windows::Forms::PictureBox());
479
			this->PicChange1 = (gcnew System::Windows::Forms::PictureBox());
488
			this->PicChange1 = (gcnew System::Windows::Forms::PictureBox());
480
			this->PicRec5 = (gcnew System::Windows::Forms::PictureBox());
489
			this->PicRec5 = (gcnew System::Windows::Forms::PictureBox());
481
			this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
490
			this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
482
			this->ListFiles = (gcnew System::Windows::Forms::ListView());
491
			this->ListFiles = (gcnew System::Windows::Forms::ListView());
Line 839... Line 848...
839
			// 
848
			// 
840
			// PicChange5
849
			// PicChange5
841
			// 
850
			// 
842
			this->PicChange5->Dock = System::Windows::Forms::DockStyle::Left;
851
			this->PicChange5->Dock = System::Windows::Forms::DockStyle::Left;
843
			this->PicChange5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange5.Image")));
852
			this->PicChange5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange5.Image")));
844
			this->PicChange5->Location = System::Drawing::Point(132, 19);
853
			this->PicChange5->Location = System::Drawing::Point(99, 16);
845
			this->PicChange5->Margin = System::Windows::Forms::Padding(4);
-
 
846
			this->PicChange5->Name = L"PicChange5";
854
			this->PicChange5->Name = L"PicChange5";
847
			this->PicChange5->Size = System::Drawing::Size(32, 32);
855
			this->PicChange5->Size = System::Drawing::Size(24, 25);
848
			this->PicChange5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
856
			this->PicChange5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
849
			this->PicChange5->TabIndex = 18;
857
			this->PicChange5->TabIndex = 18;
850
			this->PicChange5->TabStop = false;
858
			this->PicChange5->TabStop = false;
851
			this->PicChange5->Click += gcnew System::EventHandler(this, &PackageForm::PicChange5_Click);
859
			this->PicChange5->Click += gcnew System::EventHandler(this, &PackageForm::PicChange5_Click);
852
			// 
860
			// 
853
			// PicChange1
861
			// PicChange1
854
			// 
862
			// 
855
			this->PicChange1->Dock = System::Windows::Forms::DockStyle::Left;
863
			this->PicChange1->Dock = System::Windows::Forms::DockStyle::Left;
856
			this->PicChange1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange1.Image")));
864
			this->PicChange1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange1.Image")));
857
			this->PicChange1->Location = System::Drawing::Point(4, 19);
865
			this->PicChange1->Location = System::Drawing::Point(3, 16);
858
			this->PicChange1->Margin = System::Windows::Forms::Padding(4);
-
 
859
			this->PicChange1->Name = L"PicChange1";
866
			this->PicChange1->Name = L"PicChange1";
860
			this->PicChange1->Size = System::Drawing::Size(32, 32);
867
			this->PicChange1->Size = System::Drawing::Size(24, 25);
861
			this->PicChange1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
868
			this->PicChange1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
862
			this->PicChange1->TabIndex = 14;
869
			this->PicChange1->TabIndex = 14;
863
			this->PicChange1->TabStop = false;
870
			this->PicChange1->TabStop = false;
864
			this->PicChange1->Click += gcnew System::EventHandler(this, &PackageForm::PicChange1_Click);
871
			this->PicChange1->Click += gcnew System::EventHandler(this, &PackageForm::PicChange1_Click);
865
			// 
872
			// 
866
			// PicRec5
873
			// PicRec5
867
			// 
874
			// 
868
			this->PicRec5->Dock = System::Windows::Forms::DockStyle::Left;
875
			this->PicRec5->Dock = System::Windows::Forms::DockStyle::Left;
869
			this->PicRec5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec5.Image")));
876
			this->PicRec5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec5.Image")));
870
			this->PicRec5->Location = System::Drawing::Point(132, 19);
877
			this->PicRec5->Location = System::Drawing::Point(99, 16);
871
			this->PicRec5->Margin = System::Windows::Forms::Padding(4);
-
 
872
			this->PicRec5->Name = L"PicRec5";
878
			this->PicRec5->Name = L"PicRec5";
873
			this->PicRec5->Size = System::Drawing::Size(32, 32);
879
			this->PicRec5->Size = System::Drawing::Size(24, 25);
874
			this->PicRec5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
880
			this->PicRec5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
875
			this->PicRec5->TabIndex = 18;
881
			this->PicRec5->TabIndex = 18;
876
			this->PicRec5->TabStop = false;
882
			this->PicRec5->TabStop = false;
877
			this->PicRec5->Click += gcnew System::EventHandler(this, &PackageForm::PicRec5_Click);
883
			this->PicRec5->Click += gcnew System::EventHandler(this, &PackageForm::PicRec5_Click);
878
			// 
884
			// 
Line 880... Line 886...
880
			// 
886
			// 
881
			this->groupBox1->Controls->Add(this->ListFiles);
887
			this->groupBox1->Controls->Add(this->ListFiles);
882
			this->groupBox1->Controls->Add(this->panel6);
888
			this->groupBox1->Controls->Add(this->panel6);
883
			this->groupBox1->Controls->Add(this->panel5);
889
			this->groupBox1->Controls->Add(this->panel5);
884
			this->groupBox1->Dock = System::Windows::Forms::DockStyle::Fill;
890
			this->groupBox1->Dock = System::Windows::Forms::DockStyle::Fill;
885
			this->groupBox1->Location = System::Drawing::Point(7, 456);
891
			this->groupBox1->Location = System::Drawing::Point(5, 375);
886
			this->groupBox1->Margin = System::Windows::Forms::Padding(4);
-
 
887
			this->groupBox1->Name = L"groupBox1";
892
			this->groupBox1->Name = L"groupBox1";
888
			this->groupBox1->Padding = System::Windows::Forms::Padding(4);
-
 
889
			this->groupBox1->Size = System::Drawing::Size(1007, 412);
893
			this->groupBox1->Size = System::Drawing::Size(756, 330);
890
			this->groupBox1->TabIndex = 0;
894
			this->groupBox1->TabIndex = 0;
891
			this->groupBox1->TabStop = false;
895
			this->groupBox1->TabStop = false;
892
			this->groupBox1->Text = L"Files";
896
			this->groupBox1->Text = L"Files";
893
			// 
897
			// 
894
			// ListFiles
898
			// ListFiles
Line 900... Line 904...
900
			});
904
			});
901
			this->ListFiles->ContextMenuStrip = this->ContextFiles;
905
			this->ListFiles->ContextMenuStrip = this->ContextFiles;
902
			this->ListFiles->Dock = System::Windows::Forms::DockStyle::Fill;
906
			this->ListFiles->Dock = System::Windows::Forms::DockStyle::Fill;
903
			this->ListFiles->FullRowSelect = true;
907
			this->ListFiles->FullRowSelect = true;
904
			this->ListFiles->HideSelection = false;
908
			this->ListFiles->HideSelection = false;
905
			this->ListFiles->Location = System::Drawing::Point(4, 50);
909
			this->ListFiles->Location = System::Drawing::Point(3, 41);
906
			this->ListFiles->Margin = System::Windows::Forms::Padding(4);
-
 
907
			this->ListFiles->Name = L"ListFiles";
910
			this->ListFiles->Name = L"ListFiles";
908
			this->ListFiles->Size = System::Drawing::Size(999, 309);
911
			this->ListFiles->Size = System::Drawing::Size(750, 246);
909
			this->ListFiles->Sorting = System::Windows::Forms::SortOrder::Ascending;
912
			this->ListFiles->Sorting = System::Windows::Forms::SortOrder::Ascending;
910
			this->ListFiles->TabIndex = 1;
913
			this->ListFiles->TabIndex = 1;
911
			this->ListFiles->UseCompatibleStateImageBehavior = false;
914
			this->ListFiles->UseCompatibleStateImageBehavior = false;
912
			this->ListFiles->View = System::Windows::Forms::View::Details;
915
			this->ListFiles->View = System::Windows::Forms::View::Details;
913
			this->ListFiles->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListFiles_SelectedIndexChanged);
916
			this->ListFiles->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListFiles_SelectedIndexChanged);
Line 953... Line 956...
953
					this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
956
					this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
954
					this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
957
					this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
955
					this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
958
					this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
956
			});
959
			});
957
			this->ContextFiles->Name = L"ContextFiles";
960
			this->ContextFiles->Name = L"ContextFiles";
958
			this->ContextFiles->Size = System::Drawing::Size(260, 440);
961
			this->ContextFiles->Size = System::Drawing::Size(222, 440);
959
			this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
962
			this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
960
			// 
963
			// 
961
			// addFileToolStripMenuItem
964
			// addFileToolStripMenuItem
962
			// 
965
			// 
963
			this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
966
			this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
964
			this->addFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
967
			this->addFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
965
			this->addFileToolStripMenuItem->Name = L"addFileToolStripMenuItem";
968
			this->addFileToolStripMenuItem->Name = L"addFileToolStripMenuItem";
966
			this->addFileToolStripMenuItem->Size = System::Drawing::Size(259, 38);
969
			this->addFileToolStripMenuItem->Size = System::Drawing::Size(221, 38);
967
			this->addFileToolStripMenuItem->Text = L"Add File";
970
			this->addFileToolStripMenuItem->Text = L"Add File";
968
			this->addFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addFileToolStripMenuItem_Click);
971
			this->addFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addFileToolStripMenuItem_Click);
969
			// 
972
			// 
970
			// ContextFileSep1
973
			// ContextFileSep1
971
			// 
974
			// 
972
			this->ContextFileSep1->Name = L"ContextFileSep1";
975
			this->ContextFileSep1->Name = L"ContextFileSep1";
973
			this->ContextFileSep1->Size = System::Drawing::Size(256, 6);
976
			this->ContextFileSep1->Size = System::Drawing::Size(218, 6);
974
			// 
977
			// 
975
			// ContextFileEdit
978
			// ContextFileEdit
976
			// 
979
			// 
977
			this->ContextFileEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileEdit.Image")));
980
			this->ContextFileEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileEdit.Image")));
978
			this->ContextFileEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
981
			this->ContextFileEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
979
			this->ContextFileEdit->Name = L"ContextFileEdit";
982
			this->ContextFileEdit->Name = L"ContextFileEdit";
980
			this->ContextFileEdit->Size = System::Drawing::Size(259, 38);
983
			this->ContextFileEdit->Size = System::Drawing::Size(221, 38);
981
			this->ContextFileEdit->Text = L"Edit Directory";
984
			this->ContextFileEdit->Text = L"Edit Directory";
982
			this->ContextFileEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileEdit_Click);
985
			this->ContextFileEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileEdit_Click);
983
			// 
986
			// 
984
			// ContextFileDelete
987
			// ContextFileDelete
985
			// 
988
			// 
986
			this->ContextFileDelete->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileDelete.Image")));
989
			this->ContextFileDelete->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileDelete.Image")));
987
			this->ContextFileDelete->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
990
			this->ContextFileDelete->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
988
			this->ContextFileDelete->Name = L"ContextFileDelete";
991
			this->ContextFileDelete->Name = L"ContextFileDelete";
989
			this->ContextFileDelete->Size = System::Drawing::Size(259, 38);
992
			this->ContextFileDelete->Size = System::Drawing::Size(221, 38);
990
			this->ContextFileDelete->Text = L"Remove Selected";
993
			this->ContextFileDelete->Text = L"Remove Selected";
991
			this->ContextFileDelete->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileDelete_Click);
994
			this->ContextFileDelete->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileDelete_Click);
992
			// 
995
			// 
993
			// renameFileToolStripMenuItem
996
			// renameFileToolStripMenuItem
994
			// 
997
			// 
995
			this->renameFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"renameFileToolStripMenuItem.Image")));
998
			this->renameFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"renameFileToolStripMenuItem.Image")));
996
			this->renameFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
999
			this->renameFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
997
			this->renameFileToolStripMenuItem->Name = L"renameFileToolStripMenuItem";
1000
			this->renameFileToolStripMenuItem->Name = L"renameFileToolStripMenuItem";
998
			this->renameFileToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1001
			this->renameFileToolStripMenuItem->Size = System::Drawing::Size(221, 38);
999
			this->renameFileToolStripMenuItem->Text = L"Rename File";
1002
			this->renameFileToolStripMenuItem->Text = L"Rename File";
1000
			this->renameFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::renameFileToolStripMenuItem_Click);
1003
			this->renameFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::renameFileToolStripMenuItem_Click);
1001
			// 
1004
			// 
1002
			// toolStripSeparator5
1005
			// toolStripSeparator5
1003
			// 
1006
			// 
1004
			this->toolStripSeparator5->Name = L"toolStripSeparator5";
1007
			this->toolStripSeparator5->Name = L"toolStripSeparator5";
1005
			this->toolStripSeparator5->Size = System::Drawing::Size(256, 6);
1008
			this->toolStripSeparator5->Size = System::Drawing::Size(218, 6);
1006
			// 
1009
			// 
1007
			// ToolGame
1010
			// ToolGame
1008
			// 
1011
			// 
1009
			this->ToolGame->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ToolGame.Image")));
1012
			this->ToolGame->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ToolGame.Image")));
1010
			this->ToolGame->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1013
			this->ToolGame->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1011
			this->ToolGame->Name = L"ToolGame";
1014
			this->ToolGame->Name = L"ToolGame";
1012
			this->ToolGame->Size = System::Drawing::Size(259, 38);
1015
			this->ToolGame->Size = System::Drawing::Size(221, 38);
1013
			this->ToolGame->Text = L"Set Game";
1016
			this->ToolGame->Text = L"Set Game";
1014
			// 
1017
			// 
1015
			// packFileToolStripMenuItem
1018
			// packFileToolStripMenuItem
1016
			// 
1019
			// 
1017
			this->packFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"packFileToolStripMenuItem.Image")));
1020
			this->packFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"packFileToolStripMenuItem.Image")));
1018
			this->packFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1021
			this->packFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1019
			this->packFileToolStripMenuItem->Name = L"packFileToolStripMenuItem";
1022
			this->packFileToolStripMenuItem->Name = L"packFileToolStripMenuItem";
1020
			this->packFileToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1023
			this->packFileToolStripMenuItem->Size = System::Drawing::Size(221, 38);
1021
			this->packFileToolStripMenuItem->Text = L"Pack File";
1024
			this->packFileToolStripMenuItem->Text = L"Pack File";
1022
			this->packFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::packFileToolStripMenuItem_Click);
1025
			this->packFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::packFileToolStripMenuItem_Click);
1023
			// 
1026
			// 
1024
			// unpackFileToolStripMenuItem
1027
			// unpackFileToolStripMenuItem
1025
			// 
1028
			// 
1026
			this->unpackFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"unpackFileToolStripMenuItem.Image")));
1029
			this->unpackFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"unpackFileToolStripMenuItem.Image")));
1027
			this->unpackFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1030
			this->unpackFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1028
			this->unpackFileToolStripMenuItem->Name = L"unpackFileToolStripMenuItem";
1031
			this->unpackFileToolStripMenuItem->Name = L"unpackFileToolStripMenuItem";
1029
			this->unpackFileToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1032
			this->unpackFileToolStripMenuItem->Size = System::Drawing::Size(221, 38);
1030
			this->unpackFileToolStripMenuItem->Text = L"Unpack File";
1033
			this->unpackFileToolStripMenuItem->Text = L"Unpack File";
1031
			this->unpackFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::unpackFileToolStripMenuItem_Click);
1034
			this->unpackFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::unpackFileToolStripMenuItem_Click);
1032
			// 
1035
			// 
1033
			// convertToFakePatchToolStripMenuItem
1036
			// convertToFakePatchToolStripMenuItem
1034
			// 
1037
			// 
1035
			this->convertToFakePatchToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToFakePatchToolStripMenuItem.Image")));
1038
			this->convertToFakePatchToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToFakePatchToolStripMenuItem.Image")));
1036
			this->convertToFakePatchToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1039
			this->convertToFakePatchToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1037
			this->convertToFakePatchToolStripMenuItem->Name = L"convertToFakePatchToolStripMenuItem";
1040
			this->convertToFakePatchToolStripMenuItem->Name = L"convertToFakePatchToolStripMenuItem";
1038
			this->convertToFakePatchToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1041
			this->convertToFakePatchToolStripMenuItem->Size = System::Drawing::Size(221, 38);
1039
			this->convertToFakePatchToolStripMenuItem->Text = L"Convert To Fake Patch";
1042
			this->convertToFakePatchToolStripMenuItem->Text = L"Convert To Fake Patch";
1040
			this->convertToFakePatchToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToFakePatchToolStripMenuItem_Click);
1043
			this->convertToFakePatchToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToFakePatchToolStripMenuItem_Click);
1041
			// 
1044
			// 
1042
			// convertToAutoTextFileToolStripMenuItem
1045
			// convertToAutoTextFileToolStripMenuItem
1043
			// 
1046
			// 
1044
			this->convertToAutoTextFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToAutoTextFileToolStripMenuItem.Image")));
1047
			this->convertToAutoTextFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToAutoTextFileToolStripMenuItem.Image")));
1045
			this->convertToAutoTextFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1048
			this->convertToAutoTextFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1046
			this->convertToAutoTextFileToolStripMenuItem->Name = L"convertToAutoTextFileToolStripMenuItem";
1049
			this->convertToAutoTextFileToolStripMenuItem->Name = L"convertToAutoTextFileToolStripMenuItem";
1047
			this->convertToAutoTextFileToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1050
			this->convertToAutoTextFileToolStripMenuItem->Size = System::Drawing::Size(221, 38);
1048
			this->convertToAutoTextFileToolStripMenuItem->Text = L"Convert To Auto Text File";
1051
			this->convertToAutoTextFileToolStripMenuItem->Text = L"Convert To Auto Text File";
1049
			this->convertToAutoTextFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToAutoTextFileToolStripMenuItem_Click);
1052
			this->convertToAutoTextFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToAutoTextFileToolStripMenuItem_Click);
1050
			// 
1053
			// 
1051
			// convertToNormalModToolStripMenuItem
1054
			// convertToNormalModToolStripMenuItem
1052
			// 
1055
			// 
1053
			this->convertToNormalModToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToNormalModToolStripMenuItem.Image")));
1056
			this->convertToNormalModToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"convertToNormalModToolStripMenuItem.Image")));
1054
			this->convertToNormalModToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1057
			this->convertToNormalModToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1055
			this->convertToNormalModToolStripMenuItem->Name = L"convertToNormalModToolStripMenuItem";
1058
			this->convertToNormalModToolStripMenuItem->Name = L"convertToNormalModToolStripMenuItem";
1056
			this->convertToNormalModToolStripMenuItem->Size = System::Drawing::Size(259, 38);
1059
			this->convertToNormalModToolStripMenuItem->Size = System::Drawing::Size(221, 38);
1057
			this->convertToNormalModToolStripMenuItem->Text = L"Convert To Normal Mod";
1060
			this->convertToNormalModToolStripMenuItem->Text = L"Convert To Normal Mod";
1058
			this->convertToNormalModToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToNormalModToolStripMenuItem_Click);
1061
			this->convertToNormalModToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::convertToNormalModToolStripMenuItem_Click);
1059
			// 
1062
			// 
1060
			// ContextFileSep2
1063
			// ContextFileSep2
1061
			// 
1064
			// 
1062
			this->ContextFileSep2->Name = L"ContextFileSep2";
1065
			this->ContextFileSep2->Name = L"ContextFileSep2";
1063
			this->ContextFileSep2->Size = System::Drawing::Size(256, 6);
1066
			this->ContextFileSep2->Size = System::Drawing::Size(218, 6);
1064
			// 
1067
			// 
1065
			// ContextFileClear
1068
			// ContextFileClear
1066
			// 
1069
			// 
1067
			this->ContextFileClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileClear.Image")));
1070
			this->ContextFileClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextFileClear.Image")));
1068
			this->ContextFileClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1071
			this->ContextFileClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
1069
			this->ContextFileClear->Name = L"ContextFileClear";
1072
			this->ContextFileClear->Name = L"ContextFileClear";
1070
			this->ContextFileClear->Size = System::Drawing::Size(259, 38);
1073
			this->ContextFileClear->Size = System::Drawing::Size(221, 38);
1071
			this->ContextFileClear->Text = L"Clear All";
1074
			this->ContextFileClear->Text = L"Clear All";
1072
			this->ContextFileClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileClear_Click);
1075
			this->ContextFileClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextFileClear_Click);
1073
			// 
1076
			// 
1074
			// panel6
1077
			// panel6
1075
			// 
1078
			// 
1076
			this->panel6->Controls->Add(this->ButRemoveFile);
1079
			this->panel6->Controls->Add(this->ButRemoveFile);
1077
			this->panel6->Controls->Add(this->button2);
1080
			this->panel6->Controls->Add(this->button2);
1078
			this->panel6->Controls->Add(this->button1);
1081
			this->panel6->Controls->Add(this->button1);
1079
			this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
1082
			this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
1080
			this->panel6->Location = System::Drawing::Point(4, 359);
1083
			this->panel6->Location = System::Drawing::Point(3, 287);
1081
			this->panel6->Margin = System::Windows::Forms::Padding(4);
-
 
1082
			this->panel6->Name = L"panel6";
1084
			this->panel6->Name = L"panel6";
1083
			this->panel6->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1085
			this->panel6->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
1084
			this->panel6->Size = System::Drawing::Size(999, 49);
1086
			this->panel6->Size = System::Drawing::Size(750, 40);
1085
			this->panel6->TabIndex = 2;
1087
			this->panel6->TabIndex = 2;
1086
			// 
1088
			// 
1087
			// ButRemoveFile
1089
			// ButRemoveFile
1088
			// 
1090
			// 
1089
			this->ButRemoveFile->Dock = System::Windows::Forms::DockStyle::Right;
1091
			this->ButRemoveFile->Dock = System::Windows::Forms::DockStyle::Right;
1090
			this->ButRemoveFile->Location = System::Drawing::Point(655, 6);
1092
			this->ButRemoveFile->Location = System::Drawing::Point(492, 5);
1091
			this->ButRemoveFile->Margin = System::Windows::Forms::Padding(4);
-
 
1092
			this->ButRemoveFile->Name = L"ButRemoveFile";
1093
			this->ButRemoveFile->Name = L"ButRemoveFile";
1093
			this->ButRemoveFile->Size = System::Drawing::Size(173, 37);
1094
			this->ButRemoveFile->Size = System::Drawing::Size(130, 30);
1094
			this->ButRemoveFile->TabIndex = 2;
1095
			this->ButRemoveFile->TabIndex = 2;
1095
			this->ButRemoveFile->Text = L"Remove Selected";
1096
			this->ButRemoveFile->Text = L"Remove Selected";
1096
			this->ButRemoveFile->UseVisualStyleBackColor = true;
1097
			this->ButRemoveFile->UseVisualStyleBackColor = true;
1097
			this->ButRemoveFile->Click += gcnew System::EventHandler(this, &PackageForm::ButRemoveFile_Click);
1098
			this->ButRemoveFile->Click += gcnew System::EventHandler(this, &PackageForm::ButRemoveFile_Click);
1098
			// 
1099
			// 
1099
			// button2
1100
			// button2
1100
			// 
1101
			// 
1101
			this->button2->Dock = System::Windows::Forms::DockStyle::Right;
1102
			this->button2->Dock = System::Windows::Forms::DockStyle::Right;
1102
			this->button2->Location = System::Drawing::Point(828, 6);
1103
			this->button2->Location = System::Drawing::Point(622, 5);
1103
			this->button2->Margin = System::Windows::Forms::Padding(4);
-
 
1104
			this->button2->Name = L"button2";
1104
			this->button2->Name = L"button2";
1105
			this->button2->Size = System::Drawing::Size(164, 37);
1105
			this->button2->Size = System::Drawing::Size(123, 30);
1106
			this->button2->TabIndex = 1;
1106
			this->button2->TabIndex = 1;
1107
			this->button2->Text = L"Clear All";
1107
			this->button2->Text = L"Clear All";
1108
			this->button2->UseVisualStyleBackColor = true;
1108
			this->button2->UseVisualStyleBackColor = true;
1109
			this->button2->Click += gcnew System::EventHandler(this, &PackageForm::button2_Click);
1109
			this->button2->Click += gcnew System::EventHandler(this, &PackageForm::button2_Click);
1110
			// 
1110
			// 
1111
			// button1
1111
			// button1
1112
			// 
1112
			// 
1113
			this->button1->Dock = System::Windows::Forms::DockStyle::Left;
1113
			this->button1->Dock = System::Windows::Forms::DockStyle::Left;
1114
			this->button1->Location = System::Drawing::Point(7, 6);
1114
			this->button1->Location = System::Drawing::Point(5, 5);
1115
			this->button1->Margin = System::Windows::Forms::Padding(4);
-
 
1116
			this->button1->Name = L"button1";
1115
			this->button1->Name = L"button1";
1117
			this->button1->Size = System::Drawing::Size(151, 37);
1116
			this->button1->Size = System::Drawing::Size(113, 30);
1118
			this->button1->TabIndex = 0;
1117
			this->button1->TabIndex = 0;
1119
			this->button1->Text = L"Add File(s)";
1118
			this->button1->Text = L"Add File(s)";
1120
			this->button1->UseVisualStyleBackColor = true;
1119
			this->button1->UseVisualStyleBackColor = true;
1121
			this->button1->Click += gcnew System::EventHandler(this, &PackageForm::button1_Click);
1120
			this->button1->Click += gcnew System::EventHandler(this, &PackageForm::button1_Click);
1122
			// 
1121
			// 
Line 1124... Line 1123...
1124
			// 
1123
			// 
1125
			this->panel5->Controls->Add(this->ComboFileType);
1124
			this->panel5->Controls->Add(this->ComboFileType);
1126
			this->panel5->Controls->Add(this->ComboGameFilter);
1125
			this->panel5->Controls->Add(this->ComboGameFilter);
1127
			this->panel5->Controls->Add(this->label5);
1126
			this->panel5->Controls->Add(this->label5);
1128
			this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
1127
			this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
1129
			this->panel5->Location = System::Drawing::Point(4, 19);
1128
			this->panel5->Location = System::Drawing::Point(3, 16);
1130
			this->panel5->Margin = System::Windows::Forms::Padding(4);
-
 
1131
			this->panel5->Name = L"panel5";
1129
			this->panel5->Name = L"panel5";
1132
			this->panel5->Size = System::Drawing::Size(999, 31);
1130
			this->panel5->Size = System::Drawing::Size(750, 25);
1133
			this->panel5->TabIndex = 0;
1131
			this->panel5->TabIndex = 0;
1134
			// 
1132
			// 
1135
			// ComboFileType
1133
			// ComboFileType
1136
			// 
1134
			// 
1137
			this->ComboFileType->Dock = System::Windows::Forms::DockStyle::Fill;
1135
			this->ComboFileType->Dock = System::Windows::Forms::DockStyle::Fill;
1138
			this->ComboFileType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1136
			this->ComboFileType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1139
			this->ComboFileType->FormattingEnabled = true;
1137
			this->ComboFileType->FormattingEnabled = true;
1140
			this->ComboFileType->Location = System::Drawing::Point(133, 0);
1138
			this->ComboFileType->Location = System::Drawing::Point(100, 0);
1141
			this->ComboFileType->Margin = System::Windows::Forms::Padding(4);
-
 
1142
			this->ComboFileType->Name = L"ComboFileType";
1139
			this->ComboFileType->Name = L"ComboFileType";
1143
			this->ComboFileType->Size = System::Drawing::Size(593, 24);
1140
			this->ComboFileType->Size = System::Drawing::Size(444, 21);
1144
			this->ComboFileType->TabIndex = 1;
1141
			this->ComboFileType->TabIndex = 1;
1145
			this->ComboFileType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboFileType_SelectedIndexChanged);
1142
			this->ComboFileType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboFileType_SelectedIndexChanged);
1146
			// 
1143
			// 
1147
			// ComboGameFilter
1144
			// ComboGameFilter
1148
			// 
1145
			// 
1149
			this->ComboGameFilter->Dock = System::Windows::Forms::DockStyle::Right;
1146
			this->ComboGameFilter->Dock = System::Windows::Forms::DockStyle::Right;
1150
			this->ComboGameFilter->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1147
			this->ComboGameFilter->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1151
			this->ComboGameFilter->FormattingEnabled = true;
1148
			this->ComboGameFilter->FormattingEnabled = true;
1152
			this->ComboGameFilter->Location = System::Drawing::Point(726, 0);
1149
			this->ComboGameFilter->Location = System::Drawing::Point(544, 0);
1153
			this->ComboGameFilter->Margin = System::Windows::Forms::Padding(4);
-
 
1154
			this->ComboGameFilter->Name = L"ComboGameFilter";
1150
			this->ComboGameFilter->Name = L"ComboGameFilter";
1155
			this->ComboGameFilter->Size = System::Drawing::Size(273, 24);
1151
			this->ComboGameFilter->Size = System::Drawing::Size(206, 21);
1156
			this->ComboGameFilter->TabIndex = 2;
1152
			this->ComboGameFilter->TabIndex = 2;
1157
			this->ComboGameFilter->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboGameFilter_SelectedIndexChanged);
1153
			this->ComboGameFilter->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboGameFilter_SelectedIndexChanged);
1158
			// 
1154
			// 
1159
			// label5
1155
			// label5
1160
			// 
1156
			// 
1161
			this->label5->Dock = System::Windows::Forms::DockStyle::Left;
1157
			this->label5->Dock = System::Windows::Forms::DockStyle::Left;
1162
			this->label5->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1158
			this->label5->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1163
				static_cast<System::Byte>(0)));
1159
				static_cast<System::Byte>(0)));
1164
			this->label5->Location = System::Drawing::Point(0, 0);
1160
			this->label5->Location = System::Drawing::Point(0, 0);
1165
			this->label5->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1166
			this->label5->Name = L"label5";
1161
			this->label5->Name = L"label5";
1167
			this->label5->Size = System::Drawing::Size(133, 31);
1162
			this->label5->Size = System::Drawing::Size(100, 25);
1168
			this->label5->TabIndex = 0;
1163
			this->label5->TabIndex = 0;
1169
			this->label5->Text = L"Filters";
1164
			this->label5->Text = L"Filters";
1170
			this->label5->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
1165
			this->label5->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
1171
			// 
1166
			// 
1172
			// tabControl1
1167
			// tabControl1
Line 1180... Line 1175...
1180
			this->tabControl1->Controls->Add(this->PageWares);
1175
			this->tabControl1->Controls->Add(this->PageWares);
1181
			this->tabControl1->Controls->Add(this->PageShip);
1176
			this->tabControl1->Controls->Add(this->PageShip);
1182
			this->tabControl1->Controls->Add(this->PageRaw);
1177
			this->tabControl1->Controls->Add(this->PageRaw);
1183
			this->tabControl1->Controls->Add(this->PageShipComp);
1178
			this->tabControl1->Controls->Add(this->PageShipComp);
1184
			this->tabControl1->Dock = System::Windows::Forms::DockStyle::Top;
1179
			this->tabControl1->Dock = System::Windows::Forms::DockStyle::Top;
1185
			this->tabControl1->Location = System::Drawing::Point(7, 158);
1180
			this->tabControl1->Location = System::Drawing::Point(5, 133);
1186
			this->tabControl1->Margin = System::Windows::Forms::Padding(8, 7, 8, 7);
1181
			this->tabControl1->Margin = System::Windows::Forms::Padding(6, 6, 6, 6);
1187
			this->tabControl1->Multiline = true;
1182
			this->tabControl1->Multiline = true;
1188
			this->tabControl1->Name = L"tabControl1";
1183
			this->tabControl1->Name = L"tabControl1";
1189
			this->tabControl1->SelectedIndex = 0;
1184
			this->tabControl1->SelectedIndex = 0;
1190
			this->tabControl1->Size = System::Drawing::Size(1007, 298);
1185
			this->tabControl1->Size = System::Drawing::Size(756, 242);
1191
			this->tabControl1->TabIndex = 1;
1186
			this->tabControl1->TabIndex = 1;
1192
			// 
1187
			// 
1193
			// tabPage1
1188
			// tabPage1
1194
			// 
1189
			// 
1195
			this->tabPage1->Controls->Add(this->groupBox2);
1190
			this->tabPage1->Controls->Add(this->groupBox2);
1196
			this->tabPage1->Controls->Add(this->panel13);
1191
			this->tabPage1->Controls->Add(this->panel13);
1197
			this->tabPage1->Controls->Add(this->panel12);
1192
			this->tabPage1->Controls->Add(this->panel12);
1198
			this->tabPage1->Controls->Add(this->panel11);
1193
			this->tabPage1->Controls->Add(this->panel11);
1199
			this->tabPage1->Controls->Add(this->LabelShipWarning);
1194
			this->tabPage1->Controls->Add(this->LabelShipWarning);
1200
			this->tabPage1->Location = System::Drawing::Point(4, 25);
1195
			this->tabPage1->Location = System::Drawing::Point(4, 22);
1201
			this->tabPage1->Margin = System::Windows::Forms::Padding(4);
-
 
1202
			this->tabPage1->Name = L"tabPage1";
1196
			this->tabPage1->Name = L"tabPage1";
1203
			this->tabPage1->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
1197
			this->tabPage1->Padding = System::Windows::Forms::Padding(8, 8, 8, 8);
1204
			this->tabPage1->Size = System::Drawing::Size(999, 269);
1198
			this->tabPage1->Size = System::Drawing::Size(748, 216);
1205
			this->tabPage1->TabIndex = 0;
1199
			this->tabPage1->TabIndex = 0;
1206
			this->tabPage1->Text = L"Basic Settings";
1200
			this->tabPage1->Text = L"Basic Settings";
1207
			this->tabPage1->UseVisualStyleBackColor = true;
1201
			this->tabPage1->UseVisualStyleBackColor = true;
1208
			// 
1202
			// 
1209
			// groupBox2
1203
			// groupBox2
1210
			// 
1204
			// 
1211
			this->groupBox2->Controls->Add(this->TextDesc);
1205
			this->groupBox2->Controls->Add(this->TextDesc);
1212
			this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
1206
			this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
1213
			this->groupBox2->Location = System::Drawing::Point(11, 109);
1207
			this->groupBox2->Location = System::Drawing::Point(8, 89);
1214
			this->groupBox2->Margin = System::Windows::Forms::Padding(4);
-
 
1215
			this->groupBox2->Name = L"groupBox2";
1208
			this->groupBox2->Name = L"groupBox2";
1216
			this->groupBox2->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1209
			this->groupBox2->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
1217
			this->groupBox2->Size = System::Drawing::Size(977, 150);
1210
			this->groupBox2->Size = System::Drawing::Size(732, 119);
1218
			this->groupBox2->TabIndex = 1;
1211
			this->groupBox2->TabIndex = 1;
1219
			this->groupBox2->TabStop = false;
1212
			this->groupBox2->TabStop = false;
1220
			this->groupBox2->Text = L"Description";
1213
			this->groupBox2->Text = L"Description";
1221
			// 
1214
			// 
1222
			// TextDesc
1215
			// TextDesc
1223
			// 
1216
			// 
1224
			this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
1217
			this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
1225
			this->TextDesc->Location = System::Drawing::Point(7, 21);
1218
			this->TextDesc->Location = System::Drawing::Point(5, 18);
1226
			this->TextDesc->Margin = System::Windows::Forms::Padding(4);
-
 
1227
			this->TextDesc->Name = L"TextDesc";
1219
			this->TextDesc->Name = L"TextDesc";
1228
			this->TextDesc->Size = System::Drawing::Size(963, 123);
1220
			this->TextDesc->Size = System::Drawing::Size(722, 96);
1229
			this->TextDesc->TabIndex = 0;
1221
			this->TextDesc->TabIndex = 0;
1230
			this->TextDesc->Text = L"";
1222
			this->TextDesc->Text = L"";
1231
			this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
1223
			this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
1232
			// 
1224
			// 
1233
			// panel13
1225
			// panel13
1234
			// 
1226
			// 
1235
			this->panel13->Controls->Add(this->TextForum);
1227
			this->panel13->Controls->Add(this->TextForum);
1236
			this->panel13->Controls->Add(this->label11);
1228
			this->panel13->Controls->Add(this->label11);
1237
			this->panel13->Dock = System::Windows::Forms::DockStyle::Top;
1229
			this->panel13->Dock = System::Windows::Forms::DockStyle::Top;
1238
			this->panel13->Location = System::Drawing::Point(11, 82);
1230
			this->panel13->Location = System::Drawing::Point(8, 67);
1239
			this->panel13->Margin = System::Windows::Forms::Padding(4);
-
 
1240
			this->panel13->Name = L"panel13";
1231
			this->panel13->Name = L"panel13";
1241
			this->panel13->Size = System::Drawing::Size(977, 27);
1232
			this->panel13->Size = System::Drawing::Size(732, 22);
1242
			this->panel13->TabIndex = 46;
1233
			this->panel13->TabIndex = 46;
1243
			// 
1234
			// 
1244
			// TextForum
1235
			// TextForum
1245
			// 
1236
			// 
1246
			this->TextForum->DetectUrls = false;
1237
			this->TextForum->DetectUrls = false;
1247
			this->TextForum->Dock = System::Windows::Forms::DockStyle::Fill;
1238
			this->TextForum->Dock = System::Windows::Forms::DockStyle::Fill;
1248
			this->TextForum->Location = System::Drawing::Point(167, 0);
1239
			this->TextForum->Location = System::Drawing::Point(125, 0);
1249
			this->TextForum->Margin = System::Windows::Forms::Padding(4);
-
 
1250
			this->TextForum->Name = L"TextForum";
1240
			this->TextForum->Name = L"TextForum";
1251
			this->TextForum->Size = System::Drawing::Size(810, 27);
1241
			this->TextForum->Size = System::Drawing::Size(607, 22);
1252
			this->TextForum->TabIndex = 43;
1242
			this->TextForum->TabIndex = 43;
1253
			this->TextForum->Text = L"";
1243
			this->TextForum->Text = L"";
1254
			this->TextForum->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextForum_TextChanged);
1244
			this->TextForum->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextForum_TextChanged);
1255
			// 
1245
			// 
1256
			// label11
1246
			// label11
1257
			// 
1247
			// 
1258
			this->label11->Dock = System::Windows::Forms::DockStyle::Left;
1248
			this->label11->Dock = System::Windows::Forms::DockStyle::Left;
1259
			this->label11->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1249
			this->label11->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1260
				static_cast<System::Byte>(0)));
1250
				static_cast<System::Byte>(0)));
1261
			this->label11->Location = System::Drawing::Point(0, 0);
1251
			this->label11->Location = System::Drawing::Point(0, 0);
1262
			this->label11->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1263
			this->label11->Name = L"label11";
1252
			this->label11->Name = L"label11";
1264
			this->label11->Size = System::Drawing::Size(167, 27);
1253
			this->label11->Size = System::Drawing::Size(125, 22);
1265
			this->label11->TabIndex = 42;
1254
			this->label11->TabIndex = 42;
1266
			this->label11->Text = L"Forum Link";
1255
			this->label11->Text = L"Forum Link";
1267
			// 
1256
			// 
1268
			// panel12
1257
			// panel12
1269
			// 
1258
			// 
1270
			this->panel12->Controls->Add(this->TextEmail);
1259
			this->panel12->Controls->Add(this->TextEmail);
1271
			this->panel12->Controls->Add(this->label10);
1260
			this->panel12->Controls->Add(this->label10);
1272
			this->panel12->Dock = System::Windows::Forms::DockStyle::Top;
1261
			this->panel12->Dock = System::Windows::Forms::DockStyle::Top;
1273
			this->panel12->Location = System::Drawing::Point(11, 55);
1262
			this->panel12->Location = System::Drawing::Point(8, 45);
1274
			this->panel12->Margin = System::Windows::Forms::Padding(4);
-
 
1275
			this->panel12->Name = L"panel12";
1263
			this->panel12->Name = L"panel12";
1276
			this->panel12->Size = System::Drawing::Size(977, 27);
1264
			this->panel12->Size = System::Drawing::Size(732, 22);
1277
			this->panel12->TabIndex = 45;
1265
			this->panel12->TabIndex = 45;
1278
			// 
1266
			// 
1279
			// TextEmail
1267
			// TextEmail
1280
			// 
1268
			// 
1281
			this->TextEmail->DetectUrls = false;
1269
			this->TextEmail->DetectUrls = false;
1282
			this->TextEmail->Dock = System::Windows::Forms::DockStyle::Fill;
1270
			this->TextEmail->Dock = System::Windows::Forms::DockStyle::Fill;
1283
			this->TextEmail->Location = System::Drawing::Point(167, 0);
1271
			this->TextEmail->Location = System::Drawing::Point(125, 0);
1284
			this->TextEmail->Margin = System::Windows::Forms::Padding(4);
-
 
1285
			this->TextEmail->Name = L"TextEmail";
1272
			this->TextEmail->Name = L"TextEmail";
1286
			this->TextEmail->Size = System::Drawing::Size(810, 27);
1273
			this->TextEmail->Size = System::Drawing::Size(607, 22);
1287
			this->TextEmail->TabIndex = 43;
1274
			this->TextEmail->TabIndex = 43;
1288
			this->TextEmail->Text = L"";
1275
			this->TextEmail->Text = L"";
1289
			this->TextEmail->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextEmail_TextChanged);
1276
			this->TextEmail->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextEmail_TextChanged);
1290
			// 
1277
			// 
1291
			// label10
1278
			// label10
1292
			// 
1279
			// 
1293
			this->label10->Dock = System::Windows::Forms::DockStyle::Left;
1280
			this->label10->Dock = System::Windows::Forms::DockStyle::Left;
1294
			this->label10->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1281
			this->label10->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1295
				static_cast<System::Byte>(0)));
1282
				static_cast<System::Byte>(0)));
1296
			this->label10->Location = System::Drawing::Point(0, 0);
1283
			this->label10->Location = System::Drawing::Point(0, 0);
1297
			this->label10->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1298
			this->label10->Name = L"label10";
1284
			this->label10->Name = L"label10";
1299
			this->label10->Size = System::Drawing::Size(167, 27);
1285
			this->label10->Size = System::Drawing::Size(125, 22);
1300
			this->label10->TabIndex = 42;
1286
			this->label10->TabIndex = 42;
1301
			this->label10->Text = L"Email Address";
1287
			this->label10->Text = L"Email Address";
1302
			// 
1288
			// 
1303
			// panel11
1289
			// panel11
1304
			// 
1290
			// 
1305
			this->panel11->Controls->Add(this->TextWebsite);
1291
			this->panel11->Controls->Add(this->TextWebsite);
1306
			this->panel11->Controls->Add(this->label9);
1292
			this->panel11->Controls->Add(this->label9);
1307
			this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
1293
			this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
1308
			this->panel11->Location = System::Drawing::Point(11, 32);
1294
			this->panel11->Location = System::Drawing::Point(8, 26);
1309
			this->panel11->Margin = System::Windows::Forms::Padding(4);
-
 
1310
			this->panel11->Name = L"panel11";
1295
			this->panel11->Name = L"panel11";
1311
			this->panel11->Size = System::Drawing::Size(977, 23);
1296
			this->panel11->Size = System::Drawing::Size(732, 19);
1312
			this->panel11->TabIndex = 44;
1297
			this->panel11->TabIndex = 44;
1313
			// 
1298
			// 
1314
			// TextWebsite
1299
			// TextWebsite
1315
			// 
1300
			// 
1316
			this->TextWebsite->DetectUrls = false;
1301
			this->TextWebsite->DetectUrls = false;
1317
			this->TextWebsite->Dock = System::Windows::Forms::DockStyle::Fill;
1302
			this->TextWebsite->Dock = System::Windows::Forms::DockStyle::Fill;
1318
			this->TextWebsite->Location = System::Drawing::Point(167, 0);
1303
			this->TextWebsite->Location = System::Drawing::Point(125, 0);
1319
			this->TextWebsite->Margin = System::Windows::Forms::Padding(4);
-
 
1320
			this->TextWebsite->Name = L"TextWebsite";
1304
			this->TextWebsite->Name = L"TextWebsite";
1321
			this->TextWebsite->Size = System::Drawing::Size(810, 23);
1305
			this->TextWebsite->Size = System::Drawing::Size(607, 19);
1322
			this->TextWebsite->TabIndex = 41;
1306
			this->TextWebsite->TabIndex = 41;
1323
			this->TextWebsite->Text = L"";
1307
			this->TextWebsite->Text = L"";
1324
			this->TextWebsite->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebsite_TextChanged);
1308
			this->TextWebsite->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebsite_TextChanged);
1325
			// 
1309
			// 
1326
			// label9
1310
			// label9
1327
			// 
1311
			// 
1328
			this->label9->Dock = System::Windows::Forms::DockStyle::Left;
1312
			this->label9->Dock = System::Windows::Forms::DockStyle::Left;
1329
			this->label9->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1313
			this->label9->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1330
				static_cast<System::Byte>(0)));
1314
				static_cast<System::Byte>(0)));
1331
			this->label9->Location = System::Drawing::Point(0, 0);
1315
			this->label9->Location = System::Drawing::Point(0, 0);
1332
			this->label9->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1333
			this->label9->Name = L"label9";
1316
			this->label9->Name = L"label9";
1334
			this->label9->Size = System::Drawing::Size(167, 23);
1317
			this->label9->Size = System::Drawing::Size(125, 19);
1335
			this->label9->TabIndex = 40;
1318
			this->label9->TabIndex = 40;
1336
			this->label9->Text = L"Web Site";
1319
			this->label9->Text = L"Web Site";
1337
			// 
1320
			// 
1338
			// LabelShipWarning
1321
			// LabelShipWarning
1339
			// 
1322
			// 
1340
			this->LabelShipWarning->Dock = System::Windows::Forms::DockStyle::Top;
1323
			this->LabelShipWarning->Dock = System::Windows::Forms::DockStyle::Top;
1341
			this->LabelShipWarning->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
1324
			this->LabelShipWarning->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point,
1342
				static_cast<System::Byte>(0)));
1325
				static_cast<System::Byte>(0)));
1343
			this->LabelShipWarning->ForeColor = System::Drawing::Color::Red;
1326
			this->LabelShipWarning->ForeColor = System::Drawing::Color::Red;
1344
			this->LabelShipWarning->Location = System::Drawing::Point(11, 10);
1327
			this->LabelShipWarning->Location = System::Drawing::Point(8, 8);
1345
			this->LabelShipWarning->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1346
			this->LabelShipWarning->Name = L"LabelShipWarning";
1328
			this->LabelShipWarning->Name = L"LabelShipWarning";
1347
			this->LabelShipWarning->Size = System::Drawing::Size(977, 22);
1329
			this->LabelShipWarning->Size = System::Drawing::Size(732, 18);
1348
			this->LabelShipWarning->TabIndex = 47;
1330
			this->LabelShipWarning->TabIndex = 47;
1349
			this->LabelShipWarning->Text = L"NOTE: Ship files are not valid for X2, and only work in later games";
1331
			this->LabelShipWarning->Text = L"NOTE: Ship files are not valid for X2, and only work in later games";
1350
			this->LabelShipWarning->TextAlign = System::Drawing::ContentAlignment::MiddleCenter;
1332
			this->LabelShipWarning->TextAlign = System::Drawing::ContentAlignment::MiddleCenter;
1351
			// 
1333
			// 
1352
			// tabPage5
1334
			// tabPage5
1353
			// 
1335
			// 
1354
			this->tabPage5->Controls->Add(this->ListGames);
1336
			this->tabPage5->Controls->Add(this->ListGames);
1355
			this->tabPage5->Controls->Add(this->groupBox8);
1337
			this->tabPage5->Controls->Add(this->groupBox8);
1356
			this->tabPage5->Location = System::Drawing::Point(4, 25);
1338
			this->tabPage5->Location = System::Drawing::Point(4, 22);
1357
			this->tabPage5->Margin = System::Windows::Forms::Padding(4);
-
 
1358
			this->tabPage5->Name = L"tabPage5";
1339
			this->tabPage5->Name = L"tabPage5";
1359
			this->tabPage5->Padding = System::Windows::Forms::Padding(4);
1340
			this->tabPage5->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
1360
			this->tabPage5->Size = System::Drawing::Size(999, 269);
1341
			this->tabPage5->Size = System::Drawing::Size(747, 216);
1361
			this->tabPage5->TabIndex = 10;
1342
			this->tabPage5->TabIndex = 10;
1362
			this->tabPage5->Text = L"Game Compatability";
1343
			this->tabPage5->Text = L"Game Compatability";
1363
			this->tabPage5->UseVisualStyleBackColor = true;
1344
			this->tabPage5->UseVisualStyleBackColor = true;
1364
			// 
1345
			// 
1365
			// ListGames
1346
			// ListGames
1366
			// 
1347
			// 
1367
			this->ListGames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader26, this->columnHeader27 });
1348
			this->ListGames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader26, this->columnHeader27 });
1368
			this->ListGames->Dock = System::Windows::Forms::DockStyle::Fill;
1349
			this->ListGames->Dock = System::Windows::Forms::DockStyle::Fill;
1369
			this->ListGames->FullRowSelect = true;
1350
			this->ListGames->FullRowSelect = true;
1370
			this->ListGames->HideSelection = false;
1351
			this->ListGames->HideSelection = false;
1371
			this->ListGames->Location = System::Drawing::Point(4, 4);
1352
			this->ListGames->Location = System::Drawing::Point(3, 3);
1372
			this->ListGames->Margin = System::Windows::Forms::Padding(4);
-
 
1373
			this->ListGames->MultiSelect = false;
1353
			this->ListGames->MultiSelect = false;
1374
			this->ListGames->Name = L"ListGames";
1354
			this->ListGames->Name = L"ListGames";
1375
			this->ListGames->Size = System::Drawing::Size(991, 175);
1355
			this->ListGames->Size = System::Drawing::Size(741, 140);
1376
			this->ListGames->TabIndex = 2;
1356
			this->ListGames->TabIndex = 2;
1377
			this->ListGames->UseCompatibleStateImageBehavior = false;
1357
			this->ListGames->UseCompatibleStateImageBehavior = false;
1378
			this->ListGames->View = System::Windows::Forms::View::Details;
1358
			this->ListGames->View = System::Windows::Forms::View::Details;
1379
			this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
1359
			this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
1380
			this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
1360
			this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
Line 1389... Line 1369...
1389
			// 
1369
			// 
1390
			// groupBox8
1370
			// groupBox8
1391
			// 
1371
			// 
1392
			this->groupBox8->Controls->Add(this->panel10);
1372
			this->groupBox8->Controls->Add(this->panel10);
1393
			this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
1373
			this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
1394
			this->groupBox8->Location = System::Drawing::Point(4, 179);
1374
			this->groupBox8->Location = System::Drawing::Point(3, 143);
1395
			this->groupBox8->Margin = System::Windows::Forms::Padding(4);
-
 
1396
			this->groupBox8->Name = L"groupBox8";
1375
			this->groupBox8->Name = L"groupBox8";
1397
			this->groupBox8->Padding = System::Windows::Forms::Padding(4);
-
 
1398
			this->groupBox8->Size = System::Drawing::Size(991, 86);
1376
			this->groupBox8->Size = System::Drawing::Size(741, 70);
1399
			this->groupBox8->TabIndex = 1;
1377
			this->groupBox8->TabIndex = 1;
1400
			this->groupBox8->TabStop = false;
1378
			this->groupBox8->TabStop = false;
1401
			this->groupBox8->Text = L"Add/Edit Game";
1379
			this->groupBox8->Text = L"Add/Edit Game";
1402
			// 
1380
			// 
1403
			// panel10
1381
			// panel10
1404
			// 
1382
			// 
1405
			this->panel10->Controls->Add(this->panel21);
1383
			this->panel10->Controls->Add(this->panel21);
1406
			this->panel10->Controls->Add(this->ButGame);
1384
			this->panel10->Controls->Add(this->ButGame);
1407
			this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
1385
			this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
1408
			this->panel10->Location = System::Drawing::Point(4, 19);
1386
			this->panel10->Location = System::Drawing::Point(3, 16);
1409
			this->panel10->Margin = System::Windows::Forms::Padding(4);
-
 
1410
			this->panel10->Name = L"panel10";
1387
			this->panel10->Name = L"panel10";
1411
			this->panel10->Size = System::Drawing::Size(983, 53);
1388
			this->panel10->Size = System::Drawing::Size(735, 43);
1412
			this->panel10->TabIndex = 44;
1389
			this->panel10->TabIndex = 44;
1413
			// 
1390
			// 
1414
			// panel21
1391
			// panel21
1415
			// 
1392
			// 
1416
			this->panel21->Controls->Add(this->ComboVersion);
1393
			this->panel21->Controls->Add(this->ComboVersion);
1417
			this->panel21->Controls->Add(this->TextExactVersion);
1394
			this->panel21->Controls->Add(this->TextExactVersion);
1418
			this->panel21->Controls->Add(this->ButGameAdd);
1395
			this->panel21->Controls->Add(this->ButGameAdd);
1419
			this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
1396
			this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
1420
			this->panel21->Location = System::Drawing::Point(291, 0);
1397
			this->panel21->Location = System::Drawing::Point(218, 0);
1421
			this->panel21->Margin = System::Windows::Forms::Padding(4);
-
 
1422
			this->panel21->Name = L"panel21";
1398
			this->panel21->Name = L"panel21";
1423
			this->panel21->Size = System::Drawing::Size(692, 53);
1399
			this->panel21->Size = System::Drawing::Size(517, 43);
1424
			this->panel21->TabIndex = 44;
1400
			this->panel21->TabIndex = 44;
1425
			// 
1401
			// 
1426
			// ComboVersion
1402
			// ComboVersion
1427
			// 
1403
			// 
1428
			this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
1404
			this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
1429
			this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1405
			this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1430
			this->ComboVersion->Enabled = false;
1406
			this->ComboVersion->Enabled = false;
1431
			this->ComboVersion->FormattingEnabled = true;
1407
			this->ComboVersion->FormattingEnabled = true;
1432
			this->ComboVersion->Location = System::Drawing::Point(0, 0);
1408
			this->ComboVersion->Location = System::Drawing::Point(0, 0);
1433
			this->ComboVersion->Margin = System::Windows::Forms::Padding(4);
-
 
1434
			this->ComboVersion->Name = L"ComboVersion";
1409
			this->ComboVersion->Name = L"ComboVersion";
1435
			this->ComboVersion->Size = System::Drawing::Size(621, 24);
1410
			this->ComboVersion->Size = System::Drawing::Size(464, 21);
1436
			this->ComboVersion->TabIndex = 41;
1411
			this->ComboVersion->TabIndex = 41;
1437
			this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
1412
			this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
1438
			// 
1413
			// 
1439
			// TextExactVersion
1414
			// TextExactVersion
1440
			// 
1415
			// 
1441
			this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
1416
			this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
1442
			this->TextExactVersion->Location = System::Drawing::Point(0, 31);
1417
			this->TextExactVersion->Location = System::Drawing::Point(0, 23);
1443
			this->TextExactVersion->Margin = System::Windows::Forms::Padding(4);
-
 
1444
			this->TextExactVersion->Name = L"TextExactVersion";
1418
			this->TextExactVersion->Name = L"TextExactVersion";
1445
			this->TextExactVersion->Size = System::Drawing::Size(621, 22);
1419
			this->TextExactVersion->Size = System::Drawing::Size(464, 20);
1446
			this->TextExactVersion->TabIndex = 42;
1420
			this->TextExactVersion->TabIndex = 42;
1447
			// 
1421
			// 
1448
			// ButGameAdd
1422
			// ButGameAdd
1449
			// 
1423
			// 
1450
			this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
1424
			this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
1451
			this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
1425
			this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
1452
			this->ButGameAdd->Location = System::Drawing::Point(621, 0);
1426
			this->ButGameAdd->Location = System::Drawing::Point(464, 0);
1453
			this->ButGameAdd->Margin = System::Windows::Forms::Padding(4);
-
 
1454
			this->ButGameAdd->Name = L"ButGameAdd";
1427
			this->ButGameAdd->Name = L"ButGameAdd";
1455
			this->ButGameAdd->Size = System::Drawing::Size(71, 53);
1428
			this->ButGameAdd->Size = System::Drawing::Size(53, 43);
1456
			this->ButGameAdd->TabIndex = 43;
1429
			this->ButGameAdd->TabIndex = 43;
1457
			this->ButGameAdd->Text = L"Save!";
1430
			this->ButGameAdd->Text = L"Save!";
1458
			this->ButGameAdd->UseVisualStyleBackColor = true;
1431
			this->ButGameAdd->UseVisualStyleBackColor = true;
1459
			this->ButGameAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButGameAdd_Click);
1432
			this->ButGameAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButGameAdd_Click);
1460
			// 
1433
			// 
Line 1462... Line 1435...
1462
			// 
1435
			// 
1463
			this->ButGame->ContextMenuStrip = this->ContextGames;
1436
			this->ButGame->ContextMenuStrip = this->ContextGames;
1464
			this->ButGame->Dock = System::Windows::Forms::DockStyle::Left;
1437
			this->ButGame->Dock = System::Windows::Forms::DockStyle::Left;
1465
			this->ButGame->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
1438
			this->ButGame->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
1466
			this->ButGame->Location = System::Drawing::Point(0, 0);
1439
			this->ButGame->Location = System::Drawing::Point(0, 0);
1467
			this->ButGame->Margin = System::Windows::Forms::Padding(4);
-
 
1468
			this->ButGame->Name = L"ButGame";
1440
			this->ButGame->Name = L"ButGame";
1469
			this->ButGame->Size = System::Drawing::Size(291, 53);
1441
			this->ButGame->Size = System::Drawing::Size(218, 43);
1470
			this->ButGame->TabIndex = 43;
1442
			this->ButGame->TabIndex = 43;
1471
			this->ButGame->UseVisualStyleBackColor = true;
1443
			this->ButGame->UseVisualStyleBackColor = true;
1472
			this->ButGame->Click += gcnew System::EventHandler(this, &PackageForm::ButGame_Click);
1444
			this->ButGame->Click += gcnew System::EventHandler(this, &PackageForm::ButGame_Click);
1473
			// 
1445
			// 
1474
			// ContextGames
1446
			// ContextGames
1475
			// 
1447
			// 
1476
			this->ContextGames->ImageScalingSize = System::Drawing::Size(32, 32);
1448
			this->ContextGames->ImageScalingSize = System::Drawing::Size(32, 32);
1477
			this->ContextGames->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(1) { this->testToolStripMenuItem });
1449
			this->ContextGames->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(1) { this->testToolStripMenuItem });
1478
			this->ContextGames->Name = L"ContextGames";
1450
			this->ContextGames->Name = L"ContextGames";
1479
			this->ContextGames->Size = System::Drawing::Size(105, 28);
1451
			this->ContextGames->Size = System::Drawing::Size(95, 26);
1480
			// 
1452
			// 
1481
			// testToolStripMenuItem
1453
			// testToolStripMenuItem
1482
			// 
1454
			// 
1483
			this->testToolStripMenuItem->Name = L"testToolStripMenuItem";
1455
			this->testToolStripMenuItem->Name = L"testToolStripMenuItem";
1484
			this->testToolStripMenuItem->Size = System::Drawing::Size(104, 24);
1456
			this->testToolStripMenuItem->Size = System::Drawing::Size(94, 22);
1485
			this->testToolStripMenuItem->Text = L"Test";
1457
			this->testToolStripMenuItem->Text = L"Test";
1486
			// 
1458
			// 
1487
			// PagePackage
1459
			// PagePackage
1488
			// 
1460
			// 
1489
			this->PagePackage->Controls->Add(this->groupBox3);
1461
			this->PagePackage->Controls->Add(this->groupBox3);
1490
			this->PagePackage->Controls->Add(this->panel22);
1462
			this->PagePackage->Controls->Add(this->panel22);
1491
			this->PagePackage->Controls->Add(this->panel7);
1463
			this->PagePackage->Controls->Add(this->panel7);
1492
			this->PagePackage->Location = System::Drawing::Point(4, 25);
1464
			this->PagePackage->Location = System::Drawing::Point(4, 22);
1493
			this->PagePackage->Margin = System::Windows::Forms::Padding(4);
-
 
1494
			this->PagePackage->Name = L"PagePackage";
1465
			this->PagePackage->Name = L"PagePackage";
1495
			this->PagePackage->Padding = System::Windows::Forms::Padding(4);
1466
			this->PagePackage->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
1496
			this->PagePackage->Size = System::Drawing::Size(999, 269);
1467
			this->PagePackage->Size = System::Drawing::Size(747, 216);
1497
			this->PagePackage->TabIndex = 2;
1468
			this->PagePackage->TabIndex = 2;
1498
			this->PagePackage->Text = L"Package Settings";
1469
			this->PagePackage->Text = L"Package Settings";
1499
			this->PagePackage->UseVisualStyleBackColor = true;
1470
			this->PagePackage->UseVisualStyleBackColor = true;
1500
			// 
1471
			// 
1501
			// groupBox3
1472
			// groupBox3
Line 1505... Line 1476...
1505
			this->groupBox3->Controls->Add(this->label12);
1476
			this->groupBox3->Controls->Add(this->label12);
1506
			this->groupBox3->Controls->Add(this->CheckOther);
1477
			this->groupBox3->Controls->Add(this->CheckOther);
1507
			this->groupBox3->Controls->Add(this->TextOtherAuthor);
1478
			this->groupBox3->Controls->Add(this->TextOtherAuthor);
1508
			this->groupBox3->Controls->Add(this->ButFromFile);
1479
			this->groupBox3->Controls->Add(this->ButFromFile);
1509
			this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
1480
			this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
1510
			this->groupBox3->Location = System::Drawing::Point(4, 117);
1481
			this->groupBox3->Location = System::Drawing::Point(3, 95);
1511
			this->groupBox3->Margin = System::Windows::Forms::Padding(13, 12, 13, 12);
1482
			this->groupBox3->Margin = System::Windows::Forms::Padding(10, 10, 10, 10);
1512
			this->groupBox3->Name = L"groupBox3";
1483
			this->groupBox3->Name = L"groupBox3";
1513
			this->groupBox3->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
1484
			this->groupBox3->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
1514
			this->groupBox3->Size = System::Drawing::Size(991, 65);
1485
			this->groupBox3->Size = System::Drawing::Size(741, 53);
1515
			this->groupBox3->TabIndex = 1;
1486
			this->groupBox3->TabIndex = 1;
1516
			this->groupBox3->TabStop = false;
1487
			this->groupBox3->TabStop = false;
1517
			this->groupBox3->Text = L"Requires Parent Mod/Package";
1488
			this->groupBox3->Text = L"Requires Parent Mod/Package";
1518
			// 
1489
			// 
1519
			// TextOtherName
1490
			// TextOtherName
1520
			// 
1491
			// 
1521
			this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
1492
			this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
1522
			this->TextOtherName->Location = System::Drawing::Point(140, 27);
1493
			this->TextOtherName->Location = System::Drawing::Point(107, 23);
1523
			this->TextOtherName->Margin = System::Windows::Forms::Padding(4);
-
 
1524
			this->TextOtherName->Name = L"TextOtherName";
1494
			this->TextOtherName->Name = L"TextOtherName";
1525
			this->TextOtherName->Size = System::Drawing::Size(451, 22);
1495
			this->TextOtherName->Size = System::Drawing::Size(333, 20);
1526
			this->TextOtherName->TabIndex = 1;
1496
			this->TextOtherName->TabIndex = 1;
1527
			this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1497
			this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1528
			// 
1498
			// 
1529
			// label13
1499
			// label13
1530
			// 
1500
			// 
1531
			this->label13->Dock = System::Windows::Forms::DockStyle::Right;
1501
			this->label13->Dock = System::Windows::Forms::DockStyle::Right;
1532
			this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1502
			this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1533
				static_cast<System::Byte>(0)));
1503
				static_cast<System::Byte>(0)));
1534
			this->label13->Location = System::Drawing::Point(591, 27);
1504
			this->label13->Location = System::Drawing::Point(440, 23);
1535
			this->label13->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1536
			this->label13->Name = L"label13";
1505
			this->label13->Name = L"label13";
1537
			this->label13->Size = System::Drawing::Size(103, 26);
1506
			this->label13->Size = System::Drawing::Size(77, 20);
1538
			this->label13->TabIndex = 3;
1507
			this->label13->TabIndex = 3;
1539
			this->label13->Text = L"Author";
1508
			this->label13->Text = L"Author";
1540
			this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
1509
			this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
1541
			// 
1510
			// 
1542
			// label12
1511
			// label12
1543
			// 
1512
			// 
1544
			this->label12->Dock = System::Windows::Forms::DockStyle::Left;
1513
			this->label12->Dock = System::Windows::Forms::DockStyle::Left;
1545
			this->label12->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1514
			this->label12->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1546
				static_cast<System::Byte>(0)));
1515
				static_cast<System::Byte>(0)));
1547
			this->label12->ImageAlign = System::Drawing::ContentAlignment::MiddleRight;
1516
			this->label12->ImageAlign = System::Drawing::ContentAlignment::MiddleRight;
1548
			this->label12->Location = System::Drawing::Point(31, 27);
1517
			this->label12->Location = System::Drawing::Point(25, 23);
1549
			this->label12->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1550
			this->label12->Name = L"label12";
1518
			this->label12->Name = L"label12";
1551
			this->label12->RightToLeft = System::Windows::Forms::RightToLeft::No;
1519
			this->label12->RightToLeft = System::Windows::Forms::RightToLeft::No;
1552
			this->label12->Size = System::Drawing::Size(109, 26);
1520
			this->label12->Size = System::Drawing::Size(82, 20);
1553
			this->label12->TabIndex = 2;
1521
			this->label12->TabIndex = 2;
1554
			this->label12->Text = L"Package";
1522
			this->label12->Text = L"Package";
1555
			this->label12->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
1523
			this->label12->TextAlign = System::Drawing::ContentAlignment::MiddleRight;
1556
			// 
1524
			// 
1557
			// CheckOther
1525
			// CheckOther
1558
			// 
1526
			// 
1559
			this->CheckOther->AutoSize = true;
1527
			this->CheckOther->AutoSize = true;
1560
			this->CheckOther->Dock = System::Windows::Forms::DockStyle::Left;
1528
			this->CheckOther->Dock = System::Windows::Forms::DockStyle::Left;
1561
			this->CheckOther->Location = System::Drawing::Point(13, 27);
1529
			this->CheckOther->Location = System::Drawing::Point(10, 23);
1562
			this->CheckOther->Margin = System::Windows::Forms::Padding(4);
-
 
1563
			this->CheckOther->Name = L"CheckOther";
1530
			this->CheckOther->Name = L"CheckOther";
1564
			this->CheckOther->Size = System::Drawing::Size(18, 26);
1531
			this->CheckOther->Size = System::Drawing::Size(15, 20);
1565
			this->CheckOther->TabIndex = 0;
1532
			this->CheckOther->TabIndex = 0;
1566
			this->CheckOther->UseVisualStyleBackColor = true;
1533
			this->CheckOther->UseVisualStyleBackColor = true;
1567
			this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
1534
			this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
1568
			// 
1535
			// 
1569
			// TextOtherAuthor
1536
			// TextOtherAuthor
1570
			// 
1537
			// 
1571
			this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
1538
			this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
1572
			this->TextOtherAuthor->Location = System::Drawing::Point(694, 27);
1539
			this->TextOtherAuthor->Location = System::Drawing::Point(517, 23);
1573
			this->TextOtherAuthor->Margin = System::Windows::Forms::Padding(4);
-
 
1574
			this->TextOtherAuthor->Name = L"TextOtherAuthor";
1540
			this->TextOtherAuthor->Name = L"TextOtherAuthor";
1575
			this->TextOtherAuthor->Size = System::Drawing::Size(184, 22);
1541
			this->TextOtherAuthor->Size = System::Drawing::Size(139, 20);
1576
			this->TextOtherAuthor->TabIndex = 4;
1542
			this->TextOtherAuthor->TabIndex = 4;
1577
			this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1543
			this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1578
			// 
1544
			// 
1579
			// ButFromFile
1545
			// ButFromFile
1580
			// 
1546
			// 
1581
			this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
1547
			this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
1582
			this->ButFromFile->Location = System::Drawing::Point(878, 27);
1548
			this->ButFromFile->Location = System::Drawing::Point(656, 23);
1583
			this->ButFromFile->Margin = System::Windows::Forms::Padding(4);
-
 
1584
			this->ButFromFile->Name = L"ButFromFile";
1549
			this->ButFromFile->Name = L"ButFromFile";
1585
			this->ButFromFile->Size = System::Drawing::Size(100, 26);
1550
			this->ButFromFile->Size = System::Drawing::Size(75, 20);
1586
			this->ButFromFile->TabIndex = 5;
1551
			this->ButFromFile->TabIndex = 5;
1587
			this->ButFromFile->Text = L"From File";
1552
			this->ButFromFile->Text = L"From File";
1588
			this->ButFromFile->UseVisualStyleBackColor = true;
1553
			this->ButFromFile->UseVisualStyleBackColor = true;
1589
			this->ButFromFile->Click += gcnew System::EventHandler(this, &PackageForm::ButFromFile_Click);
1554
			this->ButFromFile->Click += gcnew System::EventHandler(this, &PackageForm::ButFromFile_Click);
1590
			// 
1555
			// 
1591
			// panel22
1556
			// panel22
1592
			// 
1557
			// 
1593
			this->panel22->Controls->Add(this->ComboPluginType);
1558
			this->panel22->Controls->Add(this->ComboPluginType);
1594
			this->panel22->Controls->Add(this->label15);
1559
			this->panel22->Controls->Add(this->label15);
1595
			this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
1560
			this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
1596
			this->panel22->Location = System::Drawing::Point(4, 78);
1561
			this->panel22->Location = System::Drawing::Point(3, 63);
1597
			this->panel22->Margin = System::Windows::Forms::Padding(4);
-
 
1598
			this->panel22->Name = L"panel22";
1562
			this->panel22->Name = L"panel22";
1599
			this->panel22->Size = System::Drawing::Size(991, 39);
1563
			this->panel22->Size = System::Drawing::Size(741, 32);
1600
			this->panel22->TabIndex = 2;
1564
			this->panel22->TabIndex = 2;
1601
			// 
1565
			// 
1602
			// ComboPluginType
1566
			// ComboPluginType
1603
			// 
1567
			// 
1604
			this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
1568
			this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
Line 1606... Line 1570...
1606
			this->ComboPluginType->FormattingEnabled = true;
1570
			this->ComboPluginType->FormattingEnabled = true;
1607
			this->ComboPluginType->Items->AddRange(gcnew cli::array< System::Object^  >(5) {
1571
			this->ComboPluginType->Items->AddRange(gcnew cli::array< System::Object^  >(5) {
1608
				L"Normal", L"Stable", L"Experimental", L"Cheat",
1572
				L"Normal", L"Stable", L"Experimental", L"Cheat",
1609
					L"Mod"
1573
					L"Mod"
1610
			});
1574
			});
1611
			this->ComboPluginType->Location = System::Drawing::Point(209, 0);
1575
			this->ComboPluginType->Location = System::Drawing::Point(157, 0);
1612
			this->ComboPluginType->Margin = System::Windows::Forms::Padding(4);
-
 
1613
			this->ComboPluginType->Name = L"ComboPluginType";
1576
			this->ComboPluginType->Name = L"ComboPluginType";
1614
			this->ComboPluginType->Size = System::Drawing::Size(782, 24);
1577
			this->ComboPluginType->Size = System::Drawing::Size(584, 21);
1615
			this->ComboPluginType->TabIndex = 7;
1578
			this->ComboPluginType->TabIndex = 7;
1616
			this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
1579
			this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
1617
			// 
1580
			// 
1618
			// label15
1581
			// label15
1619
			// 
1582
			// 
1620
			this->label15->Dock = System::Windows::Forms::DockStyle::Left;
1583
			this->label15->Dock = System::Windows::Forms::DockStyle::Left;
1621
			this->label15->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1584
			this->label15->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1622
				static_cast<System::Byte>(0)));
1585
				static_cast<System::Byte>(0)));
1623
			this->label15->Location = System::Drawing::Point(0, 0);
1586
			this->label15->Location = System::Drawing::Point(0, 0);
1624
			this->label15->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1625
			this->label15->Name = L"label15";
1587
			this->label15->Name = L"label15";
1626
			this->label15->Size = System::Drawing::Size(209, 39);
1588
			this->label15->Size = System::Drawing::Size(157, 32);
1627
			this->label15->TabIndex = 2;
1589
			this->label15->TabIndex = 2;
1628
			this->label15->Text = L"Plugin Type";
1590
			this->label15->Text = L"Plugin Type";
1629
			// 
1591
			// 
1630
			// panel7
1592
			// panel7
1631
			// 
1593
			// 
1632
			this->panel7->Controls->Add(this->panel8);
1594
			this->panel7->Controls->Add(this->panel8);
1633
			this->panel7->Controls->Add(this->label7);
1595
			this->panel7->Controls->Add(this->label7);
1634
			this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
1596
			this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
1635
			this->panel7->Location = System::Drawing::Point(4, 4);
1597
			this->panel7->Location = System::Drawing::Point(3, 3);
1636
			this->panel7->Margin = System::Windows::Forms::Padding(4);
-
 
1637
			this->panel7->Name = L"panel7";
1598
			this->panel7->Name = L"panel7";
1638
			this->panel7->Padding = System::Windows::Forms::Padding(7, 6, 7, 12);
1599
			this->panel7->Padding = System::Windows::Forms::Padding(5, 5, 5, 10);
1639
			this->panel7->Size = System::Drawing::Size(991, 74);
1600
			this->panel7->Size = System::Drawing::Size(741, 60);
1640
			this->panel7->TabIndex = 0;
1601
			this->panel7->TabIndex = 0;
1641
			// 
1602
			// 
1642
			// panel8
1603
			// panel8
1643
			// 
1604
			// 
1644
			this->panel8->Controls->Add(this->flowLayoutPanel1);
1605
			this->panel8->Controls->Add(this->flowLayoutPanel1);
1645
			this->panel8->Controls->Add(this->panel9);
1606
			this->panel8->Controls->Add(this->panel9);
1646
			this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
1607
			this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
1647
			this->panel8->Location = System::Drawing::Point(216, 6);
1608
			this->panel8->Location = System::Drawing::Point(162, 5);
1648
			this->panel8->Margin = System::Windows::Forms::Padding(4);
-
 
1649
			this->panel8->Name = L"panel8";
1609
			this->panel8->Name = L"panel8";
1650
			this->panel8->Size = System::Drawing::Size(768, 56);
1610
			this->panel8->Size = System::Drawing::Size(574, 45);
1651
			this->panel8->TabIndex = 2;
1611
			this->panel8->TabIndex = 2;
1652
			// 
1612
			// 
1653
			// flowLayoutPanel1
1613
			// flowLayoutPanel1
1654
			// 
1614
			// 
1655
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
1615
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
1656
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeLibrary);
1616
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeLibrary);
1657
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
1617
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
1658
			this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
1618
			this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
1659
			this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
1619
			this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
1660
			this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
1620
			this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
1661
			this->flowLayoutPanel1->Margin = System::Windows::Forms::Padding(4);
-
 
1662
			this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
1621
			this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
1663
			this->flowLayoutPanel1->Size = System::Drawing::Size(768, 28);
1622
			this->flowLayoutPanel1->Size = System::Drawing::Size(574, 22);
1664
			this->flowLayoutPanel1->TabIndex = 4;
1623
			this->flowLayoutPanel1->TabIndex = 4;
1665
			// 
1624
			// 
1666
			// RadioTypeUpdate
1625
			// RadioTypeUpdate
1667
			// 
1626
			// 
1668
			this->RadioTypeUpdate->AutoSize = true;
1627
			this->RadioTypeUpdate->AutoSize = true;
1669
			this->RadioTypeUpdate->Location = System::Drawing::Point(4, 4);
1628
			this->RadioTypeUpdate->Location = System::Drawing::Point(3, 3);
1670
			this->RadioTypeUpdate->Margin = System::Windows::Forms::Padding(4);
-
 
1671
			this->RadioTypeUpdate->Name = L"RadioTypeUpdate";
1629
			this->RadioTypeUpdate->Name = L"RadioTypeUpdate";
1672
			this->RadioTypeUpdate->Size = System::Drawing::Size(134, 21);
1630
			this->RadioTypeUpdate->Size = System::Drawing::Size(106, 17);
1673
			this->RadioTypeUpdate->TabIndex = 1;
1631
			this->RadioTypeUpdate->TabIndex = 1;
1674
			this->RadioTypeUpdate->TabStop = true;
1632
			this->RadioTypeUpdate->TabStop = true;
1675
			this->RadioTypeUpdate->Text = L"Update Package";
1633
			this->RadioTypeUpdate->Text = L"Update Package";
1676
			this->RadioTypeUpdate->UseVisualStyleBackColor = true;
1634
			this->RadioTypeUpdate->UseVisualStyleBackColor = true;
1677
			this->RadioTypeUpdate->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeUpdate_CheckedChanged);
1635
			this->RadioTypeUpdate->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeUpdate_CheckedChanged);
1678
			// 
1636
			// 
1679
			// RadioTypeLibrary
1637
			// RadioTypeLibrary
1680
			// 
1638
			// 
1681
			this->RadioTypeLibrary->AutoSize = true;
1639
			this->RadioTypeLibrary->AutoSize = true;
1682
			this->RadioTypeLibrary->Location = System::Drawing::Point(146, 4);
1640
			this->RadioTypeLibrary->Location = System::Drawing::Point(115, 3);
1683
			this->RadioTypeLibrary->Margin = System::Windows::Forms::Padding(4);
-
 
1684
			this->RadioTypeLibrary->Name = L"RadioTypeLibrary";
1641
			this->RadioTypeLibrary->Name = L"RadioTypeLibrary";
1685
			this->RadioTypeLibrary->Size = System::Drawing::Size(113, 21);
1642
			this->RadioTypeLibrary->Size = System::Drawing::Size(86, 17);
1686
			this->RadioTypeLibrary->TabIndex = 3;
1643
			this->RadioTypeLibrary->TabIndex = 3;
1687
			this->RadioTypeLibrary->TabStop = true;
1644
			this->RadioTypeLibrary->TabStop = true;
1688
			this->RadioTypeLibrary->Text = L"Script Library";
1645
			this->RadioTypeLibrary->Text = L"Script Library";
1689
			this->RadioTypeLibrary->UseVisualStyleBackColor = true;
1646
			this->RadioTypeLibrary->UseVisualStyleBackColor = true;
1690
			this->RadioTypeLibrary->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeLibrary_CheckedChanged);
1647
			this->RadioTypeLibrary->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeLibrary_CheckedChanged);
1691
			// 
1648
			// 
1692
			// RadioTypeStart
1649
			// RadioTypeStart
1693
			// 
1650
			// 
1694
			this->RadioTypeStart->AutoSize = true;
1651
			this->RadioTypeStart->AutoSize = true;
1695
			this->RadioTypeStart->Location = System::Drawing::Point(267, 4);
1652
			this->RadioTypeStart->Location = System::Drawing::Point(207, 3);
1696
			this->RadioTypeStart->Margin = System::Windows::Forms::Padding(4);
-
 
1697
			this->RadioTypeStart->Name = L"RadioTypeStart";
1653
			this->RadioTypeStart->Name = L"RadioTypeStart";
1698
			this->RadioTypeStart->Size = System::Drawing::Size(110, 21);
1654
			this->RadioTypeStart->Size = System::Drawing::Size(85, 17);
1699
			this->RadioTypeStart->TabIndex = 0;
1655
			this->RadioTypeStart->TabIndex = 0;
1700
			this->RadioTypeStart->TabStop = true;
1656
			this->RadioTypeStart->TabStop = true;
1701
			this->RadioTypeStart->Text = L"Custom Start";
1657
			this->RadioTypeStart->Text = L"Custom Start";
1702
			this->RadioTypeStart->UseVisualStyleBackColor = true;
1658
			this->RadioTypeStart->UseVisualStyleBackColor = true;
1703
			this->RadioTypeStart->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeStart_CheckedChanged);
1659
			this->RadioTypeStart->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeStart_CheckedChanged);
1704
			// 
1660
			// 
1705
			// RadioTypePatch
1661
			// RadioTypePatch
1706
			// 
1662
			// 
1707
			this->RadioTypePatch->AutoSize = true;
1663
			this->RadioTypePatch->AutoSize = true;
1708
			this->RadioTypePatch->Location = System::Drawing::Point(385, 4);
1664
			this->RadioTypePatch->Location = System::Drawing::Point(298, 3);
1709
			this->RadioTypePatch->Margin = System::Windows::Forms::Padding(4);
-
 
1710
			this->RadioTypePatch->Name = L"RadioTypePatch";
1665
			this->RadioTypePatch->Name = L"RadioTypePatch";
1711
			this->RadioTypePatch->Size = System::Drawing::Size(96, 21);
1666
			this->RadioTypePatch->Size = System::Drawing::Size(77, 17);
1712
			this->RadioTypePatch->TabIndex = 2;
1667
			this->RadioTypePatch->TabIndex = 2;
1713
			this->RadioTypePatch->TabStop = true;
1668
			this->RadioTypePatch->TabStop = true;
1714
			this->RadioTypePatch->Text = L"Mod Patch";
1669
			this->RadioTypePatch->Text = L"Mod Patch";
1715
			this->RadioTypePatch->UseVisualStyleBackColor = true;
1670
			this->RadioTypePatch->UseVisualStyleBackColor = true;
1716
			this->RadioTypePatch->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypePatch_CheckedChanged);
1671
			this->RadioTypePatch->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypePatch_CheckedChanged);
Line 1719... Line 1674...
1719
			// 
1674
			// 
1720
			this->panel9->Controls->Add(this->TextCustomType);
1675
			this->panel9->Controls->Add(this->TextCustomType);
1721
			this->panel9->Controls->Add(this->ComboType);
1676
			this->panel9->Controls->Add(this->ComboType);
1722
			this->panel9->Controls->Add(this->RadioTypeScript);
1677
			this->panel9->Controls->Add(this->RadioTypeScript);
1723
			this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
1678
			this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
1724
			this->panel9->Location = System::Drawing::Point(0, 28);
1679
			this->panel9->Location = System::Drawing::Point(0, 22);
1725
			this->panel9->Margin = System::Windows::Forms::Padding(4);
-
 
1726
			this->panel9->Name = L"panel9";
1680
			this->panel9->Name = L"panel9";
1727
			this->panel9->Size = System::Drawing::Size(768, 28);
1681
			this->panel9->Size = System::Drawing::Size(574, 23);
1728
			this->panel9->TabIndex = 6;
1682
			this->panel9->TabIndex = 6;
1729
			// 
1683
			// 
1730
			// TextCustomType
1684
			// TextCustomType
1731
			// 
1685
			// 
1732
			this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
1686
			this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
1733
			this->TextCustomType->Location = System::Drawing::Point(192, 0);
1687
			this->TextCustomType->Location = System::Drawing::Point(146, 0);
1734
			this->TextCustomType->Margin = System::Windows::Forms::Padding(4);
-
 
1735
			this->TextCustomType->Name = L"TextCustomType";
1688
			this->TextCustomType->Name = L"TextCustomType";
1736
			this->TextCustomType->Size = System::Drawing::Size(576, 22);
1689
			this->TextCustomType->Size = System::Drawing::Size(428, 20);
1737
			this->TextCustomType->TabIndex = 7;
1690
			this->TextCustomType->TabIndex = 7;
1738
			this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
1691
			this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
1739
			// 
1692
			// 
1740
			// ComboType
1693
			// ComboType
1741
			// 
1694
			// 
1742
			this->ComboType->Dock = System::Windows::Forms::DockStyle::Left;
1695
			this->ComboType->Dock = System::Windows::Forms::DockStyle::Left;
1743
			this->ComboType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1696
			this->ComboType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1744
			this->ComboType->FormattingEnabled = true;
1697
			this->ComboType->FormattingEnabled = true;
1745
			this->ComboType->Location = System::Drawing::Point(17, 0);
1698
			this->ComboType->Location = System::Drawing::Point(14, 0);
1746
			this->ComboType->Margin = System::Windows::Forms::Padding(4);
-
 
1747
			this->ComboType->Name = L"ComboType";
1699
			this->ComboType->Name = L"ComboType";
1748
			this->ComboType->Size = System::Drawing::Size(175, 24);
1700
			this->ComboType->Size = System::Drawing::Size(132, 21);
1749
			this->ComboType->TabIndex = 6;
1701
			this->ComboType->TabIndex = 6;
1750
			this->ComboType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboType_SelectedIndexChanged);
1702
			this->ComboType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboType_SelectedIndexChanged);
1751
			// 
1703
			// 
1752
			// RadioTypeScript
1704
			// RadioTypeScript
1753
			// 
1705
			// 
1754
			this->RadioTypeScript->AutoSize = true;
1706
			this->RadioTypeScript->AutoSize = true;
1755
			this->RadioTypeScript->Dock = System::Windows::Forms::DockStyle::Left;
1707
			this->RadioTypeScript->Dock = System::Windows::Forms::DockStyle::Left;
1756
			this->RadioTypeScript->Location = System::Drawing::Point(0, 0);
1708
			this->RadioTypeScript->Location = System::Drawing::Point(0, 0);
1757
			this->RadioTypeScript->Margin = System::Windows::Forms::Padding(4);
-
 
1758
			this->RadioTypeScript->Name = L"RadioTypeScript";
1709
			this->RadioTypeScript->Name = L"RadioTypeScript";
1759
			this->RadioTypeScript->Size = System::Drawing::Size(17, 28);
1710
			this->RadioTypeScript->Size = System::Drawing::Size(14, 23);
1760
			this->RadioTypeScript->TabIndex = 5;
1711
			this->RadioTypeScript->TabIndex = 5;
1761
			this->RadioTypeScript->TabStop = true;
1712
			this->RadioTypeScript->TabStop = true;
1762
			this->RadioTypeScript->UseVisualStyleBackColor = true;
1713
			this->RadioTypeScript->UseVisualStyleBackColor = true;
1763
			this->RadioTypeScript->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeScript_CheckedChanged);
1714
			this->RadioTypeScript->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioTypeScript_CheckedChanged);
1764
			// 
1715
			// 
1765
			// label7
1716
			// label7
1766
			// 
1717
			// 
1767
			this->label7->Dock = System::Windows::Forms::DockStyle::Left;
1718
			this->label7->Dock = System::Windows::Forms::DockStyle::Left;
1768
			this->label7->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1719
			this->label7->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1769
				static_cast<System::Byte>(0)));
1720
				static_cast<System::Byte>(0)));
1770
			this->label7->Location = System::Drawing::Point(7, 6);
1721
			this->label7->Location = System::Drawing::Point(5, 5);
1771
			this->label7->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
1772
			this->label7->Name = L"label7";
1722
			this->label7->Name = L"label7";
1773
			this->label7->Size = System::Drawing::Size(209, 56);
1723
			this->label7->Size = System::Drawing::Size(157, 45);
1774
			this->label7->TabIndex = 1;
1724
			this->label7->TabIndex = 1;
1775
			this->label7->Text = L"Package Type";
1725
			this->label7->Text = L"Package Type";
1776
			this->label7->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
1726
			this->label7->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
1777
			// 
1727
			// 
1778
			// tabPage3
1728
			// tabPage3
1779
			// 
1729
			// 
1780
			this->tabPage3->Controls->Add(this->groupBox7);
1730
			this->tabPage3->Controls->Add(this->groupBox7);
1781
			this->tabPage3->Controls->Add(this->groupBox6);
1731
			this->tabPage3->Controls->Add(this->groupBox6);
1782
			this->tabPage3->Controls->Add(this->groupBox5);
1732
			this->tabPage3->Controls->Add(this->groupBox5);
1783
			this->tabPage3->Controls->Add(this->panel15);
1733
			this->tabPage3->Controls->Add(this->panel15);
1784
			this->tabPage3->Location = System::Drawing::Point(4, 25);
1734
			this->tabPage3->Location = System::Drawing::Point(4, 22);
1785
			this->tabPage3->Margin = System::Windows::Forms::Padding(4);
-
 
1786
			this->tabPage3->Name = L"tabPage3";
1735
			this->tabPage3->Name = L"tabPage3";
1787
			this->tabPage3->Padding = System::Windows::Forms::Padding(4);
1736
			this->tabPage3->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
1788
			this->tabPage3->Size = System::Drawing::Size(999, 269);
1737
			this->tabPage3->Size = System::Drawing::Size(747, 216);
1789
			this->tabPage3->TabIndex = 4;
1738
			this->tabPage3->TabIndex = 4;
1790
			this->tabPage3->Text = L"Display";
1739
			this->tabPage3->Text = L"Display";
1791
			this->tabPage3->UseVisualStyleBackColor = true;
1740
			this->tabPage3->UseVisualStyleBackColor = true;
1792
			// 
1741
			// 
1793
			// groupBox7
1742
			// groupBox7
1794
			// 
1743
			// 
1795
			this->groupBox7->Controls->Add(this->TextText);
1744
			this->groupBox7->Controls->Add(this->TextText);
1796
			this->groupBox7->Controls->Add(this->panel19);
1745
			this->groupBox7->Controls->Add(this->panel19);
1797
			this->groupBox7->Controls->Add(this->panel18);
1746
			this->groupBox7->Controls->Add(this->panel18);
1798
			this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
1747
			this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
1799
			this->groupBox7->Location = System::Drawing::Point(280, 82);
1748
			this->groupBox7->Location = System::Drawing::Point(210, 66);
1800
			this->groupBox7->Margin = System::Windows::Forms::Padding(4);
-
 
1801
			this->groupBox7->Name = L"groupBox7";
1749
			this->groupBox7->Name = L"groupBox7";
1802
			this->groupBox7->Padding = System::Windows::Forms::Padding(7, 0, 7, 6);
1750
			this->groupBox7->Padding = System::Windows::Forms::Padding(5, 0, 5, 5);
1803
			this->groupBox7->Size = System::Drawing::Size(715, 183);
1751
			this->groupBox7->Size = System::Drawing::Size(534, 147);
1804
			this->groupBox7->TabIndex = 4;
1752
			this->groupBox7->TabIndex = 4;
1805
			this->groupBox7->TabStop = false;
1753
			this->groupBox7->TabStop = false;
1806
			this->groupBox7->Text = L"Text";
1754
			this->groupBox7->Text = L"Text";
1807
			// 
1755
			// 
1808
			// TextText
1756
			// TextText
1809
			// 
1757
			// 
1810
			this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
1758
			this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
1811
			this->TextText->Location = System::Drawing::Point(139, 48);
1759
			this->TextText->Location = System::Drawing::Point(104, 40);
1812
			this->TextText->Margin = System::Windows::Forms::Padding(4);
-
 
1813
			this->TextText->Name = L"TextText";
1760
			this->TextText->Name = L"TextText";
1814
			this->TextText->Size = System::Drawing::Size(569, 129);
1761
			this->TextText->Size = System::Drawing::Size(425, 102);
1815
			this->TextText->TabIndex = 3;
1762
			this->TextText->TabIndex = 3;
1816
			this->TextText->Text = L"";
1763
			this->TextText->Text = L"";
1817
			this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
1764
			this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
1818
			// 
1765
			// 
1819
			// panel19
1766
			// panel19
1820
			// 
1767
			// 
1821
			this->panel19->Controls->Add(this->ListLang);
1768
			this->panel19->Controls->Add(this->ListLang);
1822
			this->panel19->Controls->Add(this->panel20);
1769
			this->panel19->Controls->Add(this->panel20);
1823
			this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
1770
			this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
1824
			this->panel19->Location = System::Drawing::Point(7, 48);
1771
			this->panel19->Location = System::Drawing::Point(5, 40);
1825
			this->panel19->Margin = System::Windows::Forms::Padding(4);
-
 
1826
			this->panel19->Name = L"panel19";
1772
			this->panel19->Name = L"panel19";
1827
			this->panel19->Size = System::Drawing::Size(132, 129);
1773
			this->panel19->Size = System::Drawing::Size(99, 102);
1828
			this->panel19->TabIndex = 5;
1774
			this->panel19->TabIndex = 5;
1829
			// 
1775
			// 
1830
			// ListLang
1776
			// ListLang
1831
			// 
1777
			// 
1832
			this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
1778
			this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
1833
			this->ListLang->FormattingEnabled = true;
1779
			this->ListLang->FormattingEnabled = true;
1834
			this->ListLang->ItemHeight = 16;
-
 
1835
			this->ListLang->Items->AddRange(gcnew cli::array< System::Object^  >(1) { L"- Default -" });
1780
			this->ListLang->Items->AddRange(gcnew cli::array< System::Object^  >(1) { L"- Default -" });
1836
			this->ListLang->Location = System::Drawing::Point(0, 0);
1781
			this->ListLang->Location = System::Drawing::Point(0, 0);
1837
			this->ListLang->Margin = System::Windows::Forms::Padding(4);
-
 
1838
			this->ListLang->Name = L"ListLang";
1782
			this->ListLang->Name = L"ListLang";
1839
			this->ListLang->Size = System::Drawing::Size(132, 104);
1783
			this->ListLang->Size = System::Drawing::Size(99, 82);
1840
			this->ListLang->TabIndex = 4;
1784
			this->ListLang->TabIndex = 4;
1841
			this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
1785
			this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
1842
			// 
1786
			// 
1843
			// panel20
1787
			// panel20
1844
			// 
1788
			// 
1845
			this->panel20->Controls->Add(this->ButTextDel);
1789
			this->panel20->Controls->Add(this->ButTextDel);
1846
			this->panel20->Controls->Add(this->ButTextAdd);
1790
			this->panel20->Controls->Add(this->ButTextAdd);
1847
			this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
1791
			this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
1848
			this->panel20->Location = System::Drawing::Point(0, 104);
1792
			this->panel20->Location = System::Drawing::Point(0, 82);
1849
			this->panel20->Margin = System::Windows::Forms::Padding(4);
-
 
1850
			this->panel20->Name = L"panel20";
1793
			this->panel20->Name = L"panel20";
1851
			this->panel20->Size = System::Drawing::Size(132, 25);
1794
			this->panel20->Size = System::Drawing::Size(99, 20);
1852
			this->panel20->TabIndex = 7;
1795
			this->panel20->TabIndex = 7;
1853
			// 
1796
			// 
1854
			// ButTextDel
1797
			// ButTextDel
1855
			// 
1798
			// 
1856
			this->ButTextDel->Dock = System::Windows::Forms::DockStyle::Left;
1799
			this->ButTextDel->Dock = System::Windows::Forms::DockStyle::Left;
1857
			this->ButTextDel->Location = System::Drawing::Point(68, 0);
1800
			this->ButTextDel->Location = System::Drawing::Point(51, 0);
1858
			this->ButTextDel->Margin = System::Windows::Forms::Padding(4);
-
 
1859
			this->ButTextDel->Name = L"ButTextDel";
1801
			this->ButTextDel->Name = L"ButTextDel";
1860
			this->ButTextDel->Size = System::Drawing::Size(61, 25);
1802
			this->ButTextDel->Size = System::Drawing::Size(46, 20);
1861
			this->ButTextDel->TabIndex = 5;
1803
			this->ButTextDel->TabIndex = 5;
1862
			this->ButTextDel->Text = L"-";
1804
			this->ButTextDel->Text = L"-";
1863
			this->ButTextDel->UseVisualStyleBackColor = true;
1805
			this->ButTextDel->UseVisualStyleBackColor = true;
1864
			this->ButTextDel->Click += gcnew System::EventHandler(this, &PackageForm::ButTextDel_Click);
1806
			this->ButTextDel->Click += gcnew System::EventHandler(this, &PackageForm::ButTextDel_Click);
1865
			// 
1807
			// 
1866
			// ButTextAdd
1808
			// ButTextAdd
1867
			// 
1809
			// 
1868
			this->ButTextAdd->Dock = System::Windows::Forms::DockStyle::Left;
1810
			this->ButTextAdd->Dock = System::Windows::Forms::DockStyle::Left;
1869
			this->ButTextAdd->Location = System::Drawing::Point(0, 0);
1811
			this->ButTextAdd->Location = System::Drawing::Point(0, 0);
1870
			this->ButTextAdd->Margin = System::Windows::Forms::Padding(4);
-
 
1871
			this->ButTextAdd->Name = L"ButTextAdd";
1812
			this->ButTextAdd->Name = L"ButTextAdd";
1872
			this->ButTextAdd->Size = System::Drawing::Size(68, 25);
1813
			this->ButTextAdd->Size = System::Drawing::Size(51, 20);
1873
			this->ButTextAdd->TabIndex = 6;
1814
			this->ButTextAdd->TabIndex = 6;
1874
			this->ButTextAdd->Text = L"+";
1815
			this->ButTextAdd->Text = L"+";
1875
			this->ButTextAdd->UseVisualStyleBackColor = true;
1816
			this->ButTextAdd->UseVisualStyleBackColor = true;
1876
			this->ButTextAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButTextAdd_Click);
1817
			this->ButTextAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButTextAdd_Click);
1877
			// 
1818
			// 
Line 1880... Line 1821...
1880
			this->panel18->Controls->Add(this->RadioUninstallAfter);
1821
			this->panel18->Controls->Add(this->RadioUninstallAfter);
1881
			this->panel18->Controls->Add(this->RadioUninstallBefore);
1822
			this->panel18->Controls->Add(this->RadioUninstallBefore);
1882
			this->panel18->Controls->Add(this->RadioInstallAfter);
1823
			this->panel18->Controls->Add(this->RadioInstallAfter);
1883
			this->panel18->Controls->Add(this->RadioInstallBefore);
1824
			this->panel18->Controls->Add(this->RadioInstallBefore);
1884
			this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
1825
			this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
1885
			this->panel18->Location = System::Drawing::Point(7, 15);
1826
			this->panel18->Location = System::Drawing::Point(5, 13);
1886
			this->panel18->Margin = System::Windows::Forms::Padding(4);
-
 
1887
			this->panel18->Name = L"panel18";
1827
			this->panel18->Name = L"panel18";
1888
			this->panel18->Size = System::Drawing::Size(701, 33);
1828
			this->panel18->Size = System::Drawing::Size(524, 27);
1889
			this->panel18->TabIndex = 2;
1829
			this->panel18->TabIndex = 2;
1890
			// 
1830
			// 
1891
			// RadioUninstallAfter
1831
			// RadioUninstallAfter
1892
			// 
1832
			// 
1893
			this->RadioUninstallAfter->AutoSize = true;
1833
			this->RadioUninstallAfter->AutoSize = true;
1894
			this->RadioUninstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1834
			this->RadioUninstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1895
			this->RadioUninstallAfter->Location = System::Drawing::Point(339, 0);
1835
			this->RadioUninstallAfter->Location = System::Drawing::Point(262, 0);
1896
			this->RadioUninstallAfter->Margin = System::Windows::Forms::Padding(4);
-
 
1897
			this->RadioUninstallAfter->Name = L"RadioUninstallAfter";
1836
			this->RadioUninstallAfter->Name = L"RadioUninstallAfter";
1898
			this->RadioUninstallAfter->Size = System::Drawing::Size(117, 33);
1837
			this->RadioUninstallAfter->Size = System::Drawing::Size(90, 27);
1899
			this->RadioUninstallAfter->TabIndex = 3;
1838
			this->RadioUninstallAfter->TabIndex = 3;
1900
			this->RadioUninstallAfter->TabStop = true;
1839
			this->RadioUninstallAfter->TabStop = true;
1901
			this->RadioUninstallAfter->Text = L"Uninstall After";
1840
			this->RadioUninstallAfter->Text = L"Uninstall After";
1902
			this->RadioUninstallAfter->UseVisualStyleBackColor = true;
1841
			this->RadioUninstallAfter->UseVisualStyleBackColor = true;
1903
			this->RadioUninstallAfter->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioUninstallAfter_CheckedChanged);
1842
			this->RadioUninstallAfter->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioUninstallAfter_CheckedChanged);
1904
			// 
1843
			// 
1905
			// RadioUninstallBefore
1844
			// RadioUninstallBefore
1906
			// 
1845
			// 
1907
			this->RadioUninstallBefore->AutoSize = true;
1846
			this->RadioUninstallBefore->AutoSize = true;
1908
			this->RadioUninstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
1847
			this->RadioUninstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
1909
			this->RadioUninstallBefore->Location = System::Drawing::Point(210, 0);
1848
			this->RadioUninstallBefore->Location = System::Drawing::Point(163, 0);
1910
			this->RadioUninstallBefore->Margin = System::Windows::Forms::Padding(4);
-
 
1911
			this->RadioUninstallBefore->Name = L"RadioUninstallBefore";
1849
			this->RadioUninstallBefore->Name = L"RadioUninstallBefore";
1912
			this->RadioUninstallBefore->Size = System::Drawing::Size(129, 33);
1850
			this->RadioUninstallBefore->Size = System::Drawing::Size(99, 27);
1913
			this->RadioUninstallBefore->TabIndex = 2;
1851
			this->RadioUninstallBefore->TabIndex = 2;
1914
			this->RadioUninstallBefore->TabStop = true;
1852
			this->RadioUninstallBefore->TabStop = true;
1915
			this->RadioUninstallBefore->Text = L"Uninstall Before";
1853
			this->RadioUninstallBefore->Text = L"Uninstall Before";
1916
			this->RadioUninstallBefore->UseVisualStyleBackColor = true;
1854
			this->RadioUninstallBefore->UseVisualStyleBackColor = true;
1917
			this->RadioUninstallBefore->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioUninstallBefore_CheckedChanged);
1855
			this->RadioUninstallBefore->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioUninstallBefore_CheckedChanged);
1918
			// 
1856
			// 
1919
			// RadioInstallAfter
1857
			// RadioInstallAfter
1920
			// 
1858
			// 
1921
			this->RadioInstallAfter->AutoSize = true;
1859
			this->RadioInstallAfter->AutoSize = true;
1922
			this->RadioInstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1860
			this->RadioInstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1923
			this->RadioInstallAfter->Location = System::Drawing::Point(111, 0);
1861
			this->RadioInstallAfter->Location = System::Drawing::Point(86, 0);
1924
			this->RadioInstallAfter->Margin = System::Windows::Forms::Padding(4);
-
 
1925
			this->RadioInstallAfter->Name = L"RadioInstallAfter";
1862
			this->RadioInstallAfter->Name = L"RadioInstallAfter";
1926
			this->RadioInstallAfter->Size = System::Drawing::Size(99, 33);
1863
			this->RadioInstallAfter->Size = System::Drawing::Size(77, 27);
1927
			this->RadioInstallAfter->TabIndex = 1;
1864
			this->RadioInstallAfter->TabIndex = 1;
1928
			this->RadioInstallAfter->TabStop = true;
1865
			this->RadioInstallAfter->TabStop = true;
1929
			this->RadioInstallAfter->Text = L"Install After";
1866
			this->RadioInstallAfter->Text = L"Install After";
1930
			this->RadioInstallAfter->UseVisualStyleBackColor = true;
1867
			this->RadioInstallAfter->UseVisualStyleBackColor = true;
1931
			this->RadioInstallAfter->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioInstallAfter_CheckedChanged);
1868
			this->RadioInstallAfter->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioInstallAfter_CheckedChanged);
Line 1933... Line 1870...
1933
			// RadioInstallBefore
1870
			// RadioInstallBefore
1934
			// 
1871
			// 
1935
			this->RadioInstallBefore->AutoSize = true;
1872
			this->RadioInstallBefore->AutoSize = true;
1936
			this->RadioInstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
1873
			this->RadioInstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
1937
			this->RadioInstallBefore->Location = System::Drawing::Point(0, 0);
1874
			this->RadioInstallBefore->Location = System::Drawing::Point(0, 0);
1938
			this->RadioInstallBefore->Margin = System::Windows::Forms::Padding(4);
-
 
1939
			this->RadioInstallBefore->Name = L"RadioInstallBefore";
1875
			this->RadioInstallBefore->Name = L"RadioInstallBefore";
1940
			this->RadioInstallBefore->Size = System::Drawing::Size(111, 33);
1876
			this->RadioInstallBefore->Size = System::Drawing::Size(86, 27);
1941
			this->RadioInstallBefore->TabIndex = 0;
1877
			this->RadioInstallBefore->TabIndex = 0;
1942
			this->RadioInstallBefore->TabStop = true;
1878
			this->RadioInstallBefore->TabStop = true;
1943
			this->RadioInstallBefore->Text = L"Install Before";
1879
			this->RadioInstallBefore->Text = L"Install Before";
1944
			this->RadioInstallBefore->UseVisualStyleBackColor = true;
1880
			this->RadioInstallBefore->UseVisualStyleBackColor = true;
1945
			this->RadioInstallBefore->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioInstallBefore_CheckedChanged);
1881
			this->RadioInstallBefore->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::RadioInstallBefore_CheckedChanged);
1946
			// 
1882
			// 
1947
			// groupBox6
1883
			// groupBox6
1948
			// 
1884
			// 
1949
			this->groupBox6->Controls->Add(this->panel17);
1885
			this->groupBox6->Controls->Add(this->panel17);
1950
			this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
1886
			this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
1951
			this->groupBox6->Location = System::Drawing::Point(280, 4);
1887
			this->groupBox6->Location = System::Drawing::Point(210, 3);
1952
			this->groupBox6->Margin = System::Windows::Forms::Padding(4);
-
 
1953
			this->groupBox6->Name = L"groupBox6";
1888
			this->groupBox6->Name = L"groupBox6";
1954
			this->groupBox6->Padding = System::Windows::Forms::Padding(4);
-
 
1955
			this->groupBox6->Size = System::Drawing::Size(715, 78);
1889
			this->groupBox6->Size = System::Drawing::Size(534, 63);
1956
			this->groupBox6->TabIndex = 3;
1890
			this->groupBox6->TabIndex = 3;
1957
			this->groupBox6->TabStop = false;
1891
			this->groupBox6->TabStop = false;
1958
			this->groupBox6->Text = L"Ratings";
1892
			this->groupBox6->Text = L"Ratings";
1959
			// 
1893
			// 
1960
			// panel17
1894
			// panel17
1961
			// 
1895
			// 
1962
			this->panel17->Controls->Add(this->GroupChange);
1896
			this->panel17->Controls->Add(this->GroupChange);
1963
			this->panel17->Controls->Add(this->GroupRec);
1897
			this->panel17->Controls->Add(this->GroupRec);
1964
			this->panel17->Controls->Add(this->GroupEase);
1898
			this->panel17->Controls->Add(this->GroupEase);
1965
			this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
1899
			this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
1966
			this->panel17->Location = System::Drawing::Point(4, 19);
1900
			this->panel17->Location = System::Drawing::Point(3, 16);
1967
			this->panel17->Margin = System::Windows::Forms::Padding(4);
-
 
1968
			this->panel17->Name = L"panel17";
1901
			this->panel17->Name = L"panel17";
1969
			this->panel17->Size = System::Drawing::Size(707, 55);
1902
			this->panel17->Size = System::Drawing::Size(528, 44);
1970
			this->panel17->TabIndex = 4;
1903
			this->panel17->TabIndex = 4;
1971
			// 
1904
			// 
1972
			// GroupChange
1905
			// GroupChange
1973
			// 
1906
			// 
1974
			this->GroupChange->Controls->Add(this->PicChange5);
1907
			this->GroupChange->Controls->Add(this->PicChange5);
1975
			this->GroupChange->Controls->Add(this->PicChange4);
1908
			this->GroupChange->Controls->Add(this->PicChange4);
1976
			this->GroupChange->Controls->Add(this->PicChange3);
1909
			this->GroupChange->Controls->Add(this->PicChange3);
1977
			this->GroupChange->Controls->Add(this->PicChange2);
1910
			this->GroupChange->Controls->Add(this->PicChange2);
1978
			this->GroupChange->Controls->Add(this->PicChange1);
1911
			this->GroupChange->Controls->Add(this->PicChange1);
1979
			this->GroupChange->Dock = System::Windows::Forms::DockStyle::Left;
1912
			this->GroupChange->Dock = System::Windows::Forms::DockStyle::Left;
1980
			this->GroupChange->Location = System::Drawing::Point(335, 0);
1913
			this->GroupChange->Location = System::Drawing::Point(251, 0);
1981
			this->GroupChange->Margin = System::Windows::Forms::Padding(4);
-
 
1982
			this->GroupChange->Name = L"GroupChange";
1914
			this->GroupChange->Name = L"GroupChange";
1983
			this->GroupChange->Padding = System::Windows::Forms::Padding(4);
-
 
1984
			this->GroupChange->Size = System::Drawing::Size(168, 55);
1915
			this->GroupChange->Size = System::Drawing::Size(126, 44);
1985
			this->GroupChange->TabIndex = 2;
1916
			this->GroupChange->TabIndex = 2;
1986
			this->GroupChange->TabStop = false;
1917
			this->GroupChange->TabStop = false;
1987
			this->GroupChange->Text = L"Game Changing";
1918
			this->GroupChange->Text = L"Game Changing";
1988
			// 
1919
			// 
1989
			// PicChange4
1920
			// PicChange4
1990
			// 
1921
			// 
1991
			this->PicChange4->Dock = System::Windows::Forms::DockStyle::Left;
1922
			this->PicChange4->Dock = System::Windows::Forms::DockStyle::Left;
1992
			this->PicChange4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange4.Image")));
1923
			this->PicChange4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange4.Image")));
1993
			this->PicChange4->Location = System::Drawing::Point(100, 19);
1924
			this->PicChange4->Location = System::Drawing::Point(75, 16);
1994
			this->PicChange4->Margin = System::Windows::Forms::Padding(4);
-
 
1995
			this->PicChange4->Name = L"PicChange4";
1925
			this->PicChange4->Name = L"PicChange4";
1996
			this->PicChange4->Size = System::Drawing::Size(32, 32);
1926
			this->PicChange4->Size = System::Drawing::Size(24, 25);
1997
			this->PicChange4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1927
			this->PicChange4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1998
			this->PicChange4->TabIndex = 17;
1928
			this->PicChange4->TabIndex = 17;
1999
			this->PicChange4->TabStop = false;
1929
			this->PicChange4->TabStop = false;
2000
			this->PicChange4->Click += gcnew System::EventHandler(this, &PackageForm::PicChange4_Click);
1930
			this->PicChange4->Click += gcnew System::EventHandler(this, &PackageForm::PicChange4_Click);
2001
			// 
1931
			// 
2002
			// PicChange3
1932
			// PicChange3
2003
			// 
1933
			// 
2004
			this->PicChange3->Dock = System::Windows::Forms::DockStyle::Left;
1934
			this->PicChange3->Dock = System::Windows::Forms::DockStyle::Left;
2005
			this->PicChange3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange3.Image")));
1935
			this->PicChange3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange3.Image")));
2006
			this->PicChange3->Location = System::Drawing::Point(68, 19);
1936
			this->PicChange3->Location = System::Drawing::Point(51, 16);
2007
			this->PicChange3->Margin = System::Windows::Forms::Padding(4);
-
 
2008
			this->PicChange3->Name = L"PicChange3";
1937
			this->PicChange3->Name = L"PicChange3";
2009
			this->PicChange3->Size = System::Drawing::Size(32, 32);
1938
			this->PicChange3->Size = System::Drawing::Size(24, 25);
2010
			this->PicChange3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1939
			this->PicChange3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2011
			this->PicChange3->TabIndex = 16;
1940
			this->PicChange3->TabIndex = 16;
2012
			this->PicChange3->TabStop = false;
1941
			this->PicChange3->TabStop = false;
2013
			this->PicChange3->Click += gcnew System::EventHandler(this, &PackageForm::PicChange3_Click);
1942
			this->PicChange3->Click += gcnew System::EventHandler(this, &PackageForm::PicChange3_Click);
2014
			// 
1943
			// 
2015
			// PicChange2
1944
			// PicChange2
2016
			// 
1945
			// 
2017
			this->PicChange2->Dock = System::Windows::Forms::DockStyle::Left;
1946
			this->PicChange2->Dock = System::Windows::Forms::DockStyle::Left;
2018
			this->PicChange2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange2.Image")));
1947
			this->PicChange2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange2.Image")));
2019
			this->PicChange2->Location = System::Drawing::Point(36, 19);
1948
			this->PicChange2->Location = System::Drawing::Point(27, 16);
2020
			this->PicChange2->Margin = System::Windows::Forms::Padding(4);
-
 
2021
			this->PicChange2->Name = L"PicChange2";
1949
			this->PicChange2->Name = L"PicChange2";
2022
			this->PicChange2->Size = System::Drawing::Size(32, 32);
1950
			this->PicChange2->Size = System::Drawing::Size(24, 25);
2023
			this->PicChange2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1951
			this->PicChange2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2024
			this->PicChange2->TabIndex = 15;
1952
			this->PicChange2->TabIndex = 15;
2025
			this->PicChange2->TabStop = false;
1953
			this->PicChange2->TabStop = false;
2026
			this->PicChange2->Click += gcnew System::EventHandler(this, &PackageForm::PicChange2_Click);
1954
			this->PicChange2->Click += gcnew System::EventHandler(this, &PackageForm::PicChange2_Click);
2027
			// 
1955
			// 
Line 2031... Line 1959...
2031
			this->GroupRec->Controls->Add(this->PicRec4);
1959
			this->GroupRec->Controls->Add(this->PicRec4);
2032
			this->GroupRec->Controls->Add(this->PicRec3);
1960
			this->GroupRec->Controls->Add(this->PicRec3);
2033
			this->GroupRec->Controls->Add(this->PicRec2);
1961
			this->GroupRec->Controls->Add(this->PicRec2);
2034
			this->GroupRec->Controls->Add(this->PicRec1);
1962
			this->GroupRec->Controls->Add(this->PicRec1);
2035
			this->GroupRec->Dock = System::Windows::Forms::DockStyle::Left;
1963
			this->GroupRec->Dock = System::Windows::Forms::DockStyle::Left;
2036
			this->GroupRec->Location = System::Drawing::Point(168, 0);
1964
			this->GroupRec->Location = System::Drawing::Point(126, 0);
2037
			this->GroupRec->Margin = System::Windows::Forms::Padding(4);
-
 
2038
			this->GroupRec->Name = L"GroupRec";
1965
			this->GroupRec->Name = L"GroupRec";
2039
			this->GroupRec->Padding = System::Windows::Forms::Padding(4);
-
 
2040
			this->GroupRec->Size = System::Drawing::Size(167, 55);
1966
			this->GroupRec->Size = System::Drawing::Size(125, 44);
2041
			this->GroupRec->TabIndex = 3;
1967
			this->GroupRec->TabIndex = 3;
2042
			this->GroupRec->TabStop = false;
1968
			this->GroupRec->TabStop = false;
2043
			this->GroupRec->Text = L"Recommended";
1969
			this->GroupRec->Text = L"Recommended";
2044
			// 
1970
			// 
2045
			// PicRec4
1971
			// PicRec4
2046
			// 
1972
			// 
2047
			this->PicRec4->Dock = System::Windows::Forms::DockStyle::Left;
1973
			this->PicRec4->Dock = System::Windows::Forms::DockStyle::Left;
2048
			this->PicRec4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec4.Image")));
1974
			this->PicRec4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec4.Image")));
2049
			this->PicRec4->Location = System::Drawing::Point(100, 19);
1975
			this->PicRec4->Location = System::Drawing::Point(75, 16);
2050
			this->PicRec4->Margin = System::Windows::Forms::Padding(4);
-
 
2051
			this->PicRec4->Name = L"PicRec4";
1976
			this->PicRec4->Name = L"PicRec4";
2052
			this->PicRec4->Size = System::Drawing::Size(32, 32);
1977
			this->PicRec4->Size = System::Drawing::Size(24, 25);
2053
			this->PicRec4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1978
			this->PicRec4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2054
			this->PicRec4->TabIndex = 17;
1979
			this->PicRec4->TabIndex = 17;
2055
			this->PicRec4->TabStop = false;
1980
			this->PicRec4->TabStop = false;
2056
			this->PicRec4->Click += gcnew System::EventHandler(this, &PackageForm::PicRec4_Click);
1981
			this->PicRec4->Click += gcnew System::EventHandler(this, &PackageForm::PicRec4_Click);
2057
			// 
1982
			// 
2058
			// PicRec3
1983
			// PicRec3
2059
			// 
1984
			// 
2060
			this->PicRec3->Dock = System::Windows::Forms::DockStyle::Left;
1985
			this->PicRec3->Dock = System::Windows::Forms::DockStyle::Left;
2061
			this->PicRec3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec3.Image")));
1986
			this->PicRec3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec3.Image")));
2062
			this->PicRec3->Location = System::Drawing::Point(68, 19);
1987
			this->PicRec3->Location = System::Drawing::Point(51, 16);
2063
			this->PicRec3->Margin = System::Windows::Forms::Padding(4);
-
 
2064
			this->PicRec3->Name = L"PicRec3";
1988
			this->PicRec3->Name = L"PicRec3";
2065
			this->PicRec3->Size = System::Drawing::Size(32, 32);
1989
			this->PicRec3->Size = System::Drawing::Size(24, 25);
2066
			this->PicRec3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
1990
			this->PicRec3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2067
			this->PicRec3->TabIndex = 16;
1991
			this->PicRec3->TabIndex = 16;
2068
			this->PicRec3->TabStop = false;
1992
			this->PicRec3->TabStop = false;
2069
			this->PicRec3->Click += gcnew System::EventHandler(this, &PackageForm::PicRec3_Click);
1993
			this->PicRec3->Click += gcnew System::EventHandler(this, &PackageForm::PicRec3_Click);
2070
			// 
1994
			// 
2071
			// PicRec2
1995
			// PicRec2
2072
			// 
1996
			// 
2073
			this->PicRec2->Dock = System::Windows::Forms::DockStyle::Left;
1997
			this->PicRec2->Dock = System::Windows::Forms::DockStyle::Left;
2074
			this->PicRec2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec2.Image")));
1998
			this->PicRec2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec2.Image")));
2075
			this->PicRec2->Location = System::Drawing::Point(36, 19);
1999
			this->PicRec2->Location = System::Drawing::Point(27, 16);
2076
			this->PicRec2->Margin = System::Windows::Forms::Padding(4);
-
 
2077
			this->PicRec2->Name = L"PicRec2";
2000
			this->PicRec2->Name = L"PicRec2";
2078
			this->PicRec2->Size = System::Drawing::Size(32, 32);
2001
			this->PicRec2->Size = System::Drawing::Size(24, 25);
2079
			this->PicRec2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2002
			this->PicRec2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2080
			this->PicRec2->TabIndex = 15;
2003
			this->PicRec2->TabIndex = 15;
2081
			this->PicRec2->TabStop = false;
2004
			this->PicRec2->TabStop = false;
2082
			this->PicRec2->Click += gcnew System::EventHandler(this, &PackageForm::PicRec2_Click);
2005
			this->PicRec2->Click += gcnew System::EventHandler(this, &PackageForm::PicRec2_Click);
2083
			// 
2006
			// 
2084
			// PicRec1
2007
			// PicRec1
2085
			// 
2008
			// 
2086
			this->PicRec1->Dock = System::Windows::Forms::DockStyle::Left;
2009
			this->PicRec1->Dock = System::Windows::Forms::DockStyle::Left;
2087
			this->PicRec1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec1.Image")));
2010
			this->PicRec1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec1.Image")));
2088
			this->PicRec1->Location = System::Drawing::Point(4, 19);
2011
			this->PicRec1->Location = System::Drawing::Point(3, 16);
2089
			this->PicRec1->Margin = System::Windows::Forms::Padding(4);
-
 
2090
			this->PicRec1->Name = L"PicRec1";
2012
			this->PicRec1->Name = L"PicRec1";
2091
			this->PicRec1->Size = System::Drawing::Size(32, 32);
2013
			this->PicRec1->Size = System::Drawing::Size(24, 25);
2092
			this->PicRec1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2014
			this->PicRec1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2093
			this->PicRec1->TabIndex = 14;
2015
			this->PicRec1->TabIndex = 14;
2094
			this->PicRec1->TabStop = false;
2016
			this->PicRec1->TabStop = false;
2095
			this->PicRec1->Click += gcnew System::EventHandler(this, &PackageForm::PicRec1_Click);
2017
			this->PicRec1->Click += gcnew System::EventHandler(this, &PackageForm::PicRec1_Click);
2096
			// 
2018
			// 
Line 2101... Line 2023...
2101
			this->GroupEase->Controls->Add(this->PicEase3);
2023
			this->GroupEase->Controls->Add(this->PicEase3);
2102
			this->GroupEase->Controls->Add(this->PicEase2);
2024
			this->GroupEase->Controls->Add(this->PicEase2);
2103
			this->GroupEase->Controls->Add(this->PicEase1);
2025
			this->GroupEase->Controls->Add(this->PicEase1);
2104
			this->GroupEase->Dock = System::Windows::Forms::DockStyle::Left;
2026
			this->GroupEase->Dock = System::Windows::Forms::DockStyle::Left;
2105
			this->GroupEase->Location = System::Drawing::Point(0, 0);
2027
			this->GroupEase->Location = System::Drawing::Point(0, 0);
2106
			this->GroupEase->Margin = System::Windows::Forms::Padding(4);
-
 
2107
			this->GroupEase->Name = L"GroupEase";
2028
			this->GroupEase->Name = L"GroupEase";
2108
			this->GroupEase->Padding = System::Windows::Forms::Padding(4);
-
 
2109
			this->GroupEase->Size = System::Drawing::Size(168, 55);
2029
			this->GroupEase->Size = System::Drawing::Size(126, 44);
2110
			this->GroupEase->TabIndex = 1;
2030
			this->GroupEase->TabIndex = 1;
2111
			this->GroupEase->TabStop = false;
2031
			this->GroupEase->TabStop = false;
2112
			this->GroupEase->Text = L"Ease of Use";
2032
			this->GroupEase->Text = L"Ease of Use";
2113
			// 
2033
			// 
2114
			// PicEase5
2034
			// PicEase5
2115
			// 
2035
			// 
2116
			this->PicEase5->Dock = System::Windows::Forms::DockStyle::Left;
2036
			this->PicEase5->Dock = System::Windows::Forms::DockStyle::Left;
2117
			this->PicEase5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase5.Image")));
2037
			this->PicEase5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase5.Image")));
2118
			this->PicEase5->Location = System::Drawing::Point(132, 19);
2038
			this->PicEase5->Location = System::Drawing::Point(99, 16);
2119
			this->PicEase5->Margin = System::Windows::Forms::Padding(4);
-
 
2120
			this->PicEase5->Name = L"PicEase5";
2039
			this->PicEase5->Name = L"PicEase5";
2121
			this->PicEase5->Size = System::Drawing::Size(32, 32);
2040
			this->PicEase5->Size = System::Drawing::Size(24, 25);
2122
			this->PicEase5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2041
			this->PicEase5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2123
			this->PicEase5->TabIndex = 17;
2042
			this->PicEase5->TabIndex = 17;
2124
			this->PicEase5->TabStop = false;
2043
			this->PicEase5->TabStop = false;
2125
			this->PicEase5->Click += gcnew System::EventHandler(this, &PackageForm::PicEase5_Click);
2044
			this->PicEase5->Click += gcnew System::EventHandler(this, &PackageForm::PicEase5_Click);
2126
			// 
2045
			// 
2127
			// PicEase4
2046
			// PicEase4
2128
			// 
2047
			// 
2129
			this->PicEase4->Dock = System::Windows::Forms::DockStyle::Left;
2048
			this->PicEase4->Dock = System::Windows::Forms::DockStyle::Left;
2130
			this->PicEase4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase4.Image")));
2049
			this->PicEase4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase4.Image")));
2131
			this->PicEase4->Location = System::Drawing::Point(100, 19);
2050
			this->PicEase4->Location = System::Drawing::Point(75, 16);
2132
			this->PicEase4->Margin = System::Windows::Forms::Padding(4);
-
 
2133
			this->PicEase4->Name = L"PicEase4";
2051
			this->PicEase4->Name = L"PicEase4";
2134
			this->PicEase4->Size = System::Drawing::Size(32, 32);
2052
			this->PicEase4->Size = System::Drawing::Size(24, 25);
2135
			this->PicEase4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2053
			this->PicEase4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2136
			this->PicEase4->TabIndex = 16;
2054
			this->PicEase4->TabIndex = 16;
2137
			this->PicEase4->TabStop = false;
2055
			this->PicEase4->TabStop = false;
2138
			this->PicEase4->Click += gcnew System::EventHandler(this, &PackageForm::PicEase4_Click);
2056
			this->PicEase4->Click += gcnew System::EventHandler(this, &PackageForm::PicEase4_Click);
2139
			// 
2057
			// 
2140
			// PicEase3
2058
			// PicEase3
2141
			// 
2059
			// 
2142
			this->PicEase3->Dock = System::Windows::Forms::DockStyle::Left;
2060
			this->PicEase3->Dock = System::Windows::Forms::DockStyle::Left;
2143
			this->PicEase3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase3.Image")));
2061
			this->PicEase3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase3.Image")));
2144
			this->PicEase3->Location = System::Drawing::Point(68, 19);
2062
			this->PicEase3->Location = System::Drawing::Point(51, 16);
2145
			this->PicEase3->Margin = System::Windows::Forms::Padding(4);
-
 
2146
			this->PicEase3->Name = L"PicEase3";
2063
			this->PicEase3->Name = L"PicEase3";
2147
			this->PicEase3->Size = System::Drawing::Size(32, 32);
2064
			this->PicEase3->Size = System::Drawing::Size(24, 25);
2148
			this->PicEase3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2065
			this->PicEase3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2149
			this->PicEase3->TabIndex = 15;
2066
			this->PicEase3->TabIndex = 15;
2150
			this->PicEase3->TabStop = false;
2067
			this->PicEase3->TabStop = false;
2151
			this->PicEase3->Click += gcnew System::EventHandler(this, &PackageForm::PicEase3_Click);
2068
			this->PicEase3->Click += gcnew System::EventHandler(this, &PackageForm::PicEase3_Click);
2152
			// 
2069
			// 
2153
			// PicEase2
2070
			// PicEase2
2154
			// 
2071
			// 
2155
			this->PicEase2->Dock = System::Windows::Forms::DockStyle::Left;
2072
			this->PicEase2->Dock = System::Windows::Forms::DockStyle::Left;
2156
			this->PicEase2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase2.Image")));
2073
			this->PicEase2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase2.Image")));
2157
			this->PicEase2->Location = System::Drawing::Point(36, 19);
2074
			this->PicEase2->Location = System::Drawing::Point(27, 16);
2158
			this->PicEase2->Margin = System::Windows::Forms::Padding(4);
-
 
2159
			this->PicEase2->Name = L"PicEase2";
2075
			this->PicEase2->Name = L"PicEase2";
2160
			this->PicEase2->Size = System::Drawing::Size(32, 32);
2076
			this->PicEase2->Size = System::Drawing::Size(24, 25);
2161
			this->PicEase2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2077
			this->PicEase2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2162
			this->PicEase2->TabIndex = 14;
2078
			this->PicEase2->TabIndex = 14;
2163
			this->PicEase2->TabStop = false;
2079
			this->PicEase2->TabStop = false;
2164
			this->PicEase2->Click += gcnew System::EventHandler(this, &PackageForm::PicEase2_Click);
2080
			this->PicEase2->Click += gcnew System::EventHandler(this, &PackageForm::PicEase2_Click);
2165
			// 
2081
			// 
2166
			// PicEase1
2082
			// PicEase1
2167
			// 
2083
			// 
2168
			this->PicEase1->Dock = System::Windows::Forms::DockStyle::Left;
2084
			this->PicEase1->Dock = System::Windows::Forms::DockStyle::Left;
2169
			this->PicEase1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase1.Image")));
2085
			this->PicEase1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase1.Image")));
2170
			this->PicEase1->Location = System::Drawing::Point(4, 19);
2086
			this->PicEase1->Location = System::Drawing::Point(3, 16);
2171
			this->PicEase1->Margin = System::Windows::Forms::Padding(4);
-
 
2172
			this->PicEase1->Name = L"PicEase1";
2087
			this->PicEase1->Name = L"PicEase1";
2173
			this->PicEase1->Size = System::Drawing::Size(32, 32);
2088
			this->PicEase1->Size = System::Drawing::Size(24, 25);
2174
			this->PicEase1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2089
			this->PicEase1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2175
			this->PicEase1->TabIndex = 13;
2090
			this->PicEase1->TabIndex = 13;
2176
			this->PicEase1->TabStop = false;
2091
			this->PicEase1->TabStop = false;
2177
			this->PicEase1->Click += gcnew System::EventHandler(this, &PackageForm::PicEase1_Click);
2092
			this->PicEase1->Click += gcnew System::EventHandler(this, &PackageForm::PicEase1_Click);
2178
			// 
2093
			// 
Line 2180... Line 2095...
2180
			// 
2095
			// 
2181
			this->groupBox5->Controls->Add(this->ButIconDel);
2096
			this->groupBox5->Controls->Add(this->ButIconDel);
2182
			this->groupBox5->Controls->Add(this->DisplayIcon);
2097
			this->groupBox5->Controls->Add(this->DisplayIcon);
2183
			this->groupBox5->Controls->Add(this->button4);
2098
			this->groupBox5->Controls->Add(this->button4);
2184
			this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
2099
			this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
2185
			this->groupBox5->Location = System::Drawing::Point(204, 4);
2100
			this->groupBox5->Location = System::Drawing::Point(153, 3);
2186
			this->groupBox5->Margin = System::Windows::Forms::Padding(4);
-
 
2187
			this->groupBox5->Name = L"groupBox5";
2101
			this->groupBox5->Name = L"groupBox5";
2188
			this->groupBox5->Padding = System::Windows::Forms::Padding(4);
-
 
2189
			this->groupBox5->Size = System::Drawing::Size(76, 261);
2102
			this->groupBox5->Size = System::Drawing::Size(57, 210);
2190
			this->groupBox5->TabIndex = 2;
2103
			this->groupBox5->TabIndex = 2;
2191
			this->groupBox5->TabStop = false;
2104
			this->groupBox5->TabStop = false;
2192
			this->groupBox5->Text = L"Icon";
2105
			this->groupBox5->Text = L"Icon";
2193
			// 
2106
			// 
2194
			// ButIconDel
2107
			// ButIconDel
2195
			// 
2108
			// 
2196
			this->ButIconDel->Dock = System::Windows::Forms::DockStyle::Top;
2109
			this->ButIconDel->Dock = System::Windows::Forms::DockStyle::Top;
2197
			this->ButIconDel->Location = System::Drawing::Point(4, 104);
2110
			this->ButIconDel->Location = System::Drawing::Point(3, 85);
2198
			this->ButIconDel->Margin = System::Windows::Forms::Padding(4);
-
 
2199
			this->ButIconDel->Name = L"ButIconDel";
2111
			this->ButIconDel->Name = L"ButIconDel";
2200
			this->ButIconDel->Size = System::Drawing::Size(68, 28);
2112
			this->ButIconDel->Size = System::Drawing::Size(51, 23);
2201
			this->ButIconDel->TabIndex = 1;
2113
			this->ButIconDel->TabIndex = 1;
2202
			this->ButIconDel->Text = L"Del";
2114
			this->ButIconDel->Text = L"Del";
2203
			this->ButIconDel->UseVisualStyleBackColor = true;
2115
			this->ButIconDel->UseVisualStyleBackColor = true;
2204
			this->ButIconDel->Click += gcnew System::EventHandler(this, &PackageForm::ButIconDel_Click);
2116
			this->ButIconDel->Click += gcnew System::EventHandler(this, &PackageForm::ButIconDel_Click);
2205
			// 
2117
			// 
2206
			// DisplayIcon
2118
			// DisplayIcon
2207
			// 
2119
			// 
2208
			this->DisplayIcon->Dock = System::Windows::Forms::DockStyle::Top;
2120
			this->DisplayIcon->Dock = System::Windows::Forms::DockStyle::Top;
2209
			this->DisplayIcon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayIcon.Image")));
2121
			this->DisplayIcon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayIcon.Image")));
2210
			this->DisplayIcon->Location = System::Drawing::Point(4, 47);
2122
			this->DisplayIcon->Location = System::Drawing::Point(3, 39);
2211
			this->DisplayIcon->Margin = System::Windows::Forms::Padding(4);
-
 
2212
			this->DisplayIcon->Name = L"DisplayIcon";
2123
			this->DisplayIcon->Name = L"DisplayIcon";
2213
			this->DisplayIcon->Size = System::Drawing::Size(68, 57);
2124
			this->DisplayIcon->Size = System::Drawing::Size(51, 46);
2214
			this->DisplayIcon->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2125
			this->DisplayIcon->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2215
			this->DisplayIcon->TabIndex = 0;
2126
			this->DisplayIcon->TabIndex = 0;
2216
			this->DisplayIcon->TabStop = false;
2127
			this->DisplayIcon->TabStop = false;
2217
			// 
2128
			// 
2218
			// button4
2129
			// button4
2219
			// 
2130
			// 
2220
			this->button4->Dock = System::Windows::Forms::DockStyle::Top;
2131
			this->button4->Dock = System::Windows::Forms::DockStyle::Top;
2221
			this->button4->Location = System::Drawing::Point(4, 19);
2132
			this->button4->Location = System::Drawing::Point(3, 16);
2222
			this->button4->Margin = System::Windows::Forms::Padding(4);
-
 
2223
			this->button4->Name = L"button4";
2133
			this->button4->Name = L"button4";
2224
			this->button4->Size = System::Drawing::Size(68, 28);
2134
			this->button4->Size = System::Drawing::Size(51, 23);
2225
			this->button4->TabIndex = 2;
2135
			this->button4->TabIndex = 2;
2226
			this->button4->Text = L"Set";
2136
			this->button4->Text = L"Set";
2227
			this->button4->UseVisualStyleBackColor = true;
2137
			this->button4->UseVisualStyleBackColor = true;
2228
			this->button4->Click += gcnew System::EventHandler(this, &PackageForm::button4_Click);
2138
			this->button4->Click += gcnew System::EventHandler(this, &PackageForm::button4_Click);
2229
			// 
2139
			// 
2230
			// panel15
2140
			// panel15
2231
			// 
2141
			// 
2232
			this->panel15->Controls->Add(this->DisplayPicture);
2142
			this->panel15->Controls->Add(this->DisplayPicture);
2233
			this->panel15->Controls->Add(this->panel16);
2143
			this->panel15->Controls->Add(this->panel16);
2234
			this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
2144
			this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
2235
			this->panel15->Location = System::Drawing::Point(4, 4);
2145
			this->panel15->Location = System::Drawing::Point(3, 3);
2236
			this->panel15->Margin = System::Windows::Forms::Padding(4);
-
 
2237
			this->panel15->Name = L"panel15";
2146
			this->panel15->Name = L"panel15";
2238
			this->panel15->Size = System::Drawing::Size(200, 261);
2147
			this->panel15->Size = System::Drawing::Size(150, 210);
2239
			this->panel15->TabIndex = 1;
2148
			this->panel15->TabIndex = 1;
2240
			// 
2149
			// 
2241
			// DisplayPicture
2150
			// DisplayPicture
2242
			// 
2151
			// 
2243
			this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
2152
			this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
2244
			this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
2153
			this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
2245
			this->DisplayPicture->Location = System::Drawing::Point(0, 0);
2154
			this->DisplayPicture->Location = System::Drawing::Point(0, 0);
2246
			this->DisplayPicture->Margin = System::Windows::Forms::Padding(4);
-
 
2247
			this->DisplayPicture->Name = L"DisplayPicture";
2155
			this->DisplayPicture->Name = L"DisplayPicture";
2248
			this->DisplayPicture->Size = System::Drawing::Size(200, 225);
2156
			this->DisplayPicture->Size = System::Drawing::Size(150, 181);
2249
			this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2157
			this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2250
			this->DisplayPicture->TabIndex = 0;
2158
			this->DisplayPicture->TabIndex = 0;
2251
			this->DisplayPicture->TabStop = false;
2159
			this->DisplayPicture->TabStop = false;
2252
			// 
2160
			// 
2253
			// panel16
2161
			// panel16
Line 2255... Line 2163...
2255
			this->panel16->Controls->Add(this->ButPicAdd);
2163
			this->panel16->Controls->Add(this->ButPicAdd);
2256
			this->panel16->Controls->Add(this->ButPicDel);
2164
			this->panel16->Controls->Add(this->ButPicDel);
2257
			this->panel16->Controls->Add(this->ButPicNext);
2165
			this->panel16->Controls->Add(this->ButPicNext);
2258
			this->panel16->Controls->Add(this->ButPicBack);
2166
			this->panel16->Controls->Add(this->ButPicBack);
2259
			this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
2167
			this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
2260
			this->panel16->Location = System::Drawing::Point(0, 225);
2168
			this->panel16->Location = System::Drawing::Point(0, 181);
2261
			this->panel16->Margin = System::Windows::Forms::Padding(4);
-
 
2262
			this->panel16->Name = L"panel16";
2169
			this->panel16->Name = L"panel16";
2263
			this->panel16->Size = System::Drawing::Size(200, 36);
2170
			this->panel16->Size = System::Drawing::Size(150, 29);
2264
			this->panel16->TabIndex = 2;
2171
			this->panel16->TabIndex = 2;
2265
			// 
2172
			// 
2266
			// ButPicAdd
2173
			// ButPicAdd
2267
			// 
2174
			// 
2268
			this->ButPicAdd->Dock = System::Windows::Forms::DockStyle::Fill;
2175
			this->ButPicAdd->Dock = System::Windows::Forms::DockStyle::Fill;
2269
			this->ButPicAdd->Location = System::Drawing::Point(43, 0);
2176
			this->ButPicAdd->Location = System::Drawing::Point(32, 0);
2270
			this->ButPicAdd->Margin = System::Windows::Forms::Padding(4);
-
 
2271
			this->ButPicAdd->Name = L"ButPicAdd";
2177
			this->ButPicAdd->Name = L"ButPicAdd";
2272
			this->ButPicAdd->Size = System::Drawing::Size(65, 36);
2178
			this->ButPicAdd->Size = System::Drawing::Size(49, 29);
2273
			this->ButPicAdd->TabIndex = 4;
2179
			this->ButPicAdd->TabIndex = 4;
2274
			this->ButPicAdd->Text = L"Add";
2180
			this->ButPicAdd->Text = L"Add";
2275
			this->ButPicAdd->UseVisualStyleBackColor = true;
2181
			this->ButPicAdd->UseVisualStyleBackColor = true;
2276
			this->ButPicAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButPicAdd_Click);
2182
			this->ButPicAdd->Click += gcnew System::EventHandler(this, &PackageForm::ButPicAdd_Click);
2277
			// 
2183
			// 
2278
			// ButPicDel
2184
			// ButPicDel
2279
			// 
2185
			// 
2280
			this->ButPicDel->Dock = System::Windows::Forms::DockStyle::Right;
2186
			this->ButPicDel->Dock = System::Windows::Forms::DockStyle::Right;
2281
			this->ButPicDel->Enabled = false;
2187
			this->ButPicDel->Enabled = false;
2282
			this->ButPicDel->Location = System::Drawing::Point(108, 0);
2188
			this->ButPicDel->Location = System::Drawing::Point(81, 0);
2283
			this->ButPicDel->Margin = System::Windows::Forms::Padding(4);
-
 
2284
			this->ButPicDel->Name = L"ButPicDel";
2189
			this->ButPicDel->Name = L"ButPicDel";
2285
			this->ButPicDel->Size = System::Drawing::Size(53, 36);
2190
			this->ButPicDel->Size = System::Drawing::Size(40, 29);
2286
			this->ButPicDel->TabIndex = 3;
2191
			this->ButPicDel->TabIndex = 3;
2287
			this->ButPicDel->Text = L"Del";
2192
			this->ButPicDel->Text = L"Del";
2288
			this->ButPicDel->UseVisualStyleBackColor = true;
2193
			this->ButPicDel->UseVisualStyleBackColor = true;
2289
			this->ButPicDel->Click += gcnew System::EventHandler(this, &PackageForm::ButPicDel_Click);
2194
			this->ButPicDel->Click += gcnew System::EventHandler(this, &PackageForm::ButPicDel_Click);
2290
			// 
2195
			// 
2291
			// ButPicNext
2196
			// ButPicNext
2292
			// 
2197
			// 
2293
			this->ButPicNext->Dock = System::Windows::Forms::DockStyle::Right;
2198
			this->ButPicNext->Dock = System::Windows::Forms::DockStyle::Right;
2294
			this->ButPicNext->Enabled = false;
2199
			this->ButPicNext->Enabled = false;
2295
			this->ButPicNext->Location = System::Drawing::Point(161, 0);
2200
			this->ButPicNext->Location = System::Drawing::Point(121, 0);
2296
			this->ButPicNext->Margin = System::Windows::Forms::Padding(4);
-
 
2297
			this->ButPicNext->Name = L"ButPicNext";
2201
			this->ButPicNext->Name = L"ButPicNext";
2298
			this->ButPicNext->Size = System::Drawing::Size(39, 36);
2202
			this->ButPicNext->Size = System::Drawing::Size(29, 29);
2299
			this->ButPicNext->TabIndex = 2;
2203
			this->ButPicNext->TabIndex = 2;
2300
			this->ButPicNext->Text = L"->";
2204
			this->ButPicNext->Text = L"->";
2301
			this->ButPicNext->UseVisualStyleBackColor = true;
2205
			this->ButPicNext->UseVisualStyleBackColor = true;
2302
			this->ButPicNext->Click += gcnew System::EventHandler(this, &PackageForm::ButPicNext_Click);
2206
			this->ButPicNext->Click += gcnew System::EventHandler(this, &PackageForm::ButPicNext_Click);
2303
			// 
2207
			// 
2304
			// ButPicBack
2208
			// ButPicBack
2305
			// 
2209
			// 
2306
			this->ButPicBack->Dock = System::Windows::Forms::DockStyle::Left;
2210
			this->ButPicBack->Dock = System::Windows::Forms::DockStyle::Left;
2307
			this->ButPicBack->Enabled = false;
2211
			this->ButPicBack->Enabled = false;
2308
			this->ButPicBack->Location = System::Drawing::Point(0, 0);
2212
			this->ButPicBack->Location = System::Drawing::Point(0, 0);
2309
			this->ButPicBack->Margin = System::Windows::Forms::Padding(4);
-
 
2310
			this->ButPicBack->Name = L"ButPicBack";
2213
			this->ButPicBack->Name = L"ButPicBack";
2311
			this->ButPicBack->Size = System::Drawing::Size(43, 36);
2214
			this->ButPicBack->Size = System::Drawing::Size(32, 29);
2312
			this->ButPicBack->TabIndex = 1;
2215
			this->ButPicBack->TabIndex = 1;
2313
			this->ButPicBack->Text = L"<-";
2216
			this->ButPicBack->Text = L"<-";
2314
			this->ButPicBack->UseVisualStyleBackColor = true;
2217
			this->ButPicBack->UseVisualStyleBackColor = true;
2315
			this->ButPicBack->Click += gcnew System::EventHandler(this, &PackageForm::ButPicBack_Click);
2218
			this->ButPicBack->Click += gcnew System::EventHandler(this, &PackageForm::ButPicBack_Click);
2316
			// 
2219
			// 
2317
			// tabPage2
2220
			// tabPage2
2318
			// 
2221
			// 
2319
			this->tabPage2->Controls->Add(this->ListNames);
2222
			this->tabPage2->Controls->Add(this->ListNames);
2320
			this->tabPage2->Controls->Add(this->groupBox4);
2223
			this->tabPage2->Controls->Add(this->groupBox4);
2321
			this->tabPage2->Location = System::Drawing::Point(4, 25);
2224
			this->tabPage2->Location = System::Drawing::Point(4, 22);
2322
			this->tabPage2->Margin = System::Windows::Forms::Padding(4);
-
 
2323
			this->tabPage2->Name = L"tabPage2";
2225
			this->tabPage2->Name = L"tabPage2";
2324
			this->tabPage2->Padding = System::Windows::Forms::Padding(4);
2226
			this->tabPage2->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
2325
			this->tabPage2->Size = System::Drawing::Size(999, 269);
2227
			this->tabPage2->Size = System::Drawing::Size(747, 216);
2326
			this->tabPage2->TabIndex = 3;
2228
			this->tabPage2->TabIndex = 3;
2327
			this->tabPage2->Text = L"Advanced";
2229
			this->tabPage2->Text = L"Advanced";
2328
			this->tabPage2->UseVisualStyleBackColor = true;
2230
			this->tabPage2->UseVisualStyleBackColor = true;
2329
			// 
2231
			// 
2330
			// ListNames
2232
			// ListNames
Line 2332... Line 2234...
2332
			this->ListNames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader7, this->columnHeader8 });
2234
			this->ListNames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader7, this->columnHeader8 });
2333
			this->ListNames->ContextMenuStrip = this->ContextLangName;
2235
			this->ListNames->ContextMenuStrip = this->ContextLangName;
2334
			this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
2236
			this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
2335
			this->ListNames->FullRowSelect = true;
2237
			this->ListNames->FullRowSelect = true;
2336
			this->ListNames->HideSelection = false;
2238
			this->ListNames->HideSelection = false;
2337
			this->ListNames->Location = System::Drawing::Point(4, 149);
2239
			this->ListNames->Location = System::Drawing::Point(3, 121);
2338
			this->ListNames->Margin = System::Windows::Forms::Padding(4);
-
 
2339
			this->ListNames->Name = L"ListNames";
2240
			this->ListNames->Name = L"ListNames";
2340
			this->ListNames->Size = System::Drawing::Size(991, 116);
2241
			this->ListNames->Size = System::Drawing::Size(741, 92);
2341
			this->ListNames->TabIndex = 1;
2242
			this->ListNames->TabIndex = 1;
2342
			this->ListNames->UseCompatibleStateImageBehavior = false;
2243
			this->ListNames->UseCompatibleStateImageBehavior = false;
2343
			this->ListNames->View = System::Windows::Forms::View::Details;
2244
			this->ListNames->View = System::Windows::Forms::View::Details;
2344
			this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
2245
			this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
2345
			// 
2246
			// 
Line 2359... Line 2260...
2359
			this->ContextLangName->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2260
			this->ContextLangName->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2360
				this->addToolStripMenuItem,
2261
				this->addToolStripMenuItem,
2361
					this->toolStripSeparator2, this->ContextEditName, this->ContextRemoveName, this->ContextNameSep, this->clearAllToolStripMenuItem1
2262
					this->toolStripSeparator2, this->ContextEditName, this->ContextRemoveName, this->ContextNameSep, this->clearAllToolStripMenuItem1
2362
			});
2263
			});
2363
			this->ContextLangName->Name = L"ContextLangName";
2264
			this->ContextLangName->Name = L"ContextLangName";
2364
			this->ContextLangName->Size = System::Drawing::Size(225, 168);
2265
			this->ContextLangName->Size = System::Drawing::Size(195, 168);
2365
			this->ContextLangName->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextLangName_Opening);
2266
			this->ContextLangName->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextLangName_Opening);
2366
			// 
2267
			// 
2367
			// addToolStripMenuItem
2268
			// addToolStripMenuItem
2368
			// 
2269
			// 
2369
			this->addToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addToolStripMenuItem.Image")));
2270
			this->addToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addToolStripMenuItem.Image")));
2370
			this->addToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2271
			this->addToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2371
			this->addToolStripMenuItem->Name = L"addToolStripMenuItem";
2272
			this->addToolStripMenuItem->Name = L"addToolStripMenuItem";
2372
			this->addToolStripMenuItem->Size = System::Drawing::Size(224, 38);
2273
			this->addToolStripMenuItem->Size = System::Drawing::Size(194, 38);
2373
			this->addToolStripMenuItem->Text = L"Add Package Name";
2274
			this->addToolStripMenuItem->Text = L"Add Package Name";
2374
			this->addToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addToolStripMenuItem_Click);
2275
			this->addToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addToolStripMenuItem_Click);
2375
			// 
2276
			// 
2376
			// toolStripSeparator2
2277
			// toolStripSeparator2
2377
			// 
2278
			// 
2378
			this->toolStripSeparator2->Name = L"toolStripSeparator2";
2279
			this->toolStripSeparator2->Name = L"toolStripSeparator2";
2379
			this->toolStripSeparator2->Size = System::Drawing::Size(221, 6);
2280
			this->toolStripSeparator2->Size = System::Drawing::Size(191, 6);
2380
			// 
2281
			// 
2381
			// ContextEditName
2282
			// ContextEditName
2382
			// 
2283
			// 
2383
			this->ContextEditName->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextEditName.Image")));
2284
			this->ContextEditName->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextEditName.Image")));
2384
			this->ContextEditName->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2285
			this->ContextEditName->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2385
			this->ContextEditName->Name = L"ContextEditName";
2286
			this->ContextEditName->Name = L"ContextEditName";
2386
			this->ContextEditName->Size = System::Drawing::Size(224, 38);
2287
			this->ContextEditName->Size = System::Drawing::Size(194, 38);
2387
			this->ContextEditName->Text = L"Edit Name";
2288
			this->ContextEditName->Text = L"Edit Name";
2388
			this->ContextEditName->Click += gcnew System::EventHandler(this, &PackageForm::ContextEditName_Click);
2289
			this->ContextEditName->Click += gcnew System::EventHandler(this, &PackageForm::ContextEditName_Click);
2389
			// 
2290
			// 
2390
			// ContextRemoveName
2291
			// ContextRemoveName
2391
			// 
2292
			// 
2392
			this->ContextRemoveName->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextRemoveName.Image")));
2293
			this->ContextRemoveName->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextRemoveName.Image")));
2393
			this->ContextRemoveName->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2294
			this->ContextRemoveName->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2394
			this->ContextRemoveName->Name = L"ContextRemoveName";
2295
			this->ContextRemoveName->Name = L"ContextRemoveName";
2395
			this->ContextRemoveName->Size = System::Drawing::Size(224, 38);
2296
			this->ContextRemoveName->Size = System::Drawing::Size(194, 38);
2396
			this->ContextRemoveName->Text = L"Remove Selected";
2297
			this->ContextRemoveName->Text = L"Remove Selected";
2397
			this->ContextRemoveName->Click += gcnew System::EventHandler(this, &PackageForm::ContextRemoveName_Click);
2298
			this->ContextRemoveName->Click += gcnew System::EventHandler(this, &PackageForm::ContextRemoveName_Click);
2398
			// 
2299
			// 
2399
			// ContextNameSep
2300
			// ContextNameSep
2400
			// 
2301
			// 
2401
			this->ContextNameSep->Name = L"ContextNameSep";
2302
			this->ContextNameSep->Name = L"ContextNameSep";
2402
			this->ContextNameSep->Size = System::Drawing::Size(221, 6);
2303
			this->ContextNameSep->Size = System::Drawing::Size(191, 6);
2403
			// 
2304
			// 
2404
			// clearAllToolStripMenuItem1
2305
			// clearAllToolStripMenuItem1
2405
			// 
2306
			// 
2406
			this->clearAllToolStripMenuItem1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"clearAllToolStripMenuItem1.Image")));
2307
			this->clearAllToolStripMenuItem1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"clearAllToolStripMenuItem1.Image")));
2407
			this->clearAllToolStripMenuItem1->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2308
			this->clearAllToolStripMenuItem1->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2408
			this->clearAllToolStripMenuItem1->Name = L"clearAllToolStripMenuItem1";
2309
			this->clearAllToolStripMenuItem1->Name = L"clearAllToolStripMenuItem1";
2409
			this->clearAllToolStripMenuItem1->Size = System::Drawing::Size(224, 38);
2310
			this->clearAllToolStripMenuItem1->Size = System::Drawing::Size(194, 38);
2410
			this->clearAllToolStripMenuItem1->Text = L"Clear All";
2311
			this->clearAllToolStripMenuItem1->Text = L"Clear All";
2411
			this->clearAllToolStripMenuItem1->Click += gcnew System::EventHandler(this, &PackageForm::clearAllToolStripMenuItem1_Click);
2312
			this->clearAllToolStripMenuItem1->Click += gcnew System::EventHandler(this, &PackageForm::clearAllToolStripMenuItem1_Click);
2412
			// 
2313
			// 
2413
			// groupBox4
2314
			// groupBox4
2414
			// 
2315
			// 
2415
			this->groupBox4->Controls->Add(this->ListMirrors);
2316
			this->groupBox4->Controls->Add(this->ListMirrors);
2416
			this->groupBox4->Controls->Add(this->panel14);
2317
			this->groupBox4->Controls->Add(this->panel14);
2417
			this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
2318
			this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
2418
			this->groupBox4->Location = System::Drawing::Point(4, 4);
2319
			this->groupBox4->Location = System::Drawing::Point(3, 3);
2419
			this->groupBox4->Margin = System::Windows::Forms::Padding(4);
-
 
2420
			this->groupBox4->Name = L"groupBox4";
2320
			this->groupBox4->Name = L"groupBox4";
2421
			this->groupBox4->Padding = System::Windows::Forms::Padding(4);
-
 
2422
			this->groupBox4->Size = System::Drawing::Size(991, 145);
2321
			this->groupBox4->Size = System::Drawing::Size(741, 118);
2423
			this->groupBox4->TabIndex = 0;
2322
			this->groupBox4->TabIndex = 0;
2424
			this->groupBox4->TabStop = false;
2323
			this->groupBox4->TabStop = false;
2425
			this->groupBox4->Text = L"Automatic Update";
2324
			this->groupBox4->Text = L"Automatic Update";
2426
			// 
2325
			// 
2427
			// ListMirrors
2326
			// ListMirrors
Line 2431... Line 2330...
2431
			this->ListMirrors->Dock = System::Windows::Forms::DockStyle::Fill;
2330
			this->ListMirrors->Dock = System::Windows::Forms::DockStyle::Fill;
2432
			this->ListMirrors->FullRowSelect = true;
2331
			this->ListMirrors->FullRowSelect = true;
2433
			this->ListMirrors->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2332
			this->ListMirrors->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2434
			this->ListMirrors->HideSelection = false;
2333
			this->ListMirrors->HideSelection = false;
2435
			this->ListMirrors->LabelWrap = false;
2334
			this->ListMirrors->LabelWrap = false;
2436
			this->ListMirrors->Location = System::Drawing::Point(4, 49);
2335
			this->ListMirrors->Location = System::Drawing::Point(3, 40);
2437
			this->ListMirrors->Margin = System::Windows::Forms::Padding(4);
-
 
2438
			this->ListMirrors->MultiSelect = false;
2336
			this->ListMirrors->MultiSelect = false;
2439
			this->ListMirrors->Name = L"ListMirrors";
2337
			this->ListMirrors->Name = L"ListMirrors";
2440
			this->ListMirrors->ShowGroups = false;
2338
			this->ListMirrors->ShowGroups = false;
2441
			this->ListMirrors->Size = System::Drawing::Size(983, 92);
2339
			this->ListMirrors->Size = System::Drawing::Size(735, 75);
2442
			this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
2340
			this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
2443
			this->ListMirrors->TabIndex = 1;
2341
			this->ListMirrors->TabIndex = 1;
2444
			this->ListMirrors->UseCompatibleStateImageBehavior = false;
2342
			this->ListMirrors->UseCompatibleStateImageBehavior = false;
2445
			this->ListMirrors->View = System::Windows::Forms::View::Details;
2343
			this->ListMirrors->View = System::Windows::Forms::View::Details;
2446
			this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
2344
			this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
Line 2456... Line 2354...
2456
			this->ContextMirror->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(4) {
2354
			this->ContextMirror->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(4) {
2457
				this->addMirrorToolStripMenuItem,
2355
				this->addMirrorToolStripMenuItem,
2458
					this->toolStripSeparator1, this->ContextRemoveMirror, this->clearAllToolStripMenuItem
2356
					this->toolStripSeparator1, this->ContextRemoveMirror, this->clearAllToolStripMenuItem
2459
			});
2357
			});
2460
			this->ContextMirror->Name = L"ContextMirror";
2358
			this->ContextMirror->Name = L"ContextMirror";
2461
			this->ContextMirror->Size = System::Drawing::Size(225, 124);
2359
			this->ContextMirror->Size = System::Drawing::Size(194, 124);
2462
			this->ContextMirror->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextMirror_Opening);
2360
			this->ContextMirror->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextMirror_Opening);
2463
			// 
2361
			// 
2464
			// addMirrorToolStripMenuItem
2362
			// addMirrorToolStripMenuItem
2465
			// 
2363
			// 
2466
			this->addMirrorToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addMirrorToolStripMenuItem.Image")));
2364
			this->addMirrorToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addMirrorToolStripMenuItem.Image")));
2467
			this->addMirrorToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2365
			this->addMirrorToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2468
			this->addMirrorToolStripMenuItem->Name = L"addMirrorToolStripMenuItem";
2366
			this->addMirrorToolStripMenuItem->Name = L"addMirrorToolStripMenuItem";
2469
			this->addMirrorToolStripMenuItem->Size = System::Drawing::Size(224, 38);
2367
			this->addMirrorToolStripMenuItem->Size = System::Drawing::Size(193, 38);
2470
			this->addMirrorToolStripMenuItem->Text = L"Add Mirror Address";
2368
			this->addMirrorToolStripMenuItem->Text = L"Add Mirror Address";
2471
			this->addMirrorToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addMirrorToolStripMenuItem_Click);
2369
			this->addMirrorToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addMirrorToolStripMenuItem_Click);
2472
			// 
2370
			// 
2473
			// toolStripSeparator1
2371
			// toolStripSeparator1
2474
			// 
2372
			// 
2475
			this->toolStripSeparator1->Name = L"toolStripSeparator1";
2373
			this->toolStripSeparator1->Name = L"toolStripSeparator1";
2476
			this->toolStripSeparator1->Size = System::Drawing::Size(221, 6);
2374
			this->toolStripSeparator1->Size = System::Drawing::Size(190, 6);
2477
			// 
2375
			// 
2478
			// ContextRemoveMirror
2376
			// ContextRemoveMirror
2479
			// 
2377
			// 
2480
			this->ContextRemoveMirror->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextRemoveMirror.Image")));
2378
			this->ContextRemoveMirror->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextRemoveMirror.Image")));
2481
			this->ContextRemoveMirror->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2379
			this->ContextRemoveMirror->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2482
			this->ContextRemoveMirror->Name = L"ContextRemoveMirror";
2380
			this->ContextRemoveMirror->Name = L"ContextRemoveMirror";
2483
			this->ContextRemoveMirror->Size = System::Drawing::Size(224, 38);
2381
			this->ContextRemoveMirror->Size = System::Drawing::Size(193, 38);
2484
			this->ContextRemoveMirror->Text = L"Remove Selected";
2382
			this->ContextRemoveMirror->Text = L"Remove Selected";
2485
			this->ContextRemoveMirror->Click += gcnew System::EventHandler(this, &PackageForm::ContextRemoveMirror_Click);
2383
			this->ContextRemoveMirror->Click += gcnew System::EventHandler(this, &PackageForm::ContextRemoveMirror_Click);
2486
			// 
2384
			// 
2487
			// clearAllToolStripMenuItem
2385
			// clearAllToolStripMenuItem
2488
			// 
2386
			// 
2489
			this->clearAllToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"clearAllToolStripMenuItem.Image")));
2387
			this->clearAllToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"clearAllToolStripMenuItem.Image")));
2490
			this->clearAllToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2388
			this->clearAllToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2491
			this->clearAllToolStripMenuItem->Name = L"clearAllToolStripMenuItem";
2389
			this->clearAllToolStripMenuItem->Name = L"clearAllToolStripMenuItem";
2492
			this->clearAllToolStripMenuItem->Size = System::Drawing::Size(224, 38);
2390
			this->clearAllToolStripMenuItem->Size = System::Drawing::Size(193, 38);
2493
			this->clearAllToolStripMenuItem->Text = L"Clear All";
2391
			this->clearAllToolStripMenuItem->Text = L"Clear All";
2494
			this->clearAllToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::clearAllToolStripMenuItem_Click);
2392
			this->clearAllToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::clearAllToolStripMenuItem_Click);
2495
			// 
2393
			// 
2496
			// panel14
2394
			// panel14
2497
			// 
2395
			// 
2498
			this->panel14->Controls->Add(this->TextWebAddress);
2396
			this->panel14->Controls->Add(this->TextWebAddress);
2499
			this->panel14->Controls->Add(this->label14);
2397
			this->panel14->Controls->Add(this->label14);
2500
			this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
2398
			this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
2501
			this->panel14->Location = System::Drawing::Point(4, 19);
2399
			this->panel14->Location = System::Drawing::Point(3, 16);
2502
			this->panel14->Margin = System::Windows::Forms::Padding(4);
-
 
2503
			this->panel14->Name = L"panel14";
2400
			this->panel14->Name = L"panel14";
2504
			this->panel14->Size = System::Drawing::Size(983, 30);
2401
			this->panel14->Size = System::Drawing::Size(735, 24);
2505
			this->panel14->TabIndex = 2;
2402
			this->panel14->TabIndex = 2;
2506
			// 
2403
			// 
2507
			// TextWebAddress
2404
			// TextWebAddress
2508
			// 
2405
			// 
2509
			this->TextWebAddress->DetectUrls = false;
2406
			this->TextWebAddress->DetectUrls = false;
2510
			this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
2407
			this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
2511
			this->TextWebAddress->Location = System::Drawing::Point(189, 0);
2408
			this->TextWebAddress->Location = System::Drawing::Point(142, 0);
2512
			this->TextWebAddress->Margin = System::Windows::Forms::Padding(4);
-
 
2513
			this->TextWebAddress->Name = L"TextWebAddress";
2409
			this->TextWebAddress->Name = L"TextWebAddress";
2514
			this->TextWebAddress->Size = System::Drawing::Size(794, 30);
2410
			this->TextWebAddress->Size = System::Drawing::Size(593, 24);
2515
			this->TextWebAddress->TabIndex = 1;
2411
			this->TextWebAddress->TabIndex = 1;
2516
			this->TextWebAddress->Text = L"";
2412
			this->TextWebAddress->Text = L"";
2517
			this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
2413
			this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
2518
			// 
2414
			// 
2519
			// label14
2415
			// label14
2520
			// 
2416
			// 
2521
			this->label14->Dock = System::Windows::Forms::DockStyle::Left;
2417
			this->label14->Dock = System::Windows::Forms::DockStyle::Left;
2522
			this->label14->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
2418
			this->label14->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
2523
				static_cast<System::Byte>(0)));
2419
				static_cast<System::Byte>(0)));
2524
			this->label14->Location = System::Drawing::Point(0, 0);
2420
			this->label14->Location = System::Drawing::Point(0, 0);
2525
			this->label14->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
2526
			this->label14->Name = L"label14";
2421
			this->label14->Name = L"label14";
2527
			this->label14->Size = System::Drawing::Size(189, 30);
2422
			this->label14->Size = System::Drawing::Size(142, 24);
2528
			this->label14->TabIndex = 0;
2423
			this->label14->TabIndex = 0;
2529
			this->label14->Text = L"Primary Address";
2424
			this->label14->Text = L"Primary Address";
2530
			// 
2425
			// 
2531
			// tabPage4
2426
			// tabPage4
2532
			// 
2427
			// 
2533
			this->tabPage4->Controls->Add(this->ListDep);
2428
			this->tabPage4->Controls->Add(this->ListDep);
2534
			this->tabPage4->Location = System::Drawing::Point(4, 25);
2429
			this->tabPage4->Location = System::Drawing::Point(4, 22);
2535
			this->tabPage4->Margin = System::Windows::Forms::Padding(4);
-
 
2536
			this->tabPage4->Name = L"tabPage4";
2430
			this->tabPage4->Name = L"tabPage4";
2537
			this->tabPage4->Padding = System::Windows::Forms::Padding(20, 18, 20, 18);
2431
			this->tabPage4->Padding = System::Windows::Forms::Padding(15, 15, 15, 15);
2538
			this->tabPage4->Size = System::Drawing::Size(999, 269);
2432
			this->tabPage4->Size = System::Drawing::Size(747, 216);
2539
			this->tabPage4->TabIndex = 9;
2433
			this->tabPage4->TabIndex = 9;
2540
			this->tabPage4->Text = L"Dependacies";
2434
			this->tabPage4->Text = L"Dependacies";
2541
			this->tabPage4->UseVisualStyleBackColor = true;
2435
			this->tabPage4->UseVisualStyleBackColor = true;
2542
			// 
2436
			// 
2543
			// ListDep
2437
			// ListDep
Line 2548... Line 2442...
2548
			});
2442
			});
2549
			this->ListDep->ContextMenuStrip = this->ContextDep;
2443
			this->ListDep->ContextMenuStrip = this->ContextDep;
2550
			this->ListDep->Dock = System::Windows::Forms::DockStyle::Fill;
2444
			this->ListDep->Dock = System::Windows::Forms::DockStyle::Fill;
2551
			this->ListDep->FullRowSelect = true;
2445
			this->ListDep->FullRowSelect = true;
2552
			this->ListDep->HideSelection = false;
2446
			this->ListDep->HideSelection = false;
2553
			this->ListDep->Location = System::Drawing::Point(20, 18);
2447
			this->ListDep->Location = System::Drawing::Point(15, 15);
2554
			this->ListDep->Margin = System::Windows::Forms::Padding(4);
-
 
2555
			this->ListDep->MultiSelect = false;
2448
			this->ListDep->MultiSelect = false;
2556
			this->ListDep->Name = L"ListDep";
2449
			this->ListDep->Name = L"ListDep";
2557
			this->ListDep->Size = System::Drawing::Size(959, 233);
2450
			this->ListDep->Size = System::Drawing::Size(717, 186);
2558
			this->ListDep->TabIndex = 0;
2451
			this->ListDep->TabIndex = 0;
2559
			this->ListDep->UseCompatibleStateImageBehavior = false;
2452
			this->ListDep->UseCompatibleStateImageBehavior = false;
2560
			this->ListDep->View = System::Windows::Forms::View::Details;
2453
			this->ListDep->View = System::Windows::Forms::View::Details;
2561
			this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
2454
			this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
2562
			// 
2455
			// 
Line 2578... Line 2471...
2578
			this->ContextDep->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2471
			this->ContextDep->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2579
				this->addToolStripMenuItem1,
2472
				this->addToolStripMenuItem1,
2580
					this->ContextDepSep1, this->editSelectedToolStripMenuItem, this->ContextDepRemove, this->ContextDepSep2, this->ContextDepClear
2473
					this->ContextDepSep1, this->editSelectedToolStripMenuItem, this->ContextDepRemove, this->ContextDepSep2, this->ContextDepClear
2581
			});
2474
			});
2582
			this->ContextDep->Name = L"ContextDep";
2475
			this->ContextDep->Name = L"ContextDep";
2583
			this->ContextDep->Size = System::Drawing::Size(210, 168);
2476
			this->ContextDep->Size = System::Drawing::Size(181, 168);
2584
			this->ContextDep->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextDep_Opening);
2477
			this->ContextDep->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextDep_Opening);
2585
			// 
2478
			// 
2586
			// addToolStripMenuItem1
2479
			// addToolStripMenuItem1
2587
			// 
2480
			// 
2588
			this->addToolStripMenuItem1->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(2) {
2481
			this->addToolStripMenuItem1->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(2) {
Line 2590... Line 2483...
2590
					this->fromPackageToolStripMenuItem
2483
					this->fromPackageToolStripMenuItem
2591
			});
2484
			});
2592
			this->addToolStripMenuItem1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addToolStripMenuItem1.Image")));
2485
			this->addToolStripMenuItem1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addToolStripMenuItem1.Image")));
2593
			this->addToolStripMenuItem1->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2486
			this->addToolStripMenuItem1->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2594
			this->addToolStripMenuItem1->Name = L"addToolStripMenuItem1";
2487
			this->addToolStripMenuItem1->Name = L"addToolStripMenuItem1";
2595
			this->addToolStripMenuItem1->Size = System::Drawing::Size(209, 38);
2488
			this->addToolStripMenuItem1->Size = System::Drawing::Size(180, 38);
2596
			this->addToolStripMenuItem1->Text = L"Add";
2489
			this->addToolStripMenuItem1->Text = L"Add";
2597
			// 
2490
			// 
2598
			// manualToolStripMenuItem
2491
			// manualToolStripMenuItem
2599
			// 
2492
			// 
2600
			this->manualToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"manualToolStripMenuItem.Image")));
2493
			this->manualToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"manualToolStripMenuItem.Image")));
2601
			this->manualToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2494
			this->manualToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2602
			this->manualToolStripMenuItem->Name = L"manualToolStripMenuItem";
2495
			this->manualToolStripMenuItem->Name = L"manualToolStripMenuItem";
2603
			this->manualToolStripMenuItem->Size = System::Drawing::Size(188, 38);
2496
			this->manualToolStripMenuItem->Size = System::Drawing::Size(165, 38);
2604
			this->manualToolStripMenuItem->Text = L"Manual";
2497
			this->manualToolStripMenuItem->Text = L"Manual";
2605
			this->manualToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::manualToolStripMenuItem_Click);
2498
			this->manualToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::manualToolStripMenuItem_Click);
2606
			// 
2499
			// 
2607
			// fromPackageToolStripMenuItem
2500
			// fromPackageToolStripMenuItem
2608
			// 
2501
			// 
2609
			this->fromPackageToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromPackageToolStripMenuItem.Image")));
2502
			this->fromPackageToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromPackageToolStripMenuItem.Image")));
2610
			this->fromPackageToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2503
			this->fromPackageToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2611
			this->fromPackageToolStripMenuItem->Name = L"fromPackageToolStripMenuItem";
2504
			this->fromPackageToolStripMenuItem->Name = L"fromPackageToolStripMenuItem";
2612
			this->fromPackageToolStripMenuItem->Size = System::Drawing::Size(188, 38);
2505
			this->fromPackageToolStripMenuItem->Size = System::Drawing::Size(165, 38);
2613
			this->fromPackageToolStripMenuItem->Text = L"From Package";
2506
			this->fromPackageToolStripMenuItem->Text = L"From Package";
2614
			this->fromPackageToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromPackageToolStripMenuItem_Click);
2507
			this->fromPackageToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromPackageToolStripMenuItem_Click);
2615
			// 
2508
			// 
2616
			// ContextDepSep1
2509
			// ContextDepSep1
2617
			// 
2510
			// 
2618
			this->ContextDepSep1->Name = L"ContextDepSep1";
2511
			this->ContextDepSep1->Name = L"ContextDepSep1";
2619
			this->ContextDepSep1->Size = System::Drawing::Size(206, 6);
2512
			this->ContextDepSep1->Size = System::Drawing::Size(177, 6);
2620
			// 
2513
			// 
2621
			// editSelectedToolStripMenuItem
2514
			// editSelectedToolStripMenuItem
2622
			// 
2515
			// 
2623
			this->editSelectedToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"editSelectedToolStripMenuItem.Image")));
2516
			this->editSelectedToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"editSelectedToolStripMenuItem.Image")));
2624
			this->editSelectedToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2517
			this->editSelectedToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2625
			this->editSelectedToolStripMenuItem->Name = L"editSelectedToolStripMenuItem";
2518
			this->editSelectedToolStripMenuItem->Name = L"editSelectedToolStripMenuItem";
2626
			this->editSelectedToolStripMenuItem->Size = System::Drawing::Size(209, 38);
2519
			this->editSelectedToolStripMenuItem->Size = System::Drawing::Size(180, 38);
2627
			this->editSelectedToolStripMenuItem->Text = L"Edit Selected";
2520
			this->editSelectedToolStripMenuItem->Text = L"Edit Selected";
2628
			this->editSelectedToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::editSelectedToolStripMenuItem_Click);
2521
			this->editSelectedToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::editSelectedToolStripMenuItem_Click);
2629
			// 
2522
			// 
2630
			// ContextDepRemove
2523
			// ContextDepRemove
2631
			// 
2524
			// 
2632
			this->ContextDepRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextDepRemove.Image")));
2525
			this->ContextDepRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextDepRemove.Image")));
2633
			this->ContextDepRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2526
			this->ContextDepRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2634
			this->ContextDepRemove->Name = L"ContextDepRemove";
2527
			this->ContextDepRemove->Name = L"ContextDepRemove";
2635
			this->ContextDepRemove->Size = System::Drawing::Size(209, 38);
2528
			this->ContextDepRemove->Size = System::Drawing::Size(180, 38);
2636
			this->ContextDepRemove->Text = L"Remove Selected";
2529
			this->ContextDepRemove->Text = L"Remove Selected";
2637
			this->ContextDepRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepRemove_Click);
2530
			this->ContextDepRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepRemove_Click);
2638
			// 
2531
			// 
2639
			// ContextDepSep2
2532
			// ContextDepSep2
2640
			// 
2533
			// 
2641
			this->ContextDepSep2->Name = L"ContextDepSep2";
2534
			this->ContextDepSep2->Name = L"ContextDepSep2";
2642
			this->ContextDepSep2->Size = System::Drawing::Size(206, 6);
2535
			this->ContextDepSep2->Size = System::Drawing::Size(177, 6);
2643
			// 
2536
			// 
2644
			// ContextDepClear
2537
			// ContextDepClear
2645
			// 
2538
			// 
2646
			this->ContextDepClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextDepClear.Image")));
2539
			this->ContextDepClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextDepClear.Image")));
2647
			this->ContextDepClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2540
			this->ContextDepClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2648
			this->ContextDepClear->Name = L"ContextDepClear";
2541
			this->ContextDepClear->Name = L"ContextDepClear";
2649
			this->ContextDepClear->Size = System::Drawing::Size(209, 38);
2542
			this->ContextDepClear->Size = System::Drawing::Size(180, 38);
2650
			this->ContextDepClear->Text = L"Clear All";
2543
			this->ContextDepClear->Text = L"Clear All";
2651
			this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
2544
			this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
2652
			// 
2545
			// 
2653
			// PageWares
2546
			// PageWares
2654
			// 
2547
			// 
2655
			this->PageWares->Controls->Add(this->splitContainer1);
2548
			this->PageWares->Controls->Add(this->splitContainer1);
2656
			this->PageWares->Location = System::Drawing::Point(4, 25);
2549
			this->PageWares->Location = System::Drawing::Point(4, 22);
2657
			this->PageWares->Margin = System::Windows::Forms::Padding(4);
-
 
2658
			this->PageWares->Name = L"PageWares";
2550
			this->PageWares->Name = L"PageWares";
2659
			this->PageWares->Padding = System::Windows::Forms::Padding(4);
2551
			this->PageWares->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
2660
			this->PageWares->Size = System::Drawing::Size(999, 269);
2552
			this->PageWares->Size = System::Drawing::Size(747, 216);
2661
			this->PageWares->TabIndex = 5;
2553
			this->PageWares->TabIndex = 5;
2662
			this->PageWares->Text = L"Custom Wares";
2554
			this->PageWares->Text = L"Custom Wares";
2663
			this->PageWares->UseVisualStyleBackColor = true;
2555
			this->PageWares->UseVisualStyleBackColor = true;
2664
			// 
2556
			// 
2665
			// splitContainer1
2557
			// splitContainer1
2666
			// 
2558
			// 
2667
			this->splitContainer1->Dock = System::Windows::Forms::DockStyle::Fill;
2559
			this->splitContainer1->Dock = System::Windows::Forms::DockStyle::Fill;
2668
			this->splitContainer1->Location = System::Drawing::Point(4, 4);
2560
			this->splitContainer1->Location = System::Drawing::Point(3, 3);
2669
			this->splitContainer1->Margin = System::Windows::Forms::Padding(4);
-
 
2670
			this->splitContainer1->Name = L"splitContainer1";
2561
			this->splitContainer1->Name = L"splitContainer1";
2671
			this->splitContainer1->Orientation = System::Windows::Forms::Orientation::Horizontal;
2562
			this->splitContainer1->Orientation = System::Windows::Forms::Orientation::Horizontal;
2672
			// 
2563
			// 
2673
			// splitContainer1.Panel1
2564
			// splitContainer1.Panel1
2674
			// 
2565
			// 
2675
			this->splitContainer1->Panel1->Controls->Add(this->ListWares);
2566
			this->splitContainer1->Panel1->Controls->Add(this->ListWares);
2676
			// 
2567
			// 
2677
			// splitContainer1.Panel2
2568
			// splitContainer1.Panel2
2678
			// 
2569
			// 
2679
			this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
2570
			this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
2680
			this->splitContainer1->Size = System::Drawing::Size(991, 261);
2571
			this->splitContainer1->Size = System::Drawing::Size(741, 210);
2681
			this->splitContainer1->SplitterDistance = 134;
2572
			this->splitContainer1->SplitterDistance = 107;
2682
			this->splitContainer1->SplitterWidth = 5;
-
 
2683
			this->splitContainer1->TabIndex = 0;
2573
			this->splitContainer1->TabIndex = 0;
2684
			// 
2574
			// 
2685
			// ListWares
2575
			// ListWares
2686
			// 
2576
			// 
2687
			this->ListWares->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(7) {
2577
			this->ListWares->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(7) {
Line 2691... Line 2581...
2691
			this->ListWares->ContextMenuStrip = this->ContextWare;
2581
			this->ListWares->ContextMenuStrip = this->ContextWare;
2692
			this->ListWares->Dock = System::Windows::Forms::DockStyle::Fill;
2582
			this->ListWares->Dock = System::Windows::Forms::DockStyle::Fill;
2693
			this->ListWares->FullRowSelect = true;
2583
			this->ListWares->FullRowSelect = true;
2694
			this->ListWares->HideSelection = false;
2584
			this->ListWares->HideSelection = false;
2695
			this->ListWares->Location = System::Drawing::Point(0, 0);
2585
			this->ListWares->Location = System::Drawing::Point(0, 0);
2696
			this->ListWares->Margin = System::Windows::Forms::Padding(4);
-
 
2697
			this->ListWares->MultiSelect = false;
2586
			this->ListWares->MultiSelect = false;
2698
			this->ListWares->Name = L"ListWares";
2587
			this->ListWares->Name = L"ListWares";
2699
			this->ListWares->Size = System::Drawing::Size(991, 134);
2588
			this->ListWares->Size = System::Drawing::Size(741, 107);
2700
			this->ListWares->TabIndex = 0;
2589
			this->ListWares->TabIndex = 0;
2701
			this->ListWares->UseCompatibleStateImageBehavior = false;
2590
			this->ListWares->UseCompatibleStateImageBehavior = false;
2702
			this->ListWares->View = System::Windows::Forms::View::Details;
2591
			this->ListWares->View = System::Windows::Forms::View::Details;
2703
			this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
2592
			this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
2704
			this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
2593
			this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
Line 2738... Line 2627...
2738
			this->ContextWare->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2627
			this->ContextWare->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2739
				this->addWareToolStripMenuItem,
2628
				this->addWareToolStripMenuItem,
2740
					this->ContextWareSep1, this->ContextWareEdit, this->ContextWareRemove, this->ContextWareSep2, this->ContextWareClear
2629
					this->ContextWareSep1, this->ContextWareEdit, this->ContextWareRemove, this->ContextWareSep2, this->ContextWareClear
2741
			});
2630
			});
2742
			this->ContextWare->Name = L"ContextWare";
2631
			this->ContextWare->Name = L"ContextWare";
2743
			this->ContextWare->Size = System::Drawing::Size(187, 168);
2632
			this->ContextWare->Size = System::Drawing::Size(164, 168);
2744
			this->ContextWare->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextWare_Opening);
2633
			this->ContextWare->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextWare_Opening);
2745
			// 
2634
			// 
2746
			// addWareToolStripMenuItem
2635
			// addWareToolStripMenuItem
2747
			// 
2636
			// 
2748
			this->addWareToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addWareToolStripMenuItem.Image")));
2637
			this->addWareToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addWareToolStripMenuItem.Image")));
2749
			this->addWareToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2638
			this->addWareToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2750
			this->addWareToolStripMenuItem->Name = L"addWareToolStripMenuItem";
2639
			this->addWareToolStripMenuItem->Name = L"addWareToolStripMenuItem";
2751
			this->addWareToolStripMenuItem->Size = System::Drawing::Size(186, 38);
2640
			this->addWareToolStripMenuItem->Size = System::Drawing::Size(163, 38);
2752
			this->addWareToolStripMenuItem->Text = L"Add Ware";
2641
			this->addWareToolStripMenuItem->Text = L"Add Ware";
2753
			this->addWareToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addWareToolStripMenuItem_Click);
2642
			this->addWareToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addWareToolStripMenuItem_Click);
2754
			// 
2643
			// 
2755
			// ContextWareSep1
2644
			// ContextWareSep1
2756
			// 
2645
			// 
2757
			this->ContextWareSep1->Name = L"ContextWareSep1";
2646
			this->ContextWareSep1->Name = L"ContextWareSep1";
2758
			this->ContextWareSep1->Size = System::Drawing::Size(183, 6);
2647
			this->ContextWareSep1->Size = System::Drawing::Size(160, 6);
2759
			// 
2648
			// 
2760
			// ContextWareEdit
2649
			// ContextWareEdit
2761
			// 
2650
			// 
2762
			this->ContextWareEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareEdit.Image")));
2651
			this->ContextWareEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareEdit.Image")));
2763
			this->ContextWareEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2652
			this->ContextWareEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2764
			this->ContextWareEdit->Name = L"ContextWareEdit";
2653
			this->ContextWareEdit->Name = L"ContextWareEdit";
2765
			this->ContextWareEdit->Size = System::Drawing::Size(186, 38);
2654
			this->ContextWareEdit->Size = System::Drawing::Size(163, 38);
2766
			this->ContextWareEdit->Text = L"Edit Ware";
2655
			this->ContextWareEdit->Text = L"Edit Ware";
2767
			this->ContextWareEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareEdit_Click);
2656
			this->ContextWareEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareEdit_Click);
2768
			// 
2657
			// 
2769
			// ContextWareRemove
2658
			// ContextWareRemove
2770
			// 
2659
			// 
2771
			this->ContextWareRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareRemove.Image")));
2660
			this->ContextWareRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareRemove.Image")));
2772
			this->ContextWareRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2661
			this->ContextWareRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2773
			this->ContextWareRemove->Name = L"ContextWareRemove";
2662
			this->ContextWareRemove->Name = L"ContextWareRemove";
2774
			this->ContextWareRemove->Size = System::Drawing::Size(186, 38);
2663
			this->ContextWareRemove->Size = System::Drawing::Size(163, 38);
2775
			this->ContextWareRemove->Text = L"Remove Ware";
2664
			this->ContextWareRemove->Text = L"Remove Ware";
2776
			this->ContextWareRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareRemove_Click);
2665
			this->ContextWareRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareRemove_Click);
2777
			// 
2666
			// 
2778
			// ContextWareSep2
2667
			// ContextWareSep2
2779
			// 
2668
			// 
2780
			this->ContextWareSep2->Name = L"ContextWareSep2";
2669
			this->ContextWareSep2->Name = L"ContextWareSep2";
2781
			this->ContextWareSep2->Size = System::Drawing::Size(183, 6);
2670
			this->ContextWareSep2->Size = System::Drawing::Size(160, 6);
2782
			// 
2671
			// 
2783
			// ContextWareClear
2672
			// ContextWareClear
2784
			// 
2673
			// 
2785
			this->ContextWareClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareClear.Image")));
2674
			this->ContextWareClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWareClear.Image")));
2786
			this->ContextWareClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2675
			this->ContextWareClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2787
			this->ContextWareClear->Name = L"ContextWareClear";
2676
			this->ContextWareClear->Name = L"ContextWareClear";
2788
			this->ContextWareClear->Size = System::Drawing::Size(186, 38);
2677
			this->ContextWareClear->Size = System::Drawing::Size(163, 38);
2789
			this->ContextWareClear->Text = L"Clear All";
2678
			this->ContextWareClear->Text = L"Clear All";
2790
			this->ContextWareClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareClear_Click);
2679
			this->ContextWareClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextWareClear_Click);
2791
			// 
2680
			// 
2792
			// ListWareText
2681
			// ListWareText
2793
			// 
2682
			// 
Line 2798... Line 2687...
2798
			this->ListWareText->ContextMenuStrip = this->ContextWareText;
2687
			this->ListWareText->ContextMenuStrip = this->ContextWareText;
2799
			this->ListWareText->Dock = System::Windows::Forms::DockStyle::Fill;
2688
			this->ListWareText->Dock = System::Windows::Forms::DockStyle::Fill;
2800
			this->ListWareText->FullRowSelect = true;
2689
			this->ListWareText->FullRowSelect = true;
2801
			this->ListWareText->HideSelection = false;
2690
			this->ListWareText->HideSelection = false;
2802
			this->ListWareText->Location = System::Drawing::Point(0, 0);
2691
			this->ListWareText->Location = System::Drawing::Point(0, 0);
2803
			this->ListWareText->Margin = System::Windows::Forms::Padding(4);
-
 
2804
			this->ListWareText->MultiSelect = false;
2692
			this->ListWareText->MultiSelect = false;
2805
			this->ListWareText->Name = L"ListWareText";
2693
			this->ListWareText->Name = L"ListWareText";
2806
			this->ListWareText->Size = System::Drawing::Size(991, 122);
2694
			this->ListWareText->Size = System::Drawing::Size(741, 99);
2807
			this->ListWareText->TabIndex = 0;
2695
			this->ListWareText->TabIndex = 0;
2808
			this->ListWareText->UseCompatibleStateImageBehavior = false;
2696
			this->ListWareText->UseCompatibleStateImageBehavior = false;
2809
			this->ListWareText->View = System::Windows::Forms::View::Details;
2697
			this->ListWareText->View = System::Windows::Forms::View::Details;
2810
			this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
2698
			this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
2811
			// 
2699
			// 
Line 2829... Line 2717...
2829
			this->ContextWareText->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2717
			this->ContextWareText->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(6) {
2830
				this->addTextToolStripMenuItem,
2718
				this->addTextToolStripMenuItem,
2831
					this->ContextWTSep1, this->ContextWTRemove, this->ContextWTEdit, this->ContextWTSep2, this->ContextWTClear
2719
					this->ContextWTSep1, this->ContextWTRemove, this->ContextWTEdit, this->ContextWTSep2, this->ContextWTClear
2832
			});
2720
			});
2833
			this->ContextWareText->Name = L"ContextWareText";
2721
			this->ContextWareText->Name = L"ContextWareText";
2834
			this->ContextWareText->Size = System::Drawing::Size(180, 168);
2722
			this->ContextWareText->Size = System::Drawing::Size(158, 168);
2835
			this->ContextWareText->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextWareText_Opening);
2723
			this->ContextWareText->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextWareText_Opening);
2836
			// 
2724
			// 
2837
			// addTextToolStripMenuItem
2725
			// addTextToolStripMenuItem
2838
			// 
2726
			// 
2839
			this->addTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addTextToolStripMenuItem.Image")));
2727
			this->addTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addTextToolStripMenuItem.Image")));
2840
			this->addTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2728
			this->addTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2841
			this->addTextToolStripMenuItem->Name = L"addTextToolStripMenuItem";
2729
			this->addTextToolStripMenuItem->Name = L"addTextToolStripMenuItem";
2842
			this->addTextToolStripMenuItem->Size = System::Drawing::Size(179, 38);
2730
			this->addTextToolStripMenuItem->Size = System::Drawing::Size(157, 38);
2843
			this->addTextToolStripMenuItem->Text = L"Add Text";
2731
			this->addTextToolStripMenuItem->Text = L"Add Text";
2844
			this->addTextToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addTextToolStripMenuItem_Click);
2732
			this->addTextToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addTextToolStripMenuItem_Click);
2845
			// 
2733
			// 
2846
			// ContextWTSep1
2734
			// ContextWTSep1
2847
			// 
2735
			// 
2848
			this->ContextWTSep1->Name = L"ContextWTSep1";
2736
			this->ContextWTSep1->Name = L"ContextWTSep1";
2849
			this->ContextWTSep1->Size = System::Drawing::Size(176, 6);
2737
			this->ContextWTSep1->Size = System::Drawing::Size(154, 6);
2850
			// 
2738
			// 
2851
			// ContextWTRemove
2739
			// ContextWTRemove
2852
			// 
2740
			// 
2853
			this->ContextWTRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTRemove.Image")));
2741
			this->ContextWTRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTRemove.Image")));
2854
			this->ContextWTRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2742
			this->ContextWTRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2855
			this->ContextWTRemove->Name = L"ContextWTRemove";
2743
			this->ContextWTRemove->Name = L"ContextWTRemove";
2856
			this->ContextWTRemove->Size = System::Drawing::Size(179, 38);
2744
			this->ContextWTRemove->Size = System::Drawing::Size(157, 38);
2857
			this->ContextWTRemove->Text = L"Remove Text";
2745
			this->ContextWTRemove->Text = L"Remove Text";
2858
			this->ContextWTRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTRemove_Click);
2746
			this->ContextWTRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTRemove_Click);
2859
			// 
2747
			// 
2860
			// ContextWTEdit
2748
			// ContextWTEdit
2861
			// 
2749
			// 
2862
			this->ContextWTEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTEdit.Image")));
2750
			this->ContextWTEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTEdit.Image")));
2863
			this->ContextWTEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2751
			this->ContextWTEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2864
			this->ContextWTEdit->Name = L"ContextWTEdit";
2752
			this->ContextWTEdit->Name = L"ContextWTEdit";
2865
			this->ContextWTEdit->Size = System::Drawing::Size(179, 38);
2753
			this->ContextWTEdit->Size = System::Drawing::Size(157, 38);
2866
			this->ContextWTEdit->Text = L"Edit Text";
2754
			this->ContextWTEdit->Text = L"Edit Text";
2867
			this->ContextWTEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTEdit_Click);
2755
			this->ContextWTEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTEdit_Click);
2868
			// 
2756
			// 
2869
			// ContextWTSep2
2757
			// ContextWTSep2
2870
			// 
2758
			// 
2871
			this->ContextWTSep2->Name = L"ContextWTSep2";
2759
			this->ContextWTSep2->Name = L"ContextWTSep2";
2872
			this->ContextWTSep2->Size = System::Drawing::Size(176, 6);
2760
			this->ContextWTSep2->Size = System::Drawing::Size(154, 6);
2873
			// 
2761
			// 
2874
			// ContextWTClear
2762
			// ContextWTClear
2875
			// 
2763
			// 
2876
			this->ContextWTClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTClear.Image")));
2764
			this->ContextWTClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextWTClear.Image")));
2877
			this->ContextWTClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2765
			this->ContextWTClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2878
			this->ContextWTClear->Name = L"ContextWTClear";
2766
			this->ContextWTClear->Name = L"ContextWTClear";
2879
			this->ContextWTClear->Size = System::Drawing::Size(179, 38);
2767
			this->ContextWTClear->Size = System::Drawing::Size(157, 38);
2880
			this->ContextWTClear->Text = L"Clear All";
2768
			this->ContextWTClear->Text = L"Clear All";
2881
			this->ContextWTClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTClear_Click);
2769
			this->ContextWTClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextWTClear_Click);
2882
			// 
2770
			// 
2883
			// PageShip
2771
			// PageShip
2884
			// 
2772
			// 
2885
			this->PageShip->Controls->Add(this->ListShipText);
2773
			this->PageShip->Controls->Add(this->ListShipText);
2886
			this->PageShip->Controls->Add(this->PanelTextID);
2774
			this->PageShip->Controls->Add(this->PanelTextID);
2887
			this->PageShip->Controls->Add(this->flowLayoutPanel2);
2775
			this->PageShip->Controls->Add(this->flowLayoutPanel2);
2888
			this->PageShip->Location = System::Drawing::Point(4, 25);
2776
			this->PageShip->Location = System::Drawing::Point(4, 22);
2889
			this->PageShip->Margin = System::Windows::Forms::Padding(4);
-
 
2890
			this->PageShip->Name = L"PageShip";
2777
			this->PageShip->Name = L"PageShip";
2891
			this->PageShip->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
2778
			this->PageShip->Padding = System::Windows::Forms::Padding(8, 8, 8, 8);
2892
			this->PageShip->Size = System::Drawing::Size(999, 269);
2779
			this->PageShip->Size = System::Drawing::Size(747, 216);
2893
			this->PageShip->TabIndex = 6;
2780
			this->PageShip->TabIndex = 6;
2894
			this->PageShip->Text = L"Ship Settings";
2781
			this->PageShip->Text = L"Ship Settings";
2895
			this->PageShip->UseVisualStyleBackColor = true;
2782
			this->PageShip->UseVisualStyleBackColor = true;
2896
			// 
2783
			// 
2897
			// ListShipText
2784
			// ListShipText
Line 2903... Line 2790...
2903
			this->ListShipText->ContextMenuStrip = this->ContextShipText;
2790
			this->ListShipText->ContextMenuStrip = this->ContextShipText;
2904
			this->ListShipText->Dock = System::Windows::Forms::DockStyle::Fill;
2791
			this->ListShipText->Dock = System::Windows::Forms::DockStyle::Fill;
2905
			this->ListShipText->FullRowSelect = true;
2792
			this->ListShipText->FullRowSelect = true;
2906
			this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2793
			this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2907
			this->ListShipText->HideSelection = false;
2794
			this->ListShipText->HideSelection = false;
2908
			this->ListShipText->Location = System::Drawing::Point(11, 137);
2795
			this->ListShipText->Location = System::Drawing::Point(8, 110);
2909
			this->ListShipText->Margin = System::Windows::Forms::Padding(4);
-
 
2910
			this->ListShipText->Name = L"ListShipText";
2796
			this->ListShipText->Name = L"ListShipText";
2911
			this->ListShipText->Size = System::Drawing::Size(977, 122);
2797
			this->ListShipText->Size = System::Drawing::Size(731, 98);
2912
			this->ListShipText->TabIndex = 8;
2798
			this->ListShipText->TabIndex = 8;
2913
			this->ListShipText->UseCompatibleStateImageBehavior = false;
2799
			this->ListShipText->UseCompatibleStateImageBehavior = false;
2914
			this->ListShipText->View = System::Windows::Forms::View::Details;
2800
			this->ListShipText->View = System::Windows::Forms::View::Details;
2915
			this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
2801
			this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
2916
			// 
2802
			// 
Line 2933... Line 2819...
2933
				this->importTextToolStripMenuItem,
2819
				this->importTextToolStripMenuItem,
2934
					this->addLanguageToolStripMenuItem, this->ContextShipTextSep1, this->ContextShipTextEdit, this->ContextShipTextRemove, this->ContextShipTextSep2,
2820
					this->addLanguageToolStripMenuItem, this->ContextShipTextSep1, this->ContextShipTextEdit, this->ContextShipTextRemove, this->ContextShipTextSep2,
2935
					this->ContextShipTextClear
2821
					this->ContextShipTextClear
2936
			});
2822
			});
2937
			this->ContextShipText->Name = L"ContextShipText";
2823
			this->ContextShipText->Name = L"ContextShipText";
2938
			this->ContextShipText->Size = System::Drawing::Size(192, 206);
2824
			this->ContextShipText->Size = System::Drawing::Size(168, 206);
2939
			this->ContextShipText->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextShipText_Opening);
2825
			this->ContextShipText->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextShipText_Opening);
2940
			// 
2826
			// 
2941
			// importTextToolStripMenuItem
2827
			// importTextToolStripMenuItem
2942
			// 
2828
			// 
2943
			this->importTextToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(3) {
2829
			this->importTextToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(3) {
Line 2945... Line 2831...
2945
					this->fromDirectoryToolStripMenuItem, this->fromModToolStripMenuItem
2831
					this->fromDirectoryToolStripMenuItem, this->fromModToolStripMenuItem
2946
			});
2832
			});
2947
			this->importTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importTextToolStripMenuItem.Image")));
2833
			this->importTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importTextToolStripMenuItem.Image")));
2948
			this->importTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2834
			this->importTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2949
			this->importTextToolStripMenuItem->Name = L"importTextToolStripMenuItem";
2835
			this->importTextToolStripMenuItem->Name = L"importTextToolStripMenuItem";
2950
			this->importTextToolStripMenuItem->Size = System::Drawing::Size(191, 38);
2836
			this->importTextToolStripMenuItem->Size = System::Drawing::Size(167, 38);
2951
			this->importTextToolStripMenuItem->Text = L"Import Text";
2837
			this->importTextToolStripMenuItem->Text = L"Import Text";
2952
			// 
2838
			// 
2953
			// fromFileToolStripMenuItem
2839
			// fromFileToolStripMenuItem
2954
			// 
2840
			// 
2955
			this->fromFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromFileToolStripMenuItem.Image")));
2841
			this->fromFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromFileToolStripMenuItem.Image")));
2956
			this->fromFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2842
			this->fromFileToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2957
			this->fromFileToolStripMenuItem->Name = L"fromFileToolStripMenuItem";
2843
			this->fromFileToolStripMenuItem->Name = L"fromFileToolStripMenuItem";
2958
			this->fromFileToolStripMenuItem->Size = System::Drawing::Size(195, 38);
2844
			this->fromFileToolStripMenuItem->Size = System::Drawing::Size(169, 38);
2959
			this->fromFileToolStripMenuItem->Text = L"From File";
2845
			this->fromFileToolStripMenuItem->Text = L"From File";
2960
			this->fromFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromFileToolStripMenuItem_Click);
2846
			this->fromFileToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromFileToolStripMenuItem_Click);
2961
			// 
2847
			// 
2962
			// fromDirectoryToolStripMenuItem
2848
			// fromDirectoryToolStripMenuItem
2963
			// 
2849
			// 
2964
			this->fromDirectoryToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromDirectoryToolStripMenuItem.Image")));
2850
			this->fromDirectoryToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromDirectoryToolStripMenuItem.Image")));
2965
			this->fromDirectoryToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2851
			this->fromDirectoryToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2966
			this->fromDirectoryToolStripMenuItem->Name = L"fromDirectoryToolStripMenuItem";
2852
			this->fromDirectoryToolStripMenuItem->Name = L"fromDirectoryToolStripMenuItem";
2967
			this->fromDirectoryToolStripMenuItem->Size = System::Drawing::Size(195, 38);
2853
			this->fromDirectoryToolStripMenuItem->Size = System::Drawing::Size(169, 38);
2968
			this->fromDirectoryToolStripMenuItem->Text = L"From Directory";
2854
			this->fromDirectoryToolStripMenuItem->Text = L"From Directory";
2969
			this->fromDirectoryToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromDirectoryToolStripMenuItem_Click);
2855
			this->fromDirectoryToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromDirectoryToolStripMenuItem_Click);
2970
			// 
2856
			// 
2971
			// fromModToolStripMenuItem
2857
			// fromModToolStripMenuItem
2972
			// 
2858
			// 
2973
			this->fromModToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromModToolStripMenuItem.Image")));
2859
			this->fromModToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"fromModToolStripMenuItem.Image")));
2974
			this->fromModToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2860
			this->fromModToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2975
			this->fromModToolStripMenuItem->Name = L"fromModToolStripMenuItem";
2861
			this->fromModToolStripMenuItem->Name = L"fromModToolStripMenuItem";
2976
			this->fromModToolStripMenuItem->Size = System::Drawing::Size(195, 38);
2862
			this->fromModToolStripMenuItem->Size = System::Drawing::Size(169, 38);
2977
			this->fromModToolStripMenuItem->Text = L"From Mod";
2863
			this->fromModToolStripMenuItem->Text = L"From Mod";
2978
			this->fromModToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromModToolStripMenuItem_Click);
2864
			this->fromModToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::fromModToolStripMenuItem_Click);
2979
			// 
2865
			// 
2980
			// addLanguageToolStripMenuItem
2866
			// addLanguageToolStripMenuItem
2981
			// 
2867
			// 
2982
			this->addLanguageToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addLanguageToolStripMenuItem.Image")));
2868
			this->addLanguageToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addLanguageToolStripMenuItem.Image")));
2983
			this->addLanguageToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2869
			this->addLanguageToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2984
			this->addLanguageToolStripMenuItem->Name = L"addLanguageToolStripMenuItem";
2870
			this->addLanguageToolStripMenuItem->Name = L"addLanguageToolStripMenuItem";
2985
			this->addLanguageToolStripMenuItem->Size = System::Drawing::Size(191, 38);
2871
			this->addLanguageToolStripMenuItem->Size = System::Drawing::Size(167, 38);
2986
			this->addLanguageToolStripMenuItem->Text = L"Add Language";
2872
			this->addLanguageToolStripMenuItem->Text = L"Add Language";
2987
			this->addLanguageToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addLanguageToolStripMenuItem_Click);
2873
			this->addLanguageToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::addLanguageToolStripMenuItem_Click);
2988
			// 
2874
			// 
2989
			// ContextShipTextSep1
2875
			// ContextShipTextSep1
2990
			// 
2876
			// 
2991
			this->ContextShipTextSep1->Name = L"ContextShipTextSep1";
2877
			this->ContextShipTextSep1->Name = L"ContextShipTextSep1";
2992
			this->ContextShipTextSep1->Size = System::Drawing::Size(188, 6);
2878
			this->ContextShipTextSep1->Size = System::Drawing::Size(164, 6);
2993
			// 
2879
			// 
2994
			// ContextShipTextEdit
2880
			// ContextShipTextEdit
2995
			// 
2881
			// 
2996
			this->ContextShipTextEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextEdit.Image")));
2882
			this->ContextShipTextEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextEdit.Image")));
2997
			this->ContextShipTextEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2883
			this->ContextShipTextEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2998
			this->ContextShipTextEdit->Name = L"ContextShipTextEdit";
2884
			this->ContextShipTextEdit->Name = L"ContextShipTextEdit";
2999
			this->ContextShipTextEdit->Size = System::Drawing::Size(191, 38);
2885
			this->ContextShipTextEdit->Size = System::Drawing::Size(167, 38);
3000
			this->ContextShipTextEdit->Text = L"Edit";
2886
			this->ContextShipTextEdit->Text = L"Edit";
3001
			this->ContextShipTextEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextEdit_Click);
2887
			this->ContextShipTextEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextEdit_Click);
3002
			// 
2888
			// 
3003
			// ContextShipTextRemove
2889
			// ContextShipTextRemove
3004
			// 
2890
			// 
3005
			this->ContextShipTextRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextRemove.Image")));
2891
			this->ContextShipTextRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextRemove.Image")));
3006
			this->ContextShipTextRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2892
			this->ContextShipTextRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3007
			this->ContextShipTextRemove->Name = L"ContextShipTextRemove";
2893
			this->ContextShipTextRemove->Name = L"ContextShipTextRemove";
3008
			this->ContextShipTextRemove->Size = System::Drawing::Size(191, 38);
2894
			this->ContextShipTextRemove->Size = System::Drawing::Size(167, 38);
3009
			this->ContextShipTextRemove->Text = L"Remove";
2895
			this->ContextShipTextRemove->Text = L"Remove";
3010
			this->ContextShipTextRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextRemove_Click);
2896
			this->ContextShipTextRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextRemove_Click);
3011
			// 
2897
			// 
3012
			// ContextShipTextSep2
2898
			// ContextShipTextSep2
3013
			// 
2899
			// 
3014
			this->ContextShipTextSep2->Name = L"ContextShipTextSep2";
2900
			this->ContextShipTextSep2->Name = L"ContextShipTextSep2";
3015
			this->ContextShipTextSep2->Size = System::Drawing::Size(188, 6);
2901
			this->ContextShipTextSep2->Size = System::Drawing::Size(164, 6);
3016
			// 
2902
			// 
3017
			// ContextShipTextClear
2903
			// ContextShipTextClear
3018
			// 
2904
			// 
3019
			this->ContextShipTextClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextClear.Image")));
2905
			this->ContextShipTextClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipTextClear.Image")));
3020
			this->ContextShipTextClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
2906
			this->ContextShipTextClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3021
			this->ContextShipTextClear->Name = L"ContextShipTextClear";
2907
			this->ContextShipTextClear->Name = L"ContextShipTextClear";
3022
			this->ContextShipTextClear->Size = System::Drawing::Size(191, 38);
2908
			this->ContextShipTextClear->Size = System::Drawing::Size(167, 38);
3023
			this->ContextShipTextClear->Text = L"Clear All";
2909
			this->ContextShipTextClear->Text = L"Clear All";
3024
			this->ContextShipTextClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextClear_Click);
2910
			this->ContextShipTextClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipTextClear_Click);
3025
			// 
2911
			// 
3026
			// PanelTextID
2912
			// PanelTextID
3027
			// 
2913
			// 
3028
			this->PanelTextID->Controls->Add(this->NumTextID);
2914
			this->PanelTextID->Controls->Add(this->NumTextID);
3029
			this->PanelTextID->Controls->Add(this->CheckExistingText);
2915
			this->PanelTextID->Controls->Add(this->CheckExistingText);
3030
			this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
2916
			this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
3031
			this->PanelTextID->Location = System::Drawing::Point(11, 112);
2917
			this->PanelTextID->Location = System::Drawing::Point(8, 90);
3032
			this->PanelTextID->Margin = System::Windows::Forms::Padding(4);
-
 
3033
			this->PanelTextID->Name = L"PanelTextID";
2918
			this->PanelTextID->Name = L"PanelTextID";
3034
			this->PanelTextID->Size = System::Drawing::Size(977, 25);
2919
			this->PanelTextID->Size = System::Drawing::Size(731, 20);
3035
			this->PanelTextID->TabIndex = 9;
2920
			this->PanelTextID->TabIndex = 9;
3036
			// 
2921
			// 
3037
			// NumTextID
2922
			// NumTextID
3038
			// 
2923
			// 
3039
			this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
2924
			this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
3040
			this->NumTextID->Location = System::Drawing::Point(155, 0);
2925
			this->NumTextID->Location = System::Drawing::Point(122, 0);
3041
			this->NumTextID->Margin = System::Windows::Forms::Padding(4);
-
 
3042
			this->NumTextID->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 90000000, 0, 0, 0 });
2926
			this->NumTextID->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 90000000, 0, 0, 0 });
3043
			this->NumTextID->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
2927
			this->NumTextID->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
3044
			this->NumTextID->Name = L"NumTextID";
2928
			this->NumTextID->Name = L"NumTextID";
3045
			this->NumTextID->Size = System::Drawing::Size(137, 22);
2929
			this->NumTextID->Size = System::Drawing::Size(103, 20);
3046
			this->NumTextID->TabIndex = 1;
2930
			this->NumTextID->TabIndex = 1;
3047
			this->NumTextID->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
2931
			this->NumTextID->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
3048
			this->NumTextID->ValueChanged += gcnew System::EventHandler(this, &PackageForm::NumTextID_ValueChanged);
2932
			this->NumTextID->ValueChanged += gcnew System::EventHandler(this, &PackageForm::NumTextID_ValueChanged);
3049
			this->NumTextID->Leave += gcnew System::EventHandler(this, &PackageForm::NumTextID_Leave);
2933
			this->NumTextID->Leave += gcnew System::EventHandler(this, &PackageForm::NumTextID_Leave);
3050
			// 
2934
			// 
3051
			// CheckExistingText
2935
			// CheckExistingText
3052
			// 
2936
			// 
3053
			this->CheckExistingText->AutoSize = true;
2937
			this->CheckExistingText->AutoSize = true;
3054
			this->CheckExistingText->Dock = System::Windows::Forms::DockStyle::Left;
2938
			this->CheckExistingText->Dock = System::Windows::Forms::DockStyle::Left;
3055
			this->CheckExistingText->Location = System::Drawing::Point(0, 0);
2939
			this->CheckExistingText->Location = System::Drawing::Point(0, 0);
3056
			this->CheckExistingText->Margin = System::Windows::Forms::Padding(4);
-
 
3057
			this->CheckExistingText->Name = L"CheckExistingText";
2940
			this->CheckExistingText->Name = L"CheckExistingText";
3058
			this->CheckExistingText->Size = System::Drawing::Size(155, 25);
2941
			this->CheckExistingText->Size = System::Drawing::Size(122, 20);
3059
			this->CheckExistingText->TabIndex = 3;
2942
			this->CheckExistingText->TabIndex = 3;
3060
			this->CheckExistingText->Text = L"Use Existing Text ID";
2943
			this->CheckExistingText->Text = L"Use Existing Text ID";
3061
			this->CheckExistingText->UseVisualStyleBackColor = true;
2944
			this->CheckExistingText->UseVisualStyleBackColor = true;
3062
			this->CheckExistingText->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckExistingText_CheckedChanged);
2945
			this->CheckExistingText->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckExistingText_CheckedChanged);
3063
			// 
2946
			// 
Line 3075... Line 2958...
3075
			this->flowLayoutPanel2->Controls->Add(this->CheckSYXenon);
2958
			this->flowLayoutPanel2->Controls->Add(this->CheckSYXenon);
3076
			this->flowLayoutPanel2->Controls->Add(this->CheckSYTerran);
2959
			this->flowLayoutPanel2->Controls->Add(this->CheckSYTerran);
3077
			this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
2960
			this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
3078
			this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
2961
			this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
3079
			this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
2962
			this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
3080
			this->flowLayoutPanel2->Location = System::Drawing::Point(11, 10);
2963
			this->flowLayoutPanel2->Location = System::Drawing::Point(8, 8);
3081
			this->flowLayoutPanel2->Margin = System::Windows::Forms::Padding(4);
-
 
3082
			this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
2964
			this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
3083
			this->flowLayoutPanel2->Size = System::Drawing::Size(977, 102);
2965
			this->flowLayoutPanel2->Size = System::Drawing::Size(731, 82);
3084
			this->flowLayoutPanel2->TabIndex = 7;
2966
			this->flowLayoutPanel2->TabIndex = 7;
3085
			// 
2967
			// 
3086
			// label16
2968
			// label16
3087
			// 
2969
			// 
3088
			this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
2970
			this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3089
				static_cast<System::Byte>(0)));
2971
				static_cast<System::Byte>(0)));
3090
			this->label16->Location = System::Drawing::Point(4, 0);
2972
			this->label16->Location = System::Drawing::Point(3, 0);
3091
			this->label16->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3092
			this->label16->Name = L"label16";
2973
			this->label16->Name = L"label16";
3093
			this->label16->Size = System::Drawing::Size(120, 47);
2974
			this->label16->Size = System::Drawing::Size(90, 38);
3094
			this->label16->TabIndex = 11;
2975
			this->label16->TabIndex = 11;
3095
			this->label16->Text = L"Add To Shipyards:";
2976
			this->label16->Text = L"Add To Shipyards:";
3096
			this->label16->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
2977
			this->label16->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3097
			// 
2978
			// 
3098
			// CheckSYArgon
2979
			// CheckSYArgon
3099
			// 
2980
			// 
3100
			this->CheckSYArgon->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
2981
			this->CheckSYArgon->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
3101
				static_cast<System::Byte>(0)));
2982
				static_cast<System::Byte>(0)));
3102
			this->CheckSYArgon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYArgon.Image")));
2983
			this->CheckSYArgon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYArgon.Image")));
3103
			this->CheckSYArgon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
2984
			this->CheckSYArgon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3104
			this->CheckSYArgon->Location = System::Drawing::Point(132, 4);
2985
			this->CheckSYArgon->Location = System::Drawing::Point(99, 3);
3105
			this->CheckSYArgon->Margin = System::Windows::Forms::Padding(4);
-
 
3106
			this->CheckSYArgon->Name = L"CheckSYArgon";
2986
			this->CheckSYArgon->Name = L"CheckSYArgon";
3107
			this->CheckSYArgon->Size = System::Drawing::Size(120, 43);
2987
			this->CheckSYArgon->Size = System::Drawing::Size(90, 35);
3108
			this->CheckSYArgon->TabIndex = 0;
2988
			this->CheckSYArgon->TabIndex = 0;
3109
			this->CheckSYArgon->Text = L"Argon";
2989
			this->CheckSYArgon->Text = L"Argon";
3110
			this->CheckSYArgon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
2990
			this->CheckSYArgon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3111
			this->CheckSYArgon->UseVisualStyleBackColor = true;
2991
			this->CheckSYArgon->UseVisualStyleBackColor = true;
3112
			this->CheckSYArgon->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYArgon_CheckedChanged);
2992
			this->CheckSYArgon->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYArgon_CheckedChanged);
3113
			// 
2993
			// 
3114
			// CheckSYBoron
2994
			// CheckSYBoron
3115
			// 
2995
			// 
3116
			this->CheckSYBoron->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYBoron.Image")));
2996
			this->CheckSYBoron->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYBoron.Image")));
3117
			this->CheckSYBoron->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
2997
			this->CheckSYBoron->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3118
			this->CheckSYBoron->Location = System::Drawing::Point(260, 4);
2998
			this->CheckSYBoron->Location = System::Drawing::Point(195, 3);
3119
			this->CheckSYBoron->Margin = System::Windows::Forms::Padding(4);
-
 
3120
			this->CheckSYBoron->Name = L"CheckSYBoron";
2999
			this->CheckSYBoron->Name = L"CheckSYBoron";
3121
			this->CheckSYBoron->Size = System::Drawing::Size(120, 43);
3000
			this->CheckSYBoron->Size = System::Drawing::Size(90, 35);
3122
			this->CheckSYBoron->TabIndex = 1;
3001
			this->CheckSYBoron->TabIndex = 1;
3123
			this->CheckSYBoron->Text = L"Boron";
3002
			this->CheckSYBoron->Text = L"Boron";
3124
			this->CheckSYBoron->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3003
			this->CheckSYBoron->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3125
			this->CheckSYBoron->UseVisualStyleBackColor = true;
3004
			this->CheckSYBoron->UseVisualStyleBackColor = true;
3126
			this->CheckSYBoron->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYBoron_CheckedChanged);
3005
			this->CheckSYBoron->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYBoron_CheckedChanged);
3127
			// 
3006
			// 
3128
			// CheckSYParanid
3007
			// CheckSYParanid
3129
			// 
3008
			// 
3130
			this->CheckSYParanid->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYParanid.Image")));
3009
			this->CheckSYParanid->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYParanid.Image")));
3131
			this->CheckSYParanid->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3010
			this->CheckSYParanid->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3132
			this->CheckSYParanid->Location = System::Drawing::Point(388, 4);
3011
			this->CheckSYParanid->Location = System::Drawing::Point(291, 3);
3133
			this->CheckSYParanid->Margin = System::Windows::Forms::Padding(4);
-
 
3134
			this->CheckSYParanid->Name = L"CheckSYParanid";
3012
			this->CheckSYParanid->Name = L"CheckSYParanid";
3135
			this->CheckSYParanid->Size = System::Drawing::Size(120, 43);
3013
			this->CheckSYParanid->Size = System::Drawing::Size(90, 35);
3136
			this->CheckSYParanid->TabIndex = 2;
3014
			this->CheckSYParanid->TabIndex = 2;
3137
			this->CheckSYParanid->Text = L"Paranid";
3015
			this->CheckSYParanid->Text = L"Paranid";
3138
			this->CheckSYParanid->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3016
			this->CheckSYParanid->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3139
			this->CheckSYParanid->UseVisualStyleBackColor = true;
3017
			this->CheckSYParanid->UseVisualStyleBackColor = true;
3140
			this->CheckSYParanid->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYParanid_CheckedChanged);
3018
			this->CheckSYParanid->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYParanid_CheckedChanged);
3141
			// 
3019
			// 
3142
			// CheckSYTeladi
3020
			// CheckSYTeladi
3143
			// 
3021
			// 
3144
			this->CheckSYTeladi->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTeladi.Image")));
3022
			this->CheckSYTeladi->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTeladi.Image")));
3145
			this->CheckSYTeladi->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3023
			this->CheckSYTeladi->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3146
			this->CheckSYTeladi->Location = System::Drawing::Point(516, 4);
3024
			this->CheckSYTeladi->Location = System::Drawing::Point(387, 3);
3147
			this->CheckSYTeladi->Margin = System::Windows::Forms::Padding(4);
-
 
3148
			this->CheckSYTeladi->Name = L"CheckSYTeladi";
3025
			this->CheckSYTeladi->Name = L"CheckSYTeladi";
3149
			this->CheckSYTeladi->Size = System::Drawing::Size(120, 43);
3026
			this->CheckSYTeladi->Size = System::Drawing::Size(90, 35);
3150
			this->CheckSYTeladi->TabIndex = 3;
3027
			this->CheckSYTeladi->TabIndex = 3;
3151
			this->CheckSYTeladi->Text = L"Teladi";
3028
			this->CheckSYTeladi->Text = L"Teladi";
3152
			this->CheckSYTeladi->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3029
			this->CheckSYTeladi->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3153
			this->CheckSYTeladi->UseVisualStyleBackColor = true;
3030
			this->CheckSYTeladi->UseVisualStyleBackColor = true;
3154
			this->CheckSYTeladi->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYTeladi_CheckedChanged);
3031
			this->CheckSYTeladi->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYTeladi_CheckedChanged);
3155
			// 
3032
			// 
3156
			// CheckSYSplit
3033
			// CheckSYSplit
3157
			// 
3034
			// 
3158
			this->CheckSYSplit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYSplit.Image")));
3035
			this->CheckSYSplit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYSplit.Image")));
3159
			this->CheckSYSplit->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3036
			this->CheckSYSplit->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3160
			this->CheckSYSplit->Location = System::Drawing::Point(644, 4);
3037
			this->CheckSYSplit->Location = System::Drawing::Point(483, 3);
3161
			this->CheckSYSplit->Margin = System::Windows::Forms::Padding(4);
-
 
3162
			this->CheckSYSplit->Name = L"CheckSYSplit";
3038
			this->CheckSYSplit->Name = L"CheckSYSplit";
3163
			this->CheckSYSplit->Size = System::Drawing::Size(120, 43);
3039
			this->CheckSYSplit->Size = System::Drawing::Size(90, 35);
3164
			this->CheckSYSplit->TabIndex = 4;
3040
			this->CheckSYSplit->TabIndex = 4;
3165
			this->CheckSYSplit->Text = L"Split";
3041
			this->CheckSYSplit->Text = L"Split";
3166
			this->CheckSYSplit->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3042
			this->CheckSYSplit->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3167
			this->CheckSYSplit->UseVisualStyleBackColor = true;
3043
			this->CheckSYSplit->UseVisualStyleBackColor = true;
3168
			this->CheckSYSplit->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYSplit_CheckedChanged);
3044
			this->CheckSYSplit->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYSplit_CheckedChanged);
3169
			// 
3045
			// 
3170
			// CheckSYPirate
3046
			// CheckSYPirate
3171
			// 
3047
			// 
3172
			this->CheckSYPirate->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYPirate.Image")));
3048
			this->CheckSYPirate->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYPirate.Image")));
3173
			this->CheckSYPirate->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3049
			this->CheckSYPirate->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3174
			this->CheckSYPirate->Location = System::Drawing::Point(772, 4);
3050
			this->CheckSYPirate->Location = System::Drawing::Point(579, 3);
3175
			this->CheckSYPirate->Margin = System::Windows::Forms::Padding(4);
-
 
3176
			this->CheckSYPirate->Name = L"CheckSYPirate";
3051
			this->CheckSYPirate->Name = L"CheckSYPirate";
3177
			this->CheckSYPirate->Size = System::Drawing::Size(120, 43);
3052
			this->CheckSYPirate->Size = System::Drawing::Size(90, 35);
3178
			this->CheckSYPirate->TabIndex = 5;
3053
			this->CheckSYPirate->TabIndex = 5;
3179
			this->CheckSYPirate->Text = L"Pirate";
3054
			this->CheckSYPirate->Text = L"Pirate";
3180
			this->CheckSYPirate->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3055
			this->CheckSYPirate->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3181
			this->CheckSYPirate->UseVisualStyleBackColor = true;
3056
			this->CheckSYPirate->UseVisualStyleBackColor = true;
3182
			this->CheckSYPirate->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYPirate_CheckedChanged);
3057
			this->CheckSYPirate->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYPirate_CheckedChanged);
3183
			// 
3058
			// 
3184
			// CheckSYFriend
3059
			// CheckSYFriend
3185
			// 
3060
			// 
3186
			this->CheckSYFriend->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYFriend.Image")));
3061
			this->CheckSYFriend->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYFriend.Image")));
3187
			this->CheckSYFriend->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3062
			this->CheckSYFriend->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3188
			this->CheckSYFriend->Location = System::Drawing::Point(4, 55);
3063
			this->CheckSYFriend->Location = System::Drawing::Point(3, 44);
3189
			this->CheckSYFriend->Margin = System::Windows::Forms::Padding(4);
-
 
3190
			this->CheckSYFriend->Name = L"CheckSYFriend";
3064
			this->CheckSYFriend->Name = L"CheckSYFriend";
3191
			this->CheckSYFriend->Size = System::Drawing::Size(120, 43);
3065
			this->CheckSYFriend->Size = System::Drawing::Size(90, 35);
3192
			this->CheckSYFriend->TabIndex = 6;
3066
			this->CheckSYFriend->TabIndex = 6;
3193
			this->CheckSYFriend->Text = L"Friendly Race";
3067
			this->CheckSYFriend->Text = L"Friendly Race";
3194
			this->CheckSYFriend->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3068
			this->CheckSYFriend->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3195
			this->CheckSYFriend->UseVisualStyleBackColor = true;
3069
			this->CheckSYFriend->UseVisualStyleBackColor = true;
3196
			this->CheckSYFriend->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYFriend_CheckedChanged);
3070
			this->CheckSYFriend->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYFriend_CheckedChanged);
3197
			// 
3071
			// 
3198
			// CheckSYXenon
3072
			// CheckSYXenon
3199
			// 
3073
			// 
3200
			this->CheckSYXenon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYXenon.Image")));
3074
			this->CheckSYXenon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYXenon.Image")));
3201
			this->CheckSYXenon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3075
			this->CheckSYXenon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3202
			this->CheckSYXenon->Location = System::Drawing::Point(132, 55);
3076
			this->CheckSYXenon->Location = System::Drawing::Point(99, 44);
3203
			this->CheckSYXenon->Margin = System::Windows::Forms::Padding(4);
-
 
3204
			this->CheckSYXenon->Name = L"CheckSYXenon";
3077
			this->CheckSYXenon->Name = L"CheckSYXenon";
3205
			this->CheckSYXenon->Size = System::Drawing::Size(120, 43);
3078
			this->CheckSYXenon->Size = System::Drawing::Size(90, 35);
3206
			this->CheckSYXenon->TabIndex = 7;
3079
			this->CheckSYXenon->TabIndex = 7;
3207
			this->CheckSYXenon->Text = L"Xenon";
3080
			this->CheckSYXenon->Text = L"Xenon";
3208
			this->CheckSYXenon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3081
			this->CheckSYXenon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3209
			this->CheckSYXenon->UseVisualStyleBackColor = true;
3082
			this->CheckSYXenon->UseVisualStyleBackColor = true;
3210
			this->CheckSYXenon->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYXenon_CheckedChanged);
3083
			this->CheckSYXenon->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYXenon_CheckedChanged);
3211
			// 
3084
			// 
3212
			// CheckSYTerran
3085
			// CheckSYTerran
3213
			// 
3086
			// 
3214
			this->CheckSYTerran->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTerran.Image")));
3087
			this->CheckSYTerran->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTerran.Image")));
3215
			this->CheckSYTerran->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3088
			this->CheckSYTerran->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3216
			this->CheckSYTerran->Location = System::Drawing::Point(260, 55);
3089
			this->CheckSYTerran->Location = System::Drawing::Point(195, 44);
3217
			this->CheckSYTerran->Margin = System::Windows::Forms::Padding(4);
-
 
3218
			this->CheckSYTerran->Name = L"CheckSYTerran";
3090
			this->CheckSYTerran->Name = L"CheckSYTerran";
3219
			this->CheckSYTerran->Size = System::Drawing::Size(120, 43);
3091
			this->CheckSYTerran->Size = System::Drawing::Size(90, 35);
3220
			this->CheckSYTerran->TabIndex = 8;
3092
			this->CheckSYTerran->TabIndex = 8;
3221
			this->CheckSYTerran->Text = L"Terran";
3093
			this->CheckSYTerran->Text = L"Terran";
3222
			this->CheckSYTerran->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3094
			this->CheckSYTerran->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3223
			this->CheckSYTerran->UseVisualStyleBackColor = true;
3095
			this->CheckSYTerran->UseVisualStyleBackColor = true;
3224
			this->CheckSYTerran->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYTerran_CheckedChanged);
3096
			this->CheckSYTerran->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYTerran_CheckedChanged);
3225
			// 
3097
			// 
3226
			// CheckSYATF
3098
			// CheckSYATF
3227
			// 
3099
			// 
3228
			this->CheckSYATF->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYATF.Image")));
3100
			this->CheckSYATF->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYATF.Image")));
3229
			this->CheckSYATF->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3101
			this->CheckSYATF->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3230
			this->CheckSYATF->Location = System::Drawing::Point(388, 55);
3102
			this->CheckSYATF->Location = System::Drawing::Point(291, 44);
3231
			this->CheckSYATF->Margin = System::Windows::Forms::Padding(4);
-
 
3232
			this->CheckSYATF->Name = L"CheckSYATF";
3103
			this->CheckSYATF->Name = L"CheckSYATF";
3233
			this->CheckSYATF->Size = System::Drawing::Size(120, 43);
3104
			this->CheckSYATF->Size = System::Drawing::Size(90, 35);
3234
			this->CheckSYATF->TabIndex = 9;
3105
			this->CheckSYATF->TabIndex = 9;
3235
			this->CheckSYATF->Text = L"ATF";
3106
			this->CheckSYATF->Text = L"ATF";
3236
			this->CheckSYATF->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3107
			this->CheckSYATF->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3237
			this->CheckSYATF->UseVisualStyleBackColor = true;
3108
			this->CheckSYATF->UseVisualStyleBackColor = true;
3238
			this->CheckSYATF->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYATF_CheckedChanged);
3109
			this->CheckSYATF->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYATF_CheckedChanged);
3239
			// 
3110
			// 
3240
			// CheckSYYaki
3111
			// CheckSYYaki
3241
			// 
3112
			// 
3242
			this->CheckSYYaki->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYYaki.Image")));
3113
			this->CheckSYYaki->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYYaki.Image")));
3243
			this->CheckSYYaki->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3114
			this->CheckSYYaki->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3244
			this->CheckSYYaki->Location = System::Drawing::Point(516, 55);
3115
			this->CheckSYYaki->Location = System::Drawing::Point(387, 44);
3245
			this->CheckSYYaki->Margin = System::Windows::Forms::Padding(4);
-
 
3246
			this->CheckSYYaki->Name = L"CheckSYYaki";
3116
			this->CheckSYYaki->Name = L"CheckSYYaki";
3247
			this->CheckSYYaki->Size = System::Drawing::Size(120, 43);
3117
			this->CheckSYYaki->Size = System::Drawing::Size(90, 35);
3248
			this->CheckSYYaki->TabIndex = 10;
3118
			this->CheckSYYaki->TabIndex = 10;
3249
			this->CheckSYYaki->Text = L"Yaki";
3119
			this->CheckSYYaki->Text = L"Yaki";
3250
			this->CheckSYYaki->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3120
			this->CheckSYYaki->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3251
			this->CheckSYYaki->UseVisualStyleBackColor = true;
3121
			this->CheckSYYaki->UseVisualStyleBackColor = true;
3252
			this->CheckSYYaki->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYYaki_CheckedChanged);
3122
			this->CheckSYYaki->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckSYYaki_CheckedChanged);
3253
			// 
3123
			// 
3254
			// PageRaw
3124
			// PageRaw
3255
			// 
3125
			// 
3256
			this->PageRaw->Controls->Add(this->panel23);
3126
			this->PageRaw->Controls->Add(this->panel23);
3257
			this->PageRaw->Controls->Add(this->flowLayoutPanel3);
3127
			this->PageRaw->Controls->Add(this->flowLayoutPanel3);
3258
			this->PageRaw->Location = System::Drawing::Point(4, 25);
3128
			this->PageRaw->Location = System::Drawing::Point(4, 22);
3259
			this->PageRaw->Margin = System::Windows::Forms::Padding(4);
-
 
3260
			this->PageRaw->Name = L"PageRaw";
3129
			this->PageRaw->Name = L"PageRaw";
3261
			this->PageRaw->Padding = System::Windows::Forms::Padding(4);
3130
			this->PageRaw->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
3262
			this->PageRaw->Size = System::Drawing::Size(999, 269);
3131
			this->PageRaw->Size = System::Drawing::Size(747, 216);
3263
			this->PageRaw->TabIndex = 7;
3132
			this->PageRaw->TabIndex = 7;
3264
			this->PageRaw->Text = L"Ship Data";
3133
			this->PageRaw->Text = L"Ship Data";
3265
			this->PageRaw->UseVisualStyleBackColor = true;
3134
			this->PageRaw->UseVisualStyleBackColor = true;
3266
			// 
3135
			// 
3267
			// panel23
3136
			// panel23
3268
			// 
3137
			// 
3269
			this->panel23->Controls->Add(this->TextShipData);
3138
			this->panel23->Controls->Add(this->TextShipData);
3270
			this->panel23->Controls->Add(this->panel24);
3139
			this->panel23->Controls->Add(this->panel24);
3271
			this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
3140
			this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
3272
			this->panel23->Location = System::Drawing::Point(4, 52);
3141
			this->panel23->Location = System::Drawing::Point(3, 42);
3273
			this->panel23->Margin = System::Windows::Forms::Padding(4);
-
 
3274
			this->panel23->Name = L"panel23";
3142
			this->panel23->Name = L"panel23";
3275
			this->panel23->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3143
			this->panel23->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
3276
			this->panel23->Size = System::Drawing::Size(991, 213);
3144
			this->panel23->Size = System::Drawing::Size(741, 171);
3277
			this->panel23->TabIndex = 3;
3145
			this->panel23->TabIndex = 3;
3278
			// 
3146
			// 
3279
			// TextShipData
3147
			// TextShipData
3280
			// 
3148
			// 
3281
			this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
3149
			this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
3282
			this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
3150
			this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
3283
			this->TextShipData->Location = System::Drawing::Point(13, 42);
3151
			this->TextShipData->Location = System::Drawing::Point(10, 34);
3284
			this->TextShipData->Margin = System::Windows::Forms::Padding(4);
-
 
3285
			this->TextShipData->Name = L"TextShipData";
3152
			this->TextShipData->Name = L"TextShipData";
3286
			this->TextShipData->ReadOnly = true;
3153
			this->TextShipData->ReadOnly = true;
3287
			this->TextShipData->Size = System::Drawing::Size(965, 159);
3154
			this->TextShipData->Size = System::Drawing::Size(721, 127);
3288
			this->TextShipData->TabIndex = 0;
3155
			this->TextShipData->TabIndex = 0;
3289
			this->TextShipData->Text = L"";
3156
			this->TextShipData->Text = L"";
3290
			this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
3157
			this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
3291
			// 
3158
			// 
3292
			// panel24
3159
			// panel24
3293
			// 
3160
			// 
3294
			this->panel24->Controls->Add(this->label17);
3161
			this->panel24->Controls->Add(this->label17);
3295
			this->panel24->Controls->Add(this->checkBox1);
3162
			this->panel24->Controls->Add(this->checkBox1);
3296
			this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
3163
			this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
3297
			this->panel24->Location = System::Drawing::Point(13, 12);
3164
			this->panel24->Location = System::Drawing::Point(10, 10);
3298
			this->panel24->Margin = System::Windows::Forms::Padding(4);
-
 
3299
			this->panel24->Name = L"panel24";
3165
			this->panel24->Name = L"panel24";
3300
			this->panel24->Size = System::Drawing::Size(965, 30);
3166
			this->panel24->Size = System::Drawing::Size(721, 24);
3301
			this->panel24->TabIndex = 2;
3167
			this->panel24->TabIndex = 2;
3302
			// 
3168
			// 
3303
			// label17
3169
			// label17
3304
			// 
3170
			// 
3305
			this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
3171
			this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
3306
			this->label17->Location = System::Drawing::Point(129, 0);
3172
			this->label17->Location = System::Drawing::Point(107, 0);
3307
			this->label17->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3308
			this->label17->Name = L"label17";
3173
			this->label17->Name = L"label17";
3309
			this->label17->Size = System::Drawing::Size(836, 30);
3174
			this->label17->Size = System::Drawing::Size(614, 24);
3310
			this->label17->TabIndex = 2;
3175
			this->label17->TabIndex = 2;
3311
			this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
3176
			this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
3312
			this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3177
			this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3313
			// 
3178
			// 
3314
			// checkBox1
3179
			// checkBox1
Line 3316... Line 3181...
3316
			this->checkBox1->AutoSize = true;
3181
			this->checkBox1->AutoSize = true;
3317
			this->checkBox1->Dock = System::Windows::Forms::DockStyle::Left;
3182
			this->checkBox1->Dock = System::Windows::Forms::DockStyle::Left;
3318
			this->checkBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3183
			this->checkBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3319
				static_cast<System::Byte>(0)));
3184
				static_cast<System::Byte>(0)));
3320
			this->checkBox1->Location = System::Drawing::Point(0, 0);
3185
			this->checkBox1->Location = System::Drawing::Point(0, 0);
3321
			this->checkBox1->Margin = System::Windows::Forms::Padding(4);
-
 
3322
			this->checkBox1->Name = L"checkBox1";
3186
			this->checkBox1->Name = L"checkBox1";
3323
			this->checkBox1->Size = System::Drawing::Size(129, 30);
3187
			this->checkBox1->Size = System::Drawing::Size(107, 24);
3324
			this->checkBox1->TabIndex = 1;
3188
			this->checkBox1->TabIndex = 1;
3325
			this->checkBox1->Text = L"Allow Edit";
3189
			this->checkBox1->Text = L"Allow Edit";
3326
			this->checkBox1->UseVisualStyleBackColor = true;
3190
			this->checkBox1->UseVisualStyleBackColor = true;
3327
			this->checkBox1->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::checkBox1_CheckedChanged);
3191
			this->checkBox1->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::checkBox1_CheckedChanged);
3328
			// 
3192
			// 
3329
			// flowLayoutPanel3
3193
			// flowLayoutPanel3
3330
			// 
3194
			// 
3331
			this->flowLayoutPanel3->Controls->Add(this->button3);
3195
			this->flowLayoutPanel3->Controls->Add(this->button3);
3332
			this->flowLayoutPanel3->Controls->Add(this->button5);
3196
			this->flowLayoutPanel3->Controls->Add(this->button5);
3333
			this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
3197
			this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
3334
			this->flowLayoutPanel3->Location = System::Drawing::Point(4, 4);
3198
			this->flowLayoutPanel3->Location = System::Drawing::Point(3, 3);
3335
			this->flowLayoutPanel3->Margin = System::Windows::Forms::Padding(4);
-
 
3336
			this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
3199
			this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
3337
			this->flowLayoutPanel3->Size = System::Drawing::Size(991, 48);
3200
			this->flowLayoutPanel3->Size = System::Drawing::Size(741, 39);
3338
			this->flowLayoutPanel3->TabIndex = 4;
3201
			this->flowLayoutPanel3->TabIndex = 4;
3339
			// 
3202
			// 
3340
			// button3
3203
			// button3
3341
			// 
3204
			// 
3342
			this->button3->AutoSize = true;
3205
			this->button3->AutoSize = true;
3343
			this->button3->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3206
			this->button3->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3344
			this->button3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button3.Image")));
3207
			this->button3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button3.Image")));
3345
			this->button3->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3208
			this->button3->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3346
			this->button3->Location = System::Drawing::Point(4, 4);
3209
			this->button3->Location = System::Drawing::Point(3, 3);
3347
			this->button3->Margin = System::Windows::Forms::Padding(4);
-
 
3348
			this->button3->Name = L"button3";
3210
			this->button3->Name = L"button3";
3349
			this->button3->Size = System::Drawing::Size(138, 28);
3211
			this->button3->Size = System::Drawing::Size(113, 28);
3350
			this->button3->TabIndex = 2;
3212
			this->button3->TabIndex = 2;
3351
			this->button3->Text = L"Load Ship Data";
3213
			this->button3->Text = L"Load Ship Data";
3352
			this->button3->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3214
			this->button3->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3353
			this->button3->UseVisualStyleBackColor = true;
3215
			this->button3->UseVisualStyleBackColor = true;
3354
			this->button3->Click += gcnew System::EventHandler(this, &PackageForm::button3_Click);
3216
			this->button3->Click += gcnew System::EventHandler(this, &PackageForm::button3_Click);
Line 3356... Line 3218...
3356
			// button5
3218
			// button5
3357
			// 
3219
			// 
3358
			this->button5->AutoSize = true;
3220
			this->button5->AutoSize = true;
3359
			this->button5->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3221
			this->button5->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3360
			this->button5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button5.Image")));
3222
			this->button5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button5.Image")));
3361
			this->button5->Location = System::Drawing::Point(150, 4);
3223
			this->button5->Location = System::Drawing::Point(122, 3);
3362
			this->button5->Margin = System::Windows::Forms::Padding(4);
-
 
3363
			this->button5->Name = L"button5";
3224
			this->button5->Name = L"button5";
3364
			this->button5->Size = System::Drawing::Size(137, 28);
3225
			this->button5->Size = System::Drawing::Size(111, 28);
3365
			this->button5->TabIndex = 3;
3226
			this->button5->TabIndex = 3;
3366
			this->button5->Text = L"Customise Ship";
3227
			this->button5->Text = L"Customise Ship";
3367
			this->button5->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3228
			this->button5->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3368
			this->button5->UseVisualStyleBackColor = true;
3229
			this->button5->UseVisualStyleBackColor = true;
3369
			this->button5->Click += gcnew System::EventHandler(this, &PackageForm::button5_Click);
3230
			this->button5->Click += gcnew System::EventHandler(this, &PackageForm::button5_Click);
3370
			// 
3231
			// 
3371
			// PageShipComp
3232
			// PageShipComp
3372
			// 
3233
			// 
3373
			this->PageShipComp->Controls->Add(this->panel26);
3234
			this->PageShipComp->Controls->Add(this->panel26);
3374
			this->PageShipComp->Controls->Add(this->panel25);
3235
			this->PageShipComp->Controls->Add(this->panel25);
3375
			this->PageShipComp->Location = System::Drawing::Point(4, 25);
3236
			this->PageShipComp->Location = System::Drawing::Point(4, 22);
3376
			this->PageShipComp->Margin = System::Windows::Forms::Padding(4);
-
 
3377
			this->PageShipComp->Name = L"PageShipComp";
3237
			this->PageShipComp->Name = L"PageShipComp";
3378
			this->PageShipComp->Padding = System::Windows::Forms::Padding(4);
3238
			this->PageShipComp->Padding = System::Windows::Forms::Padding(3, 3, 3, 3);
3379
			this->PageShipComp->Size = System::Drawing::Size(999, 269);
3239
			this->PageShipComp->Size = System::Drawing::Size(747, 216);
3380
			this->PageShipComp->TabIndex = 8;
3240
			this->PageShipComp->TabIndex = 8;
3381
			this->PageShipComp->Text = L"Ship Parts";
3241
			this->PageShipComp->Text = L"Ship Parts";
3382
			this->PageShipComp->UseVisualStyleBackColor = true;
3242
			this->PageShipComp->UseVisualStyleBackColor = true;
3383
			// 
3243
			// 
3384
			// panel26
3244
			// panel26
3385
			// 
3245
			// 
3386
			this->panel26->Controls->Add(this->ListShipPart);
3246
			this->panel26->Controls->Add(this->ListShipPart);
3387
			this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
3247
			this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
3388
			this->panel26->Location = System::Drawing::Point(4, 43);
3248
			this->panel26->Location = System::Drawing::Point(3, 35);
3389
			this->panel26->Margin = System::Windows::Forms::Padding(4);
-
 
3390
			this->panel26->Name = L"panel26";
3249
			this->panel26->Name = L"panel26";
3391
			this->panel26->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3250
			this->panel26->Padding = System::Windows::Forms::Padding(10, 10, 10, 10);
3392
			this->panel26->Size = System::Drawing::Size(991, 222);
3251
			this->panel26->Size = System::Drawing::Size(741, 178);
3393
			this->panel26->TabIndex = 4;
3252
			this->panel26->TabIndex = 4;
3394
			// 
3253
			// 
3395
			// ListShipPart
3254
			// ListShipPart
3396
			// 
3255
			// 
3397
			this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(3) {
3256
			this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(3) {
Line 3400... Line 3259...
3400
			});
3259
			});
3401
			this->ListShipPart->ContextMenuStrip = this->ContextShipPart;
3260
			this->ListShipPart->ContextMenuStrip = this->ContextShipPart;
3402
			this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3261
			this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3403
			this->ListShipPart->FullRowSelect = true;
3262
			this->ListShipPart->FullRowSelect = true;
3404
			this->ListShipPart->HideSelection = false;
3263
			this->ListShipPart->HideSelection = false;
3405
			this->ListShipPart->Location = System::Drawing::Point(13, 12);
3264
			this->ListShipPart->Location = System::Drawing::Point(10, 10);
3406
			this->ListShipPart->Margin = System::Windows::Forms::Padding(4);
-
 
3407
			this->ListShipPart->Name = L"ListShipPart";
3265
			this->ListShipPart->Name = L"ListShipPart";
3408
			this->ListShipPart->Size = System::Drawing::Size(965, 198);
3266
			this->ListShipPart->Size = System::Drawing::Size(721, 158);
3409
			this->ListShipPart->TabIndex = 3;
3267
			this->ListShipPart->TabIndex = 3;
3410
			this->ListShipPart->UseCompatibleStateImageBehavior = false;
3268
			this->ListShipPart->UseCompatibleStateImageBehavior = false;
3411
			this->ListShipPart->View = System::Windows::Forms::View::Details;
3269
			this->ListShipPart->View = System::Windows::Forms::View::Details;
3412
			this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
3270
			this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
3413
			// 
3271
			// 
Line 3418... Line 3276...
3418
				this->importToolStripMenuItem,
3276
				this->importToolStripMenuItem,
3419
					this->ContextShipPartAdd, this->ContextShipPartSep1, this->ContextShipPartRemove, this->ContextShipPartEdit, this->ContextShipPartSep2,
3277
					this->ContextShipPartAdd, this->ContextShipPartSep1, this->ContextShipPartRemove, this->ContextShipPartEdit, this->ContextShipPartSep2,
3420
					this->ContextShipPartClear
3278
					this->ContextShipPartClear
3421
			});
3279
			});
3422
			this->ContextShipPart->Name = L"ContextShipPart";
3280
			this->ContextShipPart->Name = L"ContextShipPart";
3423
			this->ContextShipPart->Size = System::Drawing::Size(210, 206);
3281
			this->ContextShipPart->Size = System::Drawing::Size(181, 206);
3424
			this->ContextShipPart->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextShipPart_Opening);
3282
			this->ContextShipPart->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextShipPart_Opening);
3425
			// 
3283
			// 
3426
			// importToolStripMenuItem
3284
			// importToolStripMenuItem
3427
			// 
3285
			// 
3428
			this->importToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importToolStripMenuItem.Image")));
3286
			this->importToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importToolStripMenuItem.Image")));
3429
			this->importToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3287
			this->importToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3430
			this->importToolStripMenuItem->Name = L"importToolStripMenuItem";
3288
			this->importToolStripMenuItem->Name = L"importToolStripMenuItem";
3431
			this->importToolStripMenuItem->Size = System::Drawing::Size(209, 38);
3289
			this->importToolStripMenuItem->Size = System::Drawing::Size(180, 38);
3432
			this->importToolStripMenuItem->Text = L"Import";
3290
			this->importToolStripMenuItem->Text = L"Import";
3433
			this->importToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::importToolStripMenuItem_Click);
3291
			this->importToolStripMenuItem->Click += gcnew System::EventHandler(this, &PackageForm::importToolStripMenuItem_Click);
3434
			// 
3292
			// 
3435
			// ContextShipPartAdd
3293
			// ContextShipPartAdd
3436
			// 
3294
			// 
3437
			this->ContextShipPartAdd->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartAdd.Image")));
3295
			this->ContextShipPartAdd->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartAdd.Image")));
3438
			this->ContextShipPartAdd->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3296
			this->ContextShipPartAdd->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3439
			this->ContextShipPartAdd->Name = L"ContextShipPartAdd";
3297
			this->ContextShipPartAdd->Name = L"ContextShipPartAdd";
3440
			this->ContextShipPartAdd->Size = System::Drawing::Size(209, 38);
3298
			this->ContextShipPartAdd->Size = System::Drawing::Size(180, 38);
3441
			this->ContextShipPartAdd->Text = L"Add";
3299
			this->ContextShipPartAdd->Text = L"Add";
3442
			this->ContextShipPartAdd->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartAdd_Click);
3300
			this->ContextShipPartAdd->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartAdd_Click);
3443
			// 
3301
			// 
3444
			// ContextShipPartSep1
3302
			// ContextShipPartSep1
3445
			// 
3303
			// 
3446
			this->ContextShipPartSep1->Name = L"ContextShipPartSep1";
3304
			this->ContextShipPartSep1->Name = L"ContextShipPartSep1";
3447
			this->ContextShipPartSep1->Size = System::Drawing::Size(206, 6);
3305
			this->ContextShipPartSep1->Size = System::Drawing::Size(177, 6);
3448
			// 
3306
			// 
3449
			// ContextShipPartRemove
3307
			// ContextShipPartRemove
3450
			// 
3308
			// 
3451
			this->ContextShipPartRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartRemove.Image")));
3309
			this->ContextShipPartRemove->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartRemove.Image")));
3452
			this->ContextShipPartRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3310
			this->ContextShipPartRemove->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3453
			this->ContextShipPartRemove->Name = L"ContextShipPartRemove";
3311
			this->ContextShipPartRemove->Name = L"ContextShipPartRemove";
3454
			this->ContextShipPartRemove->Size = System::Drawing::Size(209, 38);
3312
			this->ContextShipPartRemove->Size = System::Drawing::Size(180, 38);
3455
			this->ContextShipPartRemove->Text = L"Remove Selected";
3313
			this->ContextShipPartRemove->Text = L"Remove Selected";
3456
			this->ContextShipPartRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartRemove_Click);
3314
			this->ContextShipPartRemove->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartRemove_Click);
3457
			// 
3315
			// 
3458
			// ContextShipPartEdit
3316
			// ContextShipPartEdit
3459
			// 
3317
			// 
3460
			this->ContextShipPartEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartEdit.Image")));
3318
			this->ContextShipPartEdit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartEdit.Image")));
3461
			this->ContextShipPartEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3319
			this->ContextShipPartEdit->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3462
			this->ContextShipPartEdit->Name = L"ContextShipPartEdit";
3320
			this->ContextShipPartEdit->Name = L"ContextShipPartEdit";
3463
			this->ContextShipPartEdit->Size = System::Drawing::Size(209, 38);
3321
			this->ContextShipPartEdit->Size = System::Drawing::Size(180, 38);
3464
			this->ContextShipPartEdit->Text = L"Edit Selected";
3322
			this->ContextShipPartEdit->Text = L"Edit Selected";
3465
			this->ContextShipPartEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartEdit_Click);
3323
			this->ContextShipPartEdit->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartEdit_Click);
3466
			// 
3324
			// 
3467
			// ContextShipPartSep2
3325
			// ContextShipPartSep2
3468
			// 
3326
			// 
3469
			this->ContextShipPartSep2->Name = L"ContextShipPartSep2";
3327
			this->ContextShipPartSep2->Name = L"ContextShipPartSep2";
3470
			this->ContextShipPartSep2->Size = System::Drawing::Size(206, 6);
3328
			this->ContextShipPartSep2->Size = System::Drawing::Size(177, 6);
3471
			// 
3329
			// 
3472
			// ContextShipPartClear
3330
			// ContextShipPartClear
3473
			// 
3331
			// 
3474
			this->ContextShipPartClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartClear.Image")));
3332
			this->ContextShipPartClear->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"ContextShipPartClear.Image")));
3475
			this->ContextShipPartClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3333
			this->ContextShipPartClear->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3476
			this->ContextShipPartClear->Name = L"ContextShipPartClear";
3334
			this->ContextShipPartClear->Name = L"ContextShipPartClear";
3477
			this->ContextShipPartClear->Size = System::Drawing::Size(209, 38);
3335
			this->ContextShipPartClear->Size = System::Drawing::Size(180, 38);
3478
			this->ContextShipPartClear->Text = L"Clear All";
3336
			this->ContextShipPartClear->Text = L"Clear All";
3479
			this->ContextShipPartClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartClear_Click);
3337
			this->ContextShipPartClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextShipPartClear_Click);
3480
			// 
3338
			// 
3481
			// panel25
3339
			// panel25
3482
			// 
3340
			// 
3483
			this->panel25->Controls->Add(this->ComboShipPart);
3341
			this->panel25->Controls->Add(this->ComboShipPart);
3484
			this->panel25->Controls->Add(this->label18);
3342
			this->panel25->Controls->Add(this->label18);
3485
			this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
3343
			this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
3486
			this->panel25->Location = System::Drawing::Point(4, 4);
3344
			this->panel25->Location = System::Drawing::Point(3, 3);
3487
			this->panel25->Margin = System::Windows::Forms::Padding(4);
-
 
3488
			this->panel25->Name = L"panel25";
3345
			this->panel25->Name = L"panel25";
3489
			this->panel25->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3346
			this->panel25->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
3490
			this->panel25->Size = System::Drawing::Size(991, 39);
3347
			this->panel25->Size = System::Drawing::Size(741, 32);
3491
			this->panel25->TabIndex = 2;
3348
			this->panel25->TabIndex = 2;
3492
			// 
3349
			// 
3493
			// ComboShipPart
3350
			// ComboShipPart
3494
			// 
3351
			// 
3495
			this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3352
			this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
Line 3497... Line 3354...
3497
			this->ComboShipPart->FormattingEnabled = true;
3354
			this->ComboShipPart->FormattingEnabled = true;
3498
			this->ComboShipPart->Items->AddRange(gcnew cli::array< System::Object^  >(6) {
3355
			this->ComboShipPart->Items->AddRange(gcnew cli::array< System::Object^  >(6) {
3499
				L"Componants", L"Dummies", L"Cockpits", L"CutData",
3356
				L"Componants", L"Dummies", L"Cockpits", L"CutData",
3500
					L"Bodies", L"Animations"
3357
					L"Bodies", L"Animations"
3501
			});
3358
			});
3502
			this->ComboShipPart->Location = System::Drawing::Point(140, 6);
3359
			this->ComboShipPart->Location = System::Drawing::Point(105, 5);
3503
			this->ComboShipPart->Margin = System::Windows::Forms::Padding(4);
-
 
3504
			this->ComboShipPart->Name = L"ComboShipPart";
3360
			this->ComboShipPart->Name = L"ComboShipPart";
3505
			this->ComboShipPart->Size = System::Drawing::Size(844, 24);
3361
			this->ComboShipPart->Size = System::Drawing::Size(631, 21);
3506
			this->ComboShipPart->TabIndex = 0;
3362
			this->ComboShipPart->TabIndex = 0;
3507
			this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
3363
			this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
3508
			// 
3364
			// 
3509
			// label18
3365
			// label18
3510
			// 
3366
			// 
3511
			this->label18->Dock = System::Windows::Forms::DockStyle::Left;
3367
			this->label18->Dock = System::Windows::Forms::DockStyle::Left;
3512
			this->label18->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3368
			this->label18->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3513
				static_cast<System::Byte>(0)));
3369
				static_cast<System::Byte>(0)));
3514
			this->label18->Location = System::Drawing::Point(7, 6);
3370
			this->label18->Location = System::Drawing::Point(5, 5);
3515
			this->label18->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3516
			this->label18->Name = L"label18";
3371
			this->label18->Name = L"label18";
3517
			this->label18->Size = System::Drawing::Size(133, 27);
3372
			this->label18->Size = System::Drawing::Size(100, 22);
3518
			this->label18->TabIndex = 1;
3373
			this->label18->TabIndex = 1;
3519
			this->label18->Text = L"Part Type";
3374
			this->label18->Text = L"Part Type";
3520
			this->label18->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3375
			this->label18->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3521
			// 
3376
			// 
3522
			// CheckShipID
3377
			// CheckShipID
3523
			// 
3378
			// 
3524
			this->CheckShipID->AutoSize = true;
3379
			this->CheckShipID->AutoSize = true;
3525
			this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
3380
			this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
3526
			this->CheckShipID->Location = System::Drawing::Point(209, 0);
3381
			this->CheckShipID->Location = System::Drawing::Point(157, 0);
3527
			this->CheckShipID->Margin = System::Windows::Forms::Padding(4);
-
 
3528
			this->CheckShipID->Name = L"CheckShipID";
3382
			this->CheckShipID->Name = L"CheckShipID";
3529
			this->CheckShipID->Size = System::Drawing::Size(166, 25);
3383
			this->CheckShipID->Size = System::Drawing::Size(129, 20);
3530
			this->CheckShipID->TabIndex = 2;
3384
			this->CheckShipID->TabIndex = 2;
3531
			this->CheckShipID->Text = L"Replace Existing Ship";
3385
			this->CheckShipID->Text = L"Replace Existing Ship";
3532
			this->CheckShipID->UseVisualStyleBackColor = true;
3386
			this->CheckShipID->UseVisualStyleBackColor = true;
3533
			this->CheckShipID->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckShipID_CheckedChanged);
3387
			this->CheckShipID->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckShipID_CheckedChanged);
3534
			// 
3388
			// 
3535
			// panel1
3389
			// panel1
3536
			// 
3390
			// 
3537
			this->panel1->Controls->Add(this->TextName);
3391
			this->panel1->Controls->Add(this->TextName);
3538
			this->panel1->Controls->Add(this->label1);
3392
			this->panel1->Controls->Add(this->label1);
3539
			this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
3393
			this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
3540
			this->panel1->Location = System::Drawing::Point(7, 37);
3394
			this->panel1->Location = System::Drawing::Point(5, 36);
3541
			this->panel1->Margin = System::Windows::Forms::Padding(4);
-
 
3542
			this->panel1->Name = L"panel1";
3395
			this->panel1->Name = L"panel1";
3543
			this->panel1->Size = System::Drawing::Size(1007, 21);
3396
			this->panel1->Size = System::Drawing::Size(756, 17);
3544
			this->panel1->TabIndex = 2;
3397
			this->panel1->TabIndex = 2;
3545
			// 
3398
			// 
3546
			// TextName
3399
			// TextName
3547
			// 
3400
			// 
3548
			this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
3401
			this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
3549
			this->TextName->Location = System::Drawing::Point(209, 0);
3402
			this->TextName->Location = System::Drawing::Point(157, 0);
3550
			this->TextName->Margin = System::Windows::Forms::Padding(4);
-
 
3551
			this->TextName->Name = L"TextName";
3403
			this->TextName->Name = L"TextName";
3552
			this->TextName->Size = System::Drawing::Size(798, 22);
3404
			this->TextName->Size = System::Drawing::Size(599, 20);
3553
			this->TextName->TabIndex = 1;
3405
			this->TextName->TabIndex = 1;
3554
			this->TextName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextName_TextChanged);
3406
			this->TextName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextName_TextChanged);
3555
			// 
3407
			// 
3556
			// label1
3408
			// label1
3557
			// 
3409
			// 
3558
			this->label1->Dock = System::Windows::Forms::DockStyle::Left;
3410
			this->label1->Dock = System::Windows::Forms::DockStyle::Left;
3559
			this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3411
			this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3560
				static_cast<System::Byte>(0)));
3412
				static_cast<System::Byte>(0)));
3561
			this->label1->Location = System::Drawing::Point(0, 0);
3413
			this->label1->Location = System::Drawing::Point(0, 0);
3562
			this->label1->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3563
			this->label1->Name = L"label1";
3414
			this->label1->Name = L"label1";
3564
			this->label1->Size = System::Drawing::Size(209, 21);
3415
			this->label1->Size = System::Drawing::Size(157, 17);
3565
			this->label1->TabIndex = 0;
3416
			this->label1->TabIndex = 0;
3566
			this->label1->Text = L"Package Name";
3417
			this->label1->Text = L"Package Name";
3567
			this->label1->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3418
			this->label1->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3568
			// 
3419
			// 
3569
			// panel2
3420
			// panel2
3570
			// 
3421
			// 
3571
			this->panel2->Controls->Add(this->TextAuthor);
3422
			this->panel2->Controls->Add(this->TextAuthor);
3572
			this->panel2->Controls->Add(this->label2);
3423
			this->panel2->Controls->Add(this->label2);
3573
			this->panel2->Dock = System::Windows::Forms::DockStyle::Top;
3424
			this->panel2->Dock = System::Windows::Forms::DockStyle::Top;
3574
			this->panel2->Location = System::Drawing::Point(7, 58);
3425
			this->panel2->Location = System::Drawing::Point(5, 53);
3575
			this->panel2->Margin = System::Windows::Forms::Padding(4);
-
 
3576
			this->panel2->Name = L"panel2";
3426
			this->panel2->Name = L"panel2";
3577
			this->panel2->Size = System::Drawing::Size(1007, 25);
3427
			this->panel2->Size = System::Drawing::Size(756, 20);
3578
			this->panel2->TabIndex = 3;
3428
			this->panel2->TabIndex = 3;
3579
			// 
3429
			// 
3580
			// TextAuthor
3430
			// TextAuthor
3581
			// 
3431
			// 
3582
			this->TextAuthor->Dock = System::Windows::Forms::DockStyle::Fill;
3432
			this->TextAuthor->Dock = System::Windows::Forms::DockStyle::Fill;
3583
			this->TextAuthor->Location = System::Drawing::Point(209, 0);
3433
			this->TextAuthor->Location = System::Drawing::Point(157, 0);
3584
			this->TextAuthor->Margin = System::Windows::Forms::Padding(4);
-
 
3585
			this->TextAuthor->Name = L"TextAuthor";
3434
			this->TextAuthor->Name = L"TextAuthor";
3586
			this->TextAuthor->Size = System::Drawing::Size(798, 22);
3435
			this->TextAuthor->Size = System::Drawing::Size(599, 20);
3587
			this->TextAuthor->TabIndex = 1;
3436
			this->TextAuthor->TabIndex = 1;
3588
			this->TextAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextAuthor_TextChanged);
3437
			this->TextAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextAuthor_TextChanged);
3589
			// 
3438
			// 
3590
			// label2
3439
			// label2
3591
			// 
3440
			// 
3592
			this->label2->Dock = System::Windows::Forms::DockStyle::Left;
3441
			this->label2->Dock = System::Windows::Forms::DockStyle::Left;
3593
			this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3442
			this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3594
				static_cast<System::Byte>(0)));
3443
				static_cast<System::Byte>(0)));
3595
			this->label2->Location = System::Drawing::Point(0, 0);
3444
			this->label2->Location = System::Drawing::Point(0, 0);
3596
			this->label2->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3597
			this->label2->Name = L"label2";
3445
			this->label2->Name = L"label2";
3598
			this->label2->Size = System::Drawing::Size(209, 25);
3446
			this->label2->Size = System::Drawing::Size(157, 20);
3599
			this->label2->TabIndex = 0;
3447
			this->label2->TabIndex = 0;
3600
			this->label2->Text = L"Author";
3448
			this->label2->Text = L"Author";
3601
			this->label2->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3449
			this->label2->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3602
			// 
3450
			// 
3603
			// panel3
3451
			// panel3
3604
			// 
3452
			// 
3605
			this->panel3->Controls->Add(this->TextVersion);
3453
			this->panel3->Controls->Add(this->TextVersion);
3606
			this->panel3->Controls->Add(this->label3);
3454
			this->panel3->Controls->Add(this->label3);
3607
			this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
3455
			this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
3608
			this->panel3->Location = System::Drawing::Point(7, 83);
3456
			this->panel3->Location = System::Drawing::Point(5, 73);
3609
			this->panel3->Margin = System::Windows::Forms::Padding(4);
-
 
3610
			this->panel3->Name = L"panel3";
3457
			this->panel3->Name = L"panel3";
3611
			this->panel3->Size = System::Drawing::Size(1007, 25);
3458
			this->panel3->Size = System::Drawing::Size(756, 20);
3612
			this->panel3->TabIndex = 4;
3459
			this->panel3->TabIndex = 4;
3613
			// 
3460
			// 
3614
			// TextVersion
3461
			// TextVersion
3615
			// 
3462
			// 
3616
			this->TextVersion->Dock = System::Windows::Forms::DockStyle::Fill;
3463
			this->TextVersion->Dock = System::Windows::Forms::DockStyle::Fill;
3617
			this->TextVersion->Location = System::Drawing::Point(209, 0);
3464
			this->TextVersion->Location = System::Drawing::Point(157, 0);
3618
			this->TextVersion->Margin = System::Windows::Forms::Padding(4);
-
 
3619
			this->TextVersion->Name = L"TextVersion";
3465
			this->TextVersion->Name = L"TextVersion";
3620
			this->TextVersion->Size = System::Drawing::Size(798, 22);
3466
			this->TextVersion->Size = System::Drawing::Size(599, 20);
3621
			this->TextVersion->TabIndex = 1;
3467
			this->TextVersion->TabIndex = 1;
3622
			this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
3468
			this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
3623
			// 
3469
			// 
3624
			// label3
3470
			// label3
3625
			// 
3471
			// 
3626
			this->label3->Dock = System::Windows::Forms::DockStyle::Left;
3472
			this->label3->Dock = System::Windows::Forms::DockStyle::Left;
3627
			this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3473
			this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3628
				static_cast<System::Byte>(0)));
3474
				static_cast<System::Byte>(0)));
3629
			this->label3->Location = System::Drawing::Point(0, 0);
3475
			this->label3->Location = System::Drawing::Point(0, 0);
3630
			this->label3->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3631
			this->label3->Name = L"label3";
3476
			this->label3->Name = L"label3";
3632
			this->label3->Size = System::Drawing::Size(209, 25);
3477
			this->label3->Size = System::Drawing::Size(157, 20);
3633
			this->label3->TabIndex = 0;
3478
			this->label3->TabIndex = 0;
3634
			this->label3->Text = L"Version";
3479
			this->label3->Text = L"Version";
3635
			this->label3->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3480
			this->label3->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3636
			// 
3481
			// 
3637
			// panel4
3482
			// panel4
3638
			// 
3483
			// 
3639
			this->panel4->Controls->Add(this->CreationDate);
3484
			this->panel4->Controls->Add(this->CreationDate);
3640
			this->panel4->Controls->Add(this->label4);
3485
			this->panel4->Controls->Add(this->label4);
3641
			this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
3486
			this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
3642
			this->panel4->Location = System::Drawing::Point(7, 108);
3487
			this->panel4->Location = System::Drawing::Point(5, 93);
3643
			this->panel4->Margin = System::Windows::Forms::Padding(4);
-
 
3644
			this->panel4->Name = L"panel4";
3488
			this->panel4->Name = L"panel4";
3645
			this->panel4->Size = System::Drawing::Size(1007, 25);
3489
			this->panel4->Size = System::Drawing::Size(756, 20);
3646
			this->panel4->TabIndex = 5;
3490
			this->panel4->TabIndex = 5;
3647
			// 
3491
			// 
3648
			// CreationDate
3492
			// CreationDate
3649
			// 
3493
			// 
3650
			this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
3494
			this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
3651
			this->CreationDate->Location = System::Drawing::Point(209, 0);
3495
			this->CreationDate->Location = System::Drawing::Point(157, 0);
3652
			this->CreationDate->Margin = System::Windows::Forms::Padding(4);
-
 
3653
			this->CreationDate->Name = L"CreationDate";
3496
			this->CreationDate->Name = L"CreationDate";
3654
			this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
3497
			this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
3655
			this->CreationDate->Size = System::Drawing::Size(798, 22);
3498
			this->CreationDate->Size = System::Drawing::Size(599, 20);
3656
			this->CreationDate->TabIndex = 2;
3499
			this->CreationDate->TabIndex = 2;
3657
			this->CreationDate->Checked = true;
-
 
3658
			this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
3500
			this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
3659
			this->CreationDate->ValueChanged += gcnew System::EventHandler(this, &PackageForm::CreationDate_ValueChanged);
3501
			this->CreationDate->ValueChanged += gcnew System::EventHandler(this, &PackageForm::CreationDate_ValueChanged);
3660
			// 
3502
			// 
3661
			// label4
3503
			// label4
3662
			// 
3504
			// 
3663
			this->label4->Dock = System::Windows::Forms::DockStyle::Left;
3505
			this->label4->Dock = System::Windows::Forms::DockStyle::Left;
3664
			this->label4->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3506
			this->label4->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3665
				static_cast<System::Byte>(0)));
3507
				static_cast<System::Byte>(0)));
3666
			this->label4->Location = System::Drawing::Point(0, 0);
3508
			this->label4->Location = System::Drawing::Point(0, 0);
3667
			this->label4->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3668
			this->label4->Name = L"label4";
3509
			this->label4->Name = L"label4";
3669
			this->label4->Size = System::Drawing::Size(209, 25);
3510
			this->label4->Size = System::Drawing::Size(157, 20);
3670
			this->label4->TabIndex = 0;
3511
			this->label4->TabIndex = 0;
3671
			this->label4->Text = L"Creation Date";
3512
			this->label4->Text = L"Creation Date";
3672
			this->label4->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3513
			this->label4->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3673
			// 
3514
			// 
3674
			// label6
3515
			// label6
3675
			// 
3516
			// 
3676
			this->label6->Dock = System::Windows::Forms::DockStyle::Left;
3517
			this->label6->Dock = System::Windows::Forms::DockStyle::Left;
3677
			this->label6->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3518
			this->label6->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3678
				static_cast<System::Byte>(0)));
3519
				static_cast<System::Byte>(0)));
3679
			this->label6->Location = System::Drawing::Point(0, 0);
3520
			this->label6->Location = System::Drawing::Point(0, 0);
3680
			this->label6->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
-
 
3681
			this->label6->Name = L"label6";
3521
			this->label6->Name = L"label6";
3682
			this->label6->Size = System::Drawing::Size(209, 25);
3522
			this->label6->Size = System::Drawing::Size(157, 20);
3683
			this->label6->TabIndex = 1;
3523
			this->label6->TabIndex = 1;
3684
			this->label6->Text = L"Ship ID";
3524
			this->label6->Text = L"Ship ID";
3685
			this->label6->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3525
			this->label6->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3686
			// 
3526
			// 
3687
			// PanelShip
3527
			// PanelShip
3688
			// 
3528
			// 
3689
			this->PanelShip->Controls->Add(this->TextShipID);
3529
			this->PanelShip->Controls->Add(this->TextShipID);
3690
			this->PanelShip->Controls->Add(this->CheckShipID);
3530
			this->PanelShip->Controls->Add(this->CheckShipID);
3691
			this->PanelShip->Controls->Add(this->label6);
3531
			this->PanelShip->Controls->Add(this->label6);
3692
			this->PanelShip->Dock = System::Windows::Forms::DockStyle::Top;
3532
			this->PanelShip->Dock = System::Windows::Forms::DockStyle::Top;
3693
			this->PanelShip->Location = System::Drawing::Point(7, 133);
3533
			this->PanelShip->Location = System::Drawing::Point(5, 113);
3694
			this->PanelShip->Margin = System::Windows::Forms::Padding(4);
-
 
3695
			this->PanelShip->Name = L"PanelShip";
3534
			this->PanelShip->Name = L"PanelShip";
3696
			this->PanelShip->Size = System::Drawing::Size(1007, 25);
3535
			this->PanelShip->Size = System::Drawing::Size(756, 20);
3697
			this->PanelShip->TabIndex = 6;
3536
			this->PanelShip->TabIndex = 6;
3698
			// 
3537
			// 
3699
			// TextShipID
3538
			// TextShipID
3700
			// 
3539
			// 
3701
			this->TextShipID->Dock = System::Windows::Forms::DockStyle::Fill;
3540
			this->TextShipID->Dock = System::Windows::Forms::DockStyle::Fill;
3702
			this->TextShipID->Location = System::Drawing::Point(375, 0);
3541
			this->TextShipID->Location = System::Drawing::Point(286, 0);
3703
			this->TextShipID->Margin = System::Windows::Forms::Padding(4);
-
 
3704
			this->TextShipID->Name = L"TextShipID";
3542
			this->TextShipID->Name = L"TextShipID";
3705
			this->TextShipID->Size = System::Drawing::Size(632, 22);
3543
			this->TextShipID->Size = System::Drawing::Size(470, 20);
3706
			this->TextShipID->TabIndex = 2;
3544
			this->TextShipID->TabIndex = 2;
3707
			this->TextShipID->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipID_TextChanged);
3545
			this->TextShipID->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipID_TextChanged);
3708
			// 
3546
			// 
3709
			// toolStrip1
3547
			// toolStrip1
3710
			// 
3548
			// 
Line 3713... Line 3551...
3713
			this->toolStrip1->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(8) {
3551
			this->toolStrip1->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(8) {
3714
				this->toolStripButton2,
3552
				this->toolStripButton2,
3715
					this->toolStripButton3, this->toolStripButton5, this->toolStripSeparator3, this->toolStripButton1, this->toolStripButton4, this->toolStripSeparator4,
3553
					this->toolStripButton3, this->toolStripButton5, this->toolStripSeparator3, this->toolStripButton1, this->toolStripButton4, this->toolStripSeparator4,
3716
					this->ToolCustomise
3554
					this->ToolCustomise
3717
			});
3555
			});
3718
			this->toolStrip1->Location = System::Drawing::Point(7, 6);
3556
			this->toolStrip1->Location = System::Drawing::Point(5, 5);
3719
			this->toolStrip1->Name = L"toolStrip1";
3557
			this->toolStrip1->Name = L"toolStrip1";
3720
			this->toolStrip1->Size = System::Drawing::Size(1007, 31);
3558
			this->toolStrip1->Size = System::Drawing::Size(756, 31);
3721
			this->toolStrip1->Stretch = true;
3559
			this->toolStrip1->Stretch = true;
3722
			this->toolStrip1->TabIndex = 7;
3560
			this->toolStrip1->TabIndex = 7;
3723
			this->toolStrip1->Text = L"toolStrip1";
3561
			this->toolStrip1->Text = L"toolStrip1";
3724
			// 
3562
			// 
3725
			// toolStripButton2
3563
			// toolStripButton2
3726
			// 
3564
			// 
3727
			this->toolStripButton2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton2.Image")));
3565
			this->toolStripButton2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton2.Image")));
3728
			this->toolStripButton2->ImageTransparentColor = System::Drawing::Color::Magenta;
3566
			this->toolStripButton2->ImageTransparentColor = System::Drawing::Color::Magenta;
3729
			this->toolStripButton2->Name = L"toolStripButton2";
3567
			this->toolStripButton2->Name = L"toolStripButton2";
3730
			this->toolStripButton2->Size = System::Drawing::Size(68, 28);
3568
			this->toolStripButton2->Size = System::Drawing::Size(59, 28);
3731
			this->toolStripButton2->Text = L"Save";
3569
			this->toolStripButton2->Text = L"Save";
3732
			this->toolStripButton2->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton2_Click);
3570
			this->toolStripButton2->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton2_Click);
3733
			// 
3571
			// 
3734
			// toolStripButton3
3572
			// toolStripButton3
3735
			// 
3573
			// 
3736
			this->toolStripButton3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton3.Image")));
3574
			this->toolStripButton3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton3.Image")));
3737
			this->toolStripButton3->ImageTransparentColor = System::Drawing::Color::Magenta;
3575
			this->toolStripButton3->ImageTransparentColor = System::Drawing::Color::Magenta;
3738
			this->toolStripButton3->Name = L"toolStripButton3";
3576
			this->toolStripButton3->Name = L"toolStripButton3";
3739
			this->toolStripButton3->Size = System::Drawing::Size(88, 28);
3577
			this->toolStripButton3->Size = System::Drawing::Size(75, 28);
3740
			this->toolStripButton3->Text = L"Save As";
3578
			this->toolStripButton3->Text = L"Save As";
3741
			this->toolStripButton3->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton3_Click);
3579
			this->toolStripButton3->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton3_Click);
3742
			// 
3580
			// 
3743
			// toolStripButton5
3581
			// toolStripButton5
3744
			// 
3582
			// 
3745
			this->toolStripButton5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton5.Image")));
3583
			this->toolStripButton5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"toolStripButton5.Image")));
3746
			this->toolStripButton5->ImageTransparentColor = System::Drawing::Color::Magenta;
3584
			this->toolStripButton5->ImageTransparentColor = System::Drawing::Color::Magenta;
3747
			this->toolStripButton5->Name = L"toolStripButton5";
3585
			this->toolStripButton5->Name = L"toolStripButton5";
3748
			this->toolStripButton5->Size = System::Drawing::Size(80, 28);
3586
			this->toolStripButton5->Size = System::Drawing::Size(69, 28);
3749
			this->toolStripButton5->Text = L"Export";
3587
			this->toolStripButton5->Text = L"Export";
3750
			this->toolStripButton5->ToolTipText = L"Exports the package to an archive";
3588
			this->toolStripButton5->ToolTipText = L"Exports the package to an archive";
3751
			this->toolStripButton5->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton5_Click);
3589
			this->toolStripButton5->Click += gcnew System::EventHandler(this, &PackageForm::toolStripButton5_Click);
3752
			// 
3590
			// 
3753
			// toolStripSeparator3
3591
			// toolStripSeparator3
Line 3816... Line 3654...
3816
			this->toolTip2->Popup += gcnew System::Windows::Forms::PopupEventHandler(this, &PackageForm::toolTip2_Popup);
3654
			this->toolTip2->Popup += gcnew System::Windows::Forms::PopupEventHandler(this, &PackageForm::toolTip2_Popup);
3817
			// 
3655
			// 
3818
			// PackageForm
3656
			// PackageForm
3819
			// 
3657
			// 
3820
			this->AllowDrop = true;
3658
			this->AllowDrop = true;
3821
			this->AutoScaleDimensions = System::Drawing::SizeF(8, 16);
3659
			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
3822
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
3660
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
3823
			this->ClientSize = System::Drawing::Size(1021, 874);
3661
			this->ClientSize = System::Drawing::Size(766, 710);
3824
			this->Controls->Add(this->groupBox1);
3662
			this->Controls->Add(this->groupBox1);
3825
			this->Controls->Add(this->tabControl1);
3663
			this->Controls->Add(this->tabControl1);
3826
			this->Controls->Add(this->PanelShip);
3664
			this->Controls->Add(this->PanelShip);
3827
			this->Controls->Add(this->panel4);
3665
			this->Controls->Add(this->panel4);
3828
			this->Controls->Add(this->panel3);
3666
			this->Controls->Add(this->panel3);
3829
			this->Controls->Add(this->panel2);
3667
			this->Controls->Add(this->panel2);
3830
			this->Controls->Add(this->panel1);
3668
			this->Controls->Add(this->panel1);
3831
			this->Controls->Add(this->toolStrip1);
3669
			this->Controls->Add(this->toolStrip1);
3832
			this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
3670
			this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
3833
			this->Margin = System::Windows::Forms::Padding(4);
-
 
3834
			this->Name = L"PackageForm";
3671
			this->Name = L"PackageForm";
3835
			this->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3672
			this->Padding = System::Windows::Forms::Padding(5, 5, 5, 5);
3836
			this->ShowIcon = false;
3673
			this->ShowIcon = false;
3837
			this->ShowInTaskbar = false;
3674
			this->ShowInTaskbar = false;
3838
			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
3675
			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
3839
			this->Text = L"Package";
3676
			this->Text = L"Package";
3840
			this->Load += gcnew System::EventHandler(this, &PackageForm::PackageForm_Load);
3677
			this->Load += gcnew System::EventHandler(this, &PackageForm::PackageForm_Load);