Subversion Repositories spk

Rev

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

Rev 126 Rev 127
Line 41... Line 41...
41
#else
41
#else
42
	public ref class PackageForm : public Creator::BaseForm
42
	public ref class PackageForm : public Creator::BaseForm
43
#endif	
43
#endif	
44
	{
44
	{
45
	public:
45
	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)
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);
47
		{
-
 
48
			InitializeComponent();
-
 
49
			this->LabelShipWarning->Visible = false;
-
 
50
			this->TextExactVersion->Visible = false;
-
 
51
			this->DoToolTips();
-
 
52
 
-
 
53
			this->ListDep->LargeImageList = this->imageList1;
-
 
54
			this->ListDep->SmallImageList = this->imageList1;
-
 
55
 
-
 
56
			m_pSettings = set;
-
 
57
			m_iFormType = FORMTYPE_SINGLE;
-
 
58
			m_pDisplayFile = NULL;
-
 
59
 
-
 
60
			this->NumTextID->Visible = false;
-
 
61
 
-
 
62
			m_iSelectedGame = -1;
-
 
63
 
-
 
64
			this->Closing += gcnew CancelEventHandler(this, &PackageForm::PackageForm_Closing);
-
 
65
 
-
 
66
			m_pPackage = NULL;
-
 
67
			m_pTypeList = new CyStringList;
-
 
68
 
-
 
69
			this->ComboShipPart->SelectedIndex = 0;
-
 
70
 
-
 
71
			m_bLoading = false;
-
 
72
		}
-
 
73
 
47
 
74
		void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList)
48
		void SetImageLists(ImageList ^smallList, ImageList ^largeList, ImageList ^gameList, ImageList ^fileList)
75
		{
49
		{
76
			BaseForm::SetImageLists(smallList, largeList, gameList);
50
			BaseForm::SetImageLists(smallList, largeList, gameList);
77
 
51
 
78
			this->ListGames->SmallImageList = this->imageListGames;
52
			this->ListGames->SmallImageList = this->imageListGames;
79
			this->ListGames->LargeImageList = this->imageListGames;
53
			this->ListGames->LargeImageList = this->imageListGames;
80
			this->ListNames->SmallImageList = this->imageListSmall;
54
			this->ListNames->SmallImageList = this->imageListSmall;
81
			this->ListMirrors->SmallImageList = this->imageListSmall;
55
			this->ListMirrors->SmallImageList = this->imageListSmall;
82
			this->ListWares->SmallImageList = this->imageListSmall;
56
			this->ListWares->SmallImageList = this->imageListSmall;
Line 97... Line 71...
97
			this->ListFiles->LargeImageList = this->imageListFiles;
71
			this->ListFiles->LargeImageList = this->imageListFiles;
98
			this->ListFiles->SmallImageList = this->imageListFiles;
72
			this->ListFiles->SmallImageList = this->imageListFiles;
99
 
73
 
100
			this->Setup();
74
			this->Setup();
101
		}
75
		}
102
 
76
 
103
		CGameDirectories *gameDirectories();
77
		CGameDirectories *gameDirectories();
104
 
78
 
105
		void CreateShip() { 
79
		void CreateShip() { 
106
			if ( m_pPackage ) delete m_pPackage; 
80
			if ( m_pPackage ) delete m_pPackage; 
107
			m_pPackage = new CXspFile; 
81
			m_pPackage = new CXspFile; 
108
			((CXspFile *)m_pPackage)->SetShipData("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;");
82
			((CXspFile *)m_pPackage)->SetShipData("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;");
109
		}
83
		}
110
		void CreatePackage() { 
84
		void CreatePackage() { 
111
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
85
			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(PackageForm::typeid));
Line 134... Line 108...
134
			{
108
			{
135
				if ( m_pPackage->GetType() == TYPE_XSP )
109
				if ( m_pPackage->GetType() == TYPE_XSP )
136
					text = "New Ship";
110
					text = "New Ship";
137
				else
111
				else
138
					text = "New Package";
112
					text = "New Package";
139
			}
113
			}
140
			
114
			
141
			if ( m_pPackage->hasChanged() )
115
			if ( m_pPackage->hasChanged() )
142
				addonText += "*";
116
				addonText += "*";
143
			if ( m_pPackage->IsSigned() )
117
			if ( m_pPackage->IsSigned() )
144
				addonText += " (Signed)";
118
				addonText += " (Signed)";
Line 154... Line 128...
154
				if ( selGame->ShowDialog(this) == Windows::Forms::DialogResult::OK ) {
128
				if ( selGame->ShowDialog(this) == Windows::Forms::DialogResult::OK ) {
155
					game = selGame->GetGame() + 1;
129
					game = selGame->GetGame() + 1;
156
				}
130
				}
157
				else
131
				else
158
					return;
132
					return;
159
			}
133
			}
160
			else if ( m_pPackage->IsAnyGameInPackage() ) {
134
			else if ( m_pPackage->IsAnyGameInPackage() ) {
161
				game = m_pPackage->FindFirstGameInPackage();
135
				game = m_pPackage->FindFirstGameInPackage();
162
			}
136
			}
163
 
137
 
164
			SaveFileDialog ^ofd = gcnew SaveFileDialog();
138
			SaveFileDialog ^ofd = gcnew SaveFileDialog();
Line 167... Line 141...
167
			ofd->FilterIndex = 1;
141
			ofd->FilterIndex = 1;
168
			ofd->RestoreDirectory = true;
142
			ofd->RestoreDirectory = true;
169
			ofd->AddExtension =  true;
143
			ofd->AddExtension =  true;
170
			ofd->Title = "Select the archive to export to";
144
			ofd->Title = "Select the archive to export to";
171
			if ( ofd->ShowDialog(this) == Windows::Forms::DialogResult::OK )
145
			if ( ofd->ShowDialog(this) == Windows::Forms::DialogResult::OK )
172
			{
146
			{
173
				if ( m_pPackage->SaveToArchive(CyStringFromSystemString(ofd->FileName), game, m_pP->GetGameExe()) )
147
				if ( m_pPackage->SaveToArchive(CyStringFromSystemString(ofd->FileName), game, m_pP->GetGameExe()) )
174
					MessageBox::Show(this, "Package saved to archive, " + ofd->FileName, "Package Exported", MessageBoxButtons::OK, MessageBoxIcon::Information);
148
					MessageBox::Show(this, "Package saved to archive, " + ofd->FileName, "Package Exported", MessageBoxButtons::OK, MessageBoxIcon::Information);
175
				else
149
				else
176
					MessageBox::Show(this, "Unable to export to archive, " + ofd->FileName, "Export Failed", MessageBoxButtons::OK, MessageBoxIcon::Error);
150
					MessageBox::Show(this, "Unable to export to archive, " + ofd->FileName, "Export Failed", MessageBoxButtons::OK, MessageBoxIcon::Error);
177
			}
151
			}
178
		}
152
		}
-
 
153
 
-
 
154
	protected:
-
 
155
		/// <summary>
-
 
156
		/// Clean up any resources being used.
-
 
157
		/// </summary>
-
 
158
		~PackageForm();
179
 
159
 
180
	private:
160
	private:
181
		void DropGetDirectories(String ^dir, CyStringList *list, bool packages);
161
		void DropGetDirectories(String ^dir, CyStringList *list, bool packages);
182
		void UpdateMirrors();
162
		void UpdateMirrors();
183
		void UpdatePackageNames();
163
		void UpdatePackageNames();
Line 217... Line 197...
217
		bool	m_bSortingAsc;
197
		bool	m_bSortingAsc;
218
		int		m_iSortingCol;
198
		int		m_iSortingCol;
219
		CyStringList *m_pTypeList;
199
		CyStringList *m_pTypeList;
220
		C_File *m_pDisplayFile;
200
		C_File *m_pDisplayFile;
221
		int		m_iSelectedGame;
201
		int		m_iSelectedGame;
-
 
202
		CPackages *_pPackages;
-
 
203
 
-
 
204
		ToolStripMenuItem ^_addGameItem;
-
 
205
		ToolStripMenuItem ^_removeGameItem;
222
 
206
 
223
	private: System::Windows::Forms::ContextMenuStrip^  ContextShipText;
207
	private: System::Windows::Forms::ContextMenuStrip^  ContextShipText;
224
	private: System::Windows::Forms::ToolStripMenuItem^  addLanguageToolStripMenuItem;
208
	private: System::Windows::Forms::ToolStripMenuItem^  addLanguageToolStripMenuItem;
225
	private: System::Windows::Forms::ToolStripSeparator^  ContextShipTextSep1;
209
	private: System::Windows::Forms::ToolStripSeparator^  ContextShipTextSep1;
226
	private: System::Windows::Forms::ToolStripMenuItem^  ContextShipTextEdit;
210
	private: System::Windows::Forms::ToolStripMenuItem^  ContextShipTextEdit;
Line 327... Line 311...
327
private: System::Windows::Forms::ColumnHeader^  columnHeader28;
311
private: System::Windows::Forms::ColumnHeader^  columnHeader28;
328
private: System::Windows::Forms::ToolStripMenuItem^  ToolGame;
312
private: System::Windows::Forms::ToolStripMenuItem^  ToolGame;
329
private: System::Windows::Forms::ComboBox^  ComboGameFilter;
313
private: System::Windows::Forms::ComboBox^  ComboGameFilter;
330
private: System::Windows::Forms::ToolStripMenuItem^  ContextShipPartClear;
314
private: System::Windows::Forms::ToolStripMenuItem^  ContextShipPartClear;
331
 
315
 
332
	protected:
-
 
333
		/// <summary>
-
 
334
		/// Clean up any resources being used.
-
 
335
		/// </summary>
-
 
336
		~PackageForm()
-
 
337
		{
-
 
338
			if (components)
-
 
339
			{
-
 
340
				delete components;
-
 
341
			}
-
 
342
			delete m_pTypeList;
-
 
343
			if ( m_pPackage )
-
 
344
				delete m_pPackage;
-
 
345
		}
-
 
346
	private: System::Windows::Forms::Panel^  panel6;
316
	private: System::Windows::Forms::Panel^  panel6;
347
	private: System::Windows::Forms::Button^  ButRemoveFile;
317
	private: System::Windows::Forms::Button^  ButRemoveFile;
348
	private: System::Windows::Forms::Button^  button2;
318
	private: System::Windows::Forms::Button^  button2;
349
	private: System::Windows::Forms::Button^  button1;
319
	private: System::Windows::Forms::Button^  button1;
350
 
320
 
Line 936... Line 906...
936
			// PicChange5
906
			// PicChange5
937
			// 
907
			// 
938
			this->PicChange5->Dock = System::Windows::Forms::DockStyle::Left;
908
			this->PicChange5->Dock = System::Windows::Forms::DockStyle::Left;
939
			this->PicChange5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange5.Image")));
909
			this->PicChange5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange5.Image")));
940
			this->PicChange5->Location = System::Drawing::Point(132, 19);
910
			this->PicChange5->Location = System::Drawing::Point(132, 19);
941
			this->PicChange5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
911
			this->PicChange5->Margin = System::Windows::Forms::Padding(4);
942
			this->PicChange5->Name = L"PicChange5";
912
			this->PicChange5->Name = L"PicChange5";
943
			this->PicChange5->Size = System::Drawing::Size(32, 32);
913
			this->PicChange5->Size = System::Drawing::Size(32, 32);
944
			this->PicChange5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
914
			this->PicChange5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
945
			this->PicChange5->TabIndex = 18;
915
			this->PicChange5->TabIndex = 18;
946
			this->PicChange5->TabStop = false;
916
			this->PicChange5->TabStop = false;
Line 949... Line 919...
949
			// PicChange1
919
			// PicChange1
950
			// 
920
			// 
951
			this->PicChange1->Dock = System::Windows::Forms::DockStyle::Left;
921
			this->PicChange1->Dock = System::Windows::Forms::DockStyle::Left;
952
			this->PicChange1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange1.Image")));
922
			this->PicChange1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange1.Image")));
953
			this->PicChange1->Location = System::Drawing::Point(4, 19);
923
			this->PicChange1->Location = System::Drawing::Point(4, 19);
954
			this->PicChange1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
924
			this->PicChange1->Margin = System::Windows::Forms::Padding(4);
955
			this->PicChange1->Name = L"PicChange1";
925
			this->PicChange1->Name = L"PicChange1";
956
			this->PicChange1->Size = System::Drawing::Size(32, 32);
926
			this->PicChange1->Size = System::Drawing::Size(32, 32);
957
			this->PicChange1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
927
			this->PicChange1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
958
			this->PicChange1->TabIndex = 14;
928
			this->PicChange1->TabIndex = 14;
959
			this->PicChange1->TabStop = false;
929
			this->PicChange1->TabStop = false;
Line 962... Line 932...
962
			// PicRec5
932
			// PicRec5
963
			// 
933
			// 
964
			this->PicRec5->Dock = System::Windows::Forms::DockStyle::Left;
934
			this->PicRec5->Dock = System::Windows::Forms::DockStyle::Left;
965
			this->PicRec5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec5.Image")));
935
			this->PicRec5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec5.Image")));
966
			this->PicRec5->Location = System::Drawing::Point(132, 19);
936
			this->PicRec5->Location = System::Drawing::Point(132, 19);
967
			this->PicRec5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
937
			this->PicRec5->Margin = System::Windows::Forms::Padding(4);
968
			this->PicRec5->Name = L"PicRec5";
938
			this->PicRec5->Name = L"PicRec5";
969
			this->PicRec5->Size = System::Drawing::Size(32, 32);
939
			this->PicRec5->Size = System::Drawing::Size(32, 32);
970
			this->PicRec5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
940
			this->PicRec5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
971
			this->PicRec5->TabIndex = 18;
941
			this->PicRec5->TabIndex = 18;
972
			this->PicRec5->TabStop = false;
942
			this->PicRec5->TabStop = false;
Line 977... Line 947...
977
			this->groupBox1->Controls->Add(this->ListFiles);
947
			this->groupBox1->Controls->Add(this->ListFiles);
978
			this->groupBox1->Controls->Add(this->panel6);
948
			this->groupBox1->Controls->Add(this->panel6);
979
			this->groupBox1->Controls->Add(this->panel5);
949
			this->groupBox1->Controls->Add(this->panel5);
980
			this->groupBox1->Dock = System::Windows::Forms::DockStyle::Fill;
950
			this->groupBox1->Dock = System::Windows::Forms::DockStyle::Fill;
981
			this->groupBox1->Location = System::Drawing::Point(7, 456);
951
			this->groupBox1->Location = System::Drawing::Point(7, 456);
982
			this->groupBox1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
952
			this->groupBox1->Margin = System::Windows::Forms::Padding(4);
983
			this->groupBox1->Name = L"groupBox1";
953
			this->groupBox1->Name = L"groupBox1";
984
			this->groupBox1->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
954
			this->groupBox1->Padding = System::Windows::Forms::Padding(4);
985
			this->groupBox1->Size = System::Drawing::Size(1007, 412);
955
			this->groupBox1->Size = System::Drawing::Size(1007, 412);
986
			this->groupBox1->TabIndex = 0;
956
			this->groupBox1->TabIndex = 0;
987
			this->groupBox1->TabStop = false;
957
			this->groupBox1->TabStop = false;
988
			this->groupBox1->Text = L"Files";
958
			this->groupBox1->Text = L"Files";
989
			// 
959
			// 
Line 997... Line 967...
997
			this->ListFiles->ContextMenuStrip = this->ContextFiles;
967
			this->ListFiles->ContextMenuStrip = this->ContextFiles;
998
			this->ListFiles->Dock = System::Windows::Forms::DockStyle::Fill;
968
			this->ListFiles->Dock = System::Windows::Forms::DockStyle::Fill;
999
			this->ListFiles->FullRowSelect = true;
969
			this->ListFiles->FullRowSelect = true;
1000
			this->ListFiles->HideSelection = false;
970
			this->ListFiles->HideSelection = false;
1001
			this->ListFiles->Location = System::Drawing::Point(4, 50);
971
			this->ListFiles->Location = System::Drawing::Point(4, 50);
1002
			this->ListFiles->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
972
			this->ListFiles->Margin = System::Windows::Forms::Padding(4);
1003
			this->ListFiles->Name = L"ListFiles";
973
			this->ListFiles->Name = L"ListFiles";
1004
			this->ListFiles->Size = System::Drawing::Size(999, 309);
974
			this->ListFiles->Size = System::Drawing::Size(999, 309);
1005
			this->ListFiles->Sorting = System::Windows::Forms::SortOrder::Ascending;
975
			this->ListFiles->Sorting = System::Windows::Forms::SortOrder::Ascending;
1006
			this->ListFiles->TabIndex = 1;
976
			this->ListFiles->TabIndex = 1;
1007
			this->ListFiles->UseCompatibleStateImageBehavior = false;
977
			this->ListFiles->UseCompatibleStateImageBehavior = false;
Line 1049... Line 1019...
1049
					this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
1019
					this->ContextFileSep1, this->ContextFileEdit, this->ContextFileDelete, this->renameFileToolStripMenuItem, this->toolStripSeparator5,
1050
					this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
1020
					this->ToolGame, this->packFileToolStripMenuItem, this->unpackFileToolStripMenuItem, this->convertToFakePatchToolStripMenuItem,
1051
					this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
1021
					this->convertToAutoTextFileToolStripMenuItem, this->convertToNormalModToolStripMenuItem, this->ContextFileSep2, this->ContextFileClear
1052
			});
1022
			});
1053
			this->ContextFiles->Name = L"ContextFiles";
1023
			this->ContextFiles->Name = L"ContextFiles";
1054
			this->ContextFiles->Size = System::Drawing::Size(260, 440);
1024
			this->ContextFiles->Size = System::Drawing::Size(260, 468);
1055
			this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
1025
			this->ContextFiles->Opening += gcnew System::ComponentModel::CancelEventHandler(this, &PackageForm::ContextFiles_Opening);
1056
			// 
1026
			// 
1057
			// addFileToolStripMenuItem
1027
			// addFileToolStripMenuItem
1058
			// 
1028
			// 
1059
			this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
1029
			this->addFileToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"addFileToolStripMenuItem.Image")));
Line 1172... Line 1142...
1172
			this->panel6->Controls->Add(this->ButRemoveFile);
1142
			this->panel6->Controls->Add(this->ButRemoveFile);
1173
			this->panel6->Controls->Add(this->button2);
1143
			this->panel6->Controls->Add(this->button2);
1174
			this->panel6->Controls->Add(this->button1);
1144
			this->panel6->Controls->Add(this->button1);
1175
			this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
1145
			this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
1176
			this->panel6->Location = System::Drawing::Point(4, 359);
1146
			this->panel6->Location = System::Drawing::Point(4, 359);
1177
			this->panel6->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1147
			this->panel6->Margin = System::Windows::Forms::Padding(4);
1178
			this->panel6->Name = L"panel6";
1148
			this->panel6->Name = L"panel6";
1179
			this->panel6->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1149
			this->panel6->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1180
			this->panel6->Size = System::Drawing::Size(999, 49);
1150
			this->panel6->Size = System::Drawing::Size(999, 49);
1181
			this->panel6->TabIndex = 2;
1151
			this->panel6->TabIndex = 2;
1182
			// 
1152
			// 
1183
			// ButRemoveFile
1153
			// ButRemoveFile
1184
			// 
1154
			// 
1185
			this->ButRemoveFile->Dock = System::Windows::Forms::DockStyle::Right;
1155
			this->ButRemoveFile->Dock = System::Windows::Forms::DockStyle::Right;
1186
			this->ButRemoveFile->Location = System::Drawing::Point(655, 6);
1156
			this->ButRemoveFile->Location = System::Drawing::Point(655, 6);
1187
			this->ButRemoveFile->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1157
			this->ButRemoveFile->Margin = System::Windows::Forms::Padding(4);
1188
			this->ButRemoveFile->Name = L"ButRemoveFile";
1158
			this->ButRemoveFile->Name = L"ButRemoveFile";
1189
			this->ButRemoveFile->Size = System::Drawing::Size(173, 37);
1159
			this->ButRemoveFile->Size = System::Drawing::Size(173, 37);
1190
			this->ButRemoveFile->TabIndex = 2;
1160
			this->ButRemoveFile->TabIndex = 2;
1191
			this->ButRemoveFile->Text = L"Remove Selected";
1161
			this->ButRemoveFile->Text = L"Remove Selected";
1192
			this->ButRemoveFile->UseVisualStyleBackColor = true;
1162
			this->ButRemoveFile->UseVisualStyleBackColor = true;
Line 1194... Line 1164...
1194
			// 
1164
			// 
1195
			// button2
1165
			// button2
1196
			// 
1166
			// 
1197
			this->button2->Dock = System::Windows::Forms::DockStyle::Right;
1167
			this->button2->Dock = System::Windows::Forms::DockStyle::Right;
1198
			this->button2->Location = System::Drawing::Point(828, 6);
1168
			this->button2->Location = System::Drawing::Point(828, 6);
1199
			this->button2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1169
			this->button2->Margin = System::Windows::Forms::Padding(4);
1200
			this->button2->Name = L"button2";
1170
			this->button2->Name = L"button2";
1201
			this->button2->Size = System::Drawing::Size(164, 37);
1171
			this->button2->Size = System::Drawing::Size(164, 37);
1202
			this->button2->TabIndex = 1;
1172
			this->button2->TabIndex = 1;
1203
			this->button2->Text = L"Clear All";
1173
			this->button2->Text = L"Clear All";
1204
			this->button2->UseVisualStyleBackColor = true;
1174
			this->button2->UseVisualStyleBackColor = true;
Line 1206... Line 1176...
1206
			// 
1176
			// 
1207
			// button1
1177
			// button1
1208
			// 
1178
			// 
1209
			this->button1->Dock = System::Windows::Forms::DockStyle::Left;
1179
			this->button1->Dock = System::Windows::Forms::DockStyle::Left;
1210
			this->button1->Location = System::Drawing::Point(7, 6);
1180
			this->button1->Location = System::Drawing::Point(7, 6);
1211
			this->button1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1181
			this->button1->Margin = System::Windows::Forms::Padding(4);
1212
			this->button1->Name = L"button1";
1182
			this->button1->Name = L"button1";
1213
			this->button1->Size = System::Drawing::Size(151, 37);
1183
			this->button1->Size = System::Drawing::Size(151, 37);
1214
			this->button1->TabIndex = 0;
1184
			this->button1->TabIndex = 0;
1215
			this->button1->Text = L"Add File(s)";
1185
			this->button1->Text = L"Add File(s)";
1216
			this->button1->UseVisualStyleBackColor = true;
1186
			this->button1->UseVisualStyleBackColor = true;
Line 1221... Line 1191...
1221
			this->panel5->Controls->Add(this->ComboFileType);
1191
			this->panel5->Controls->Add(this->ComboFileType);
1222
			this->panel5->Controls->Add(this->ComboGameFilter);
1192
			this->panel5->Controls->Add(this->ComboGameFilter);
1223
			this->panel5->Controls->Add(this->label5);
1193
			this->panel5->Controls->Add(this->label5);
1224
			this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
1194
			this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
1225
			this->panel5->Location = System::Drawing::Point(4, 19);
1195
			this->panel5->Location = System::Drawing::Point(4, 19);
1226
			this->panel5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1196
			this->panel5->Margin = System::Windows::Forms::Padding(4);
1227
			this->panel5->Name = L"panel5";
1197
			this->panel5->Name = L"panel5";
1228
			this->panel5->Size = System::Drawing::Size(999, 31);
1198
			this->panel5->Size = System::Drawing::Size(999, 31);
1229
			this->panel5->TabIndex = 0;
1199
			this->panel5->TabIndex = 0;
1230
			// 
1200
			// 
1231
			// ComboFileType
1201
			// ComboFileType
1232
			// 
1202
			// 
1233
			this->ComboFileType->Dock = System::Windows::Forms::DockStyle::Fill;
1203
			this->ComboFileType->Dock = System::Windows::Forms::DockStyle::Fill;
1234
			this->ComboFileType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1204
			this->ComboFileType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1235
			this->ComboFileType->FormattingEnabled = true;
1205
			this->ComboFileType->FormattingEnabled = true;
1236
			this->ComboFileType->Location = System::Drawing::Point(133, 0);
1206
			this->ComboFileType->Location = System::Drawing::Point(133, 0);
1237
			this->ComboFileType->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1207
			this->ComboFileType->Margin = System::Windows::Forms::Padding(4);
1238
			this->ComboFileType->Name = L"ComboFileType";
1208
			this->ComboFileType->Name = L"ComboFileType";
1239
			this->ComboFileType->Size = System::Drawing::Size(593, 24);
1209
			this->ComboFileType->Size = System::Drawing::Size(593, 24);
1240
			this->ComboFileType->TabIndex = 1;
1210
			this->ComboFileType->TabIndex = 1;
1241
			this->ComboFileType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboFileType_SelectedIndexChanged);
1211
			this->ComboFileType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboFileType_SelectedIndexChanged);
1242
			// 
1212
			// 
Line 1244... Line 1214...
1244
			// 
1214
			// 
1245
			this->ComboGameFilter->Dock = System::Windows::Forms::DockStyle::Right;
1215
			this->ComboGameFilter->Dock = System::Windows::Forms::DockStyle::Right;
1246
			this->ComboGameFilter->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1216
			this->ComboGameFilter->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1247
			this->ComboGameFilter->FormattingEnabled = true;
1217
			this->ComboGameFilter->FormattingEnabled = true;
1248
			this->ComboGameFilter->Location = System::Drawing::Point(726, 0);
1218
			this->ComboGameFilter->Location = System::Drawing::Point(726, 0);
1249
			this->ComboGameFilter->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1219
			this->ComboGameFilter->Margin = System::Windows::Forms::Padding(4);
1250
			this->ComboGameFilter->Name = L"ComboGameFilter";
1220
			this->ComboGameFilter->Name = L"ComboGameFilter";
1251
			this->ComboGameFilter->Size = System::Drawing::Size(273, 24);
1221
			this->ComboGameFilter->Size = System::Drawing::Size(273, 24);
1252
			this->ComboGameFilter->TabIndex = 2;
1222
			this->ComboGameFilter->TabIndex = 2;
1253
			this->ComboGameFilter->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboGameFilter_SelectedIndexChanged);
1223
			this->ComboGameFilter->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboGameFilter_SelectedIndexChanged);
1254
			// 
1224
			// 
Line 1292... Line 1262...
1292
			this->tabPage1->Controls->Add(this->panel13);
1262
			this->tabPage1->Controls->Add(this->panel13);
1293
			this->tabPage1->Controls->Add(this->panel12);
1263
			this->tabPage1->Controls->Add(this->panel12);
1294
			this->tabPage1->Controls->Add(this->panel11);
1264
			this->tabPage1->Controls->Add(this->panel11);
1295
			this->tabPage1->Controls->Add(this->LabelShipWarning);
1265
			this->tabPage1->Controls->Add(this->LabelShipWarning);
1296
			this->tabPage1->Location = System::Drawing::Point(4, 25);
1266
			this->tabPage1->Location = System::Drawing::Point(4, 25);
1297
			this->tabPage1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1267
			this->tabPage1->Margin = System::Windows::Forms::Padding(4);
1298
			this->tabPage1->Name = L"tabPage1";
1268
			this->tabPage1->Name = L"tabPage1";
1299
			this->tabPage1->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
1269
			this->tabPage1->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
1300
			this->tabPage1->Size = System::Drawing::Size(999, 269);
1270
			this->tabPage1->Size = System::Drawing::Size(999, 269);
1301
			this->tabPage1->TabIndex = 0;
1271
			this->tabPage1->TabIndex = 0;
1302
			this->tabPage1->Text = L"Basic Settings";
1272
			this->tabPage1->Text = L"Basic Settings";
Line 1305... Line 1275...
1305
			// groupBox2
1275
			// groupBox2
1306
			// 
1276
			// 
1307
			this->groupBox2->Controls->Add(this->TextDesc);
1277
			this->groupBox2->Controls->Add(this->TextDesc);
1308
			this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
1278
			this->groupBox2->Dock = System::Windows::Forms::DockStyle::Fill;
1309
			this->groupBox2->Location = System::Drawing::Point(11, 109);
1279
			this->groupBox2->Location = System::Drawing::Point(11, 109);
1310
			this->groupBox2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1280
			this->groupBox2->Margin = System::Windows::Forms::Padding(4);
1311
			this->groupBox2->Name = L"groupBox2";
1281
			this->groupBox2->Name = L"groupBox2";
1312
			this->groupBox2->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1282
			this->groupBox2->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
1313
			this->groupBox2->Size = System::Drawing::Size(977, 150);
1283
			this->groupBox2->Size = System::Drawing::Size(977, 150);
1314
			this->groupBox2->TabIndex = 1;
1284
			this->groupBox2->TabIndex = 1;
1315
			this->groupBox2->TabStop = false;
1285
			this->groupBox2->TabStop = false;
Line 1317... Line 1287...
1317
			// 
1287
			// 
1318
			// TextDesc
1288
			// TextDesc
1319
			// 
1289
			// 
1320
			this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
1290
			this->TextDesc->Dock = System::Windows::Forms::DockStyle::Fill;
1321
			this->TextDesc->Location = System::Drawing::Point(7, 21);
1291
			this->TextDesc->Location = System::Drawing::Point(7, 21);
1322
			this->TextDesc->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1292
			this->TextDesc->Margin = System::Windows::Forms::Padding(4);
1323
			this->TextDesc->Name = L"TextDesc";
1293
			this->TextDesc->Name = L"TextDesc";
1324
			this->TextDesc->Size = System::Drawing::Size(963, 123);
1294
			this->TextDesc->Size = System::Drawing::Size(963, 123);
1325
			this->TextDesc->TabIndex = 0;
1295
			this->TextDesc->TabIndex = 0;
1326
			this->TextDesc->Text = L"";
1296
			this->TextDesc->Text = L"";
1327
			this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
1297
			this->TextDesc->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextDesc_TextChanged);
Line 1330... Line 1300...
1330
			// 
1300
			// 
1331
			this->panel13->Controls->Add(this->TextForum);
1301
			this->panel13->Controls->Add(this->TextForum);
1332
			this->panel13->Controls->Add(this->label11);
1302
			this->panel13->Controls->Add(this->label11);
1333
			this->panel13->Dock = System::Windows::Forms::DockStyle::Top;
1303
			this->panel13->Dock = System::Windows::Forms::DockStyle::Top;
1334
			this->panel13->Location = System::Drawing::Point(11, 82);
1304
			this->panel13->Location = System::Drawing::Point(11, 82);
1335
			this->panel13->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1305
			this->panel13->Margin = System::Windows::Forms::Padding(4);
1336
			this->panel13->Name = L"panel13";
1306
			this->panel13->Name = L"panel13";
1337
			this->panel13->Size = System::Drawing::Size(977, 27);
1307
			this->panel13->Size = System::Drawing::Size(977, 27);
1338
			this->panel13->TabIndex = 46;
1308
			this->panel13->TabIndex = 46;
1339
			// 
1309
			// 
1340
			// TextForum
1310
			// TextForum
1341
			// 
1311
			// 
1342
			this->TextForum->DetectUrls = false;
1312
			this->TextForum->DetectUrls = false;
1343
			this->TextForum->Dock = System::Windows::Forms::DockStyle::Fill;
1313
			this->TextForum->Dock = System::Windows::Forms::DockStyle::Fill;
1344
			this->TextForum->Location = System::Drawing::Point(167, 0);
1314
			this->TextForum->Location = System::Drawing::Point(167, 0);
1345
			this->TextForum->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1315
			this->TextForum->Margin = System::Windows::Forms::Padding(4);
1346
			this->TextForum->Name = L"TextForum";
1316
			this->TextForum->Name = L"TextForum";
1347
			this->TextForum->Size = System::Drawing::Size(810, 27);
1317
			this->TextForum->Size = System::Drawing::Size(810, 27);
1348
			this->TextForum->TabIndex = 43;
1318
			this->TextForum->TabIndex = 43;
1349
			this->TextForum->Text = L"";
1319
			this->TextForum->Text = L"";
1350
			this->TextForum->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextForum_TextChanged);
1320
			this->TextForum->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextForum_TextChanged);
Line 1365... Line 1335...
1365
			// 
1335
			// 
1366
			this->panel12->Controls->Add(this->TextEmail);
1336
			this->panel12->Controls->Add(this->TextEmail);
1367
			this->panel12->Controls->Add(this->label10);
1337
			this->panel12->Controls->Add(this->label10);
1368
			this->panel12->Dock = System::Windows::Forms::DockStyle::Top;
1338
			this->panel12->Dock = System::Windows::Forms::DockStyle::Top;
1369
			this->panel12->Location = System::Drawing::Point(11, 55);
1339
			this->panel12->Location = System::Drawing::Point(11, 55);
1370
			this->panel12->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1340
			this->panel12->Margin = System::Windows::Forms::Padding(4);
1371
			this->panel12->Name = L"panel12";
1341
			this->panel12->Name = L"panel12";
1372
			this->panel12->Size = System::Drawing::Size(977, 27);
1342
			this->panel12->Size = System::Drawing::Size(977, 27);
1373
			this->panel12->TabIndex = 45;
1343
			this->panel12->TabIndex = 45;
1374
			// 
1344
			// 
1375
			// TextEmail
1345
			// TextEmail
1376
			// 
1346
			// 
1377
			this->TextEmail->DetectUrls = false;
1347
			this->TextEmail->DetectUrls = false;
1378
			this->TextEmail->Dock = System::Windows::Forms::DockStyle::Fill;
1348
			this->TextEmail->Dock = System::Windows::Forms::DockStyle::Fill;
1379
			this->TextEmail->Location = System::Drawing::Point(167, 0);
1349
			this->TextEmail->Location = System::Drawing::Point(167, 0);
1380
			this->TextEmail->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1350
			this->TextEmail->Margin = System::Windows::Forms::Padding(4);
1381
			this->TextEmail->Name = L"TextEmail";
1351
			this->TextEmail->Name = L"TextEmail";
1382
			this->TextEmail->Size = System::Drawing::Size(810, 27);
1352
			this->TextEmail->Size = System::Drawing::Size(810, 27);
1383
			this->TextEmail->TabIndex = 43;
1353
			this->TextEmail->TabIndex = 43;
1384
			this->TextEmail->Text = L"";
1354
			this->TextEmail->Text = L"";
1385
			this->TextEmail->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextEmail_TextChanged);
1355
			this->TextEmail->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextEmail_TextChanged);
Line 1400... Line 1370...
1400
			// 
1370
			// 
1401
			this->panel11->Controls->Add(this->TextWebsite);
1371
			this->panel11->Controls->Add(this->TextWebsite);
1402
			this->panel11->Controls->Add(this->label9);
1372
			this->panel11->Controls->Add(this->label9);
1403
			this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
1373
			this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
1404
			this->panel11->Location = System::Drawing::Point(11, 32);
1374
			this->panel11->Location = System::Drawing::Point(11, 32);
1405
			this->panel11->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1375
			this->panel11->Margin = System::Windows::Forms::Padding(4);
1406
			this->panel11->Name = L"panel11";
1376
			this->panel11->Name = L"panel11";
1407
			this->panel11->Size = System::Drawing::Size(977, 23);
1377
			this->panel11->Size = System::Drawing::Size(977, 23);
1408
			this->panel11->TabIndex = 44;
1378
			this->panel11->TabIndex = 44;
1409
			// 
1379
			// 
1410
			// TextWebsite
1380
			// TextWebsite
1411
			// 
1381
			// 
1412
			this->TextWebsite->DetectUrls = false;
1382
			this->TextWebsite->DetectUrls = false;
1413
			this->TextWebsite->Dock = System::Windows::Forms::DockStyle::Fill;
1383
			this->TextWebsite->Dock = System::Windows::Forms::DockStyle::Fill;
1414
			this->TextWebsite->Location = System::Drawing::Point(167, 0);
1384
			this->TextWebsite->Location = System::Drawing::Point(167, 0);
1415
			this->TextWebsite->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1385
			this->TextWebsite->Margin = System::Windows::Forms::Padding(4);
1416
			this->TextWebsite->Name = L"TextWebsite";
1386
			this->TextWebsite->Name = L"TextWebsite";
1417
			this->TextWebsite->Size = System::Drawing::Size(810, 23);
1387
			this->TextWebsite->Size = System::Drawing::Size(810, 23);
1418
			this->TextWebsite->TabIndex = 41;
1388
			this->TextWebsite->TabIndex = 41;
1419
			this->TextWebsite->Text = L"";
1389
			this->TextWebsite->Text = L"";
1420
			this->TextWebsite->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebsite_TextChanged);
1390
			this->TextWebsite->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebsite_TextChanged);
Line 1447... Line 1417...
1447
			// 
1417
			// 
1448
			// tabPage5
1418
			// tabPage5
1449
			// 
1419
			// 
1450
			this->tabPage5->Controls->Add(this->ListGames);
1420
			this->tabPage5->Controls->Add(this->ListGames);
1451
			this->tabPage5->Controls->Add(this->groupBox8);
1421
			this->tabPage5->Controls->Add(this->groupBox8);
1452
			this->tabPage5->Location = System::Drawing::Point(4, 46);
1422
			this->tabPage5->Location = System::Drawing::Point(4, 25);
1453
			this->tabPage5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1423
			this->tabPage5->Margin = System::Windows::Forms::Padding(4);
1454
			this->tabPage5->Name = L"tabPage5";
1424
			this->tabPage5->Name = L"tabPage5";
1455
			this->tabPage5->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
1425
			this->tabPage5->Padding = System::Windows::Forms::Padding(4);
1456
			this->tabPage5->Size = System::Drawing::Size(1000, 248);
1426
			this->tabPage5->Size = System::Drawing::Size(999, 269);
1457
			this->tabPage5->TabIndex = 10;
1427
			this->tabPage5->TabIndex = 10;
1458
			this->tabPage5->Text = L"Game Compatability";
1428
			this->tabPage5->Text = L"Game Compatability";
1459
			this->tabPage5->UseVisualStyleBackColor = true;
1429
			this->tabPage5->UseVisualStyleBackColor = true;
1460
			// 
1430
			// 
1461
			// ListGames
1431
			// ListGames
Line 1463... Line 1433...
1463
			this->ListGames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader26, this->columnHeader27 });
1433
			this->ListGames->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(2) { this->columnHeader26, this->columnHeader27 });
1464
			this->ListGames->Dock = System::Windows::Forms::DockStyle::Fill;
1434
			this->ListGames->Dock = System::Windows::Forms::DockStyle::Fill;
1465
			this->ListGames->FullRowSelect = true;
1435
			this->ListGames->FullRowSelect = true;
1466
			this->ListGames->HideSelection = false;
1436
			this->ListGames->HideSelection = false;
1467
			this->ListGames->Location = System::Drawing::Point(4, 4);
1437
			this->ListGames->Location = System::Drawing::Point(4, 4);
1468
			this->ListGames->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1438
			this->ListGames->Margin = System::Windows::Forms::Padding(4);
1469
			this->ListGames->MultiSelect = false;
1439
			this->ListGames->MultiSelect = false;
1470
			this->ListGames->Name = L"ListGames";
1440
			this->ListGames->Name = L"ListGames";
1471
			this->ListGames->Size = System::Drawing::Size(992, 154);
1441
			this->ListGames->Size = System::Drawing::Size(991, 175);
1472
			this->ListGames->TabIndex = 2;
1442
			this->ListGames->TabIndex = 2;
1473
			this->ListGames->UseCompatibleStateImageBehavior = false;
1443
			this->ListGames->UseCompatibleStateImageBehavior = false;
1474
			this->ListGames->View = System::Windows::Forms::View::Details;
1444
			this->ListGames->View = System::Windows::Forms::View::Details;
1475
			this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
1445
			this->ListGames->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListGames_SelectedIndexChanged);
1476
			this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
1446
			this->ListGames->DoubleClick += gcnew System::EventHandler(this, &PackageForm::ListGames_DoubleClick);
Line 1485... Line 1455...
1485
			// 
1455
			// 
1486
			// groupBox8
1456
			// groupBox8
1487
			// 
1457
			// 
1488
			this->groupBox8->Controls->Add(this->panel10);
1458
			this->groupBox8->Controls->Add(this->panel10);
1489
			this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
1459
			this->groupBox8->Dock = System::Windows::Forms::DockStyle::Bottom;
1490
			this->groupBox8->Location = System::Drawing::Point(4, 158);
1460
			this->groupBox8->Location = System::Drawing::Point(4, 179);
1491
			this->groupBox8->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1461
			this->groupBox8->Margin = System::Windows::Forms::Padding(4);
1492
			this->groupBox8->Name = L"groupBox8";
1462
			this->groupBox8->Name = L"groupBox8";
1493
			this->groupBox8->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
1463
			this->groupBox8->Padding = System::Windows::Forms::Padding(4);
1494
			this->groupBox8->Size = System::Drawing::Size(992, 86);
1464
			this->groupBox8->Size = System::Drawing::Size(991, 86);
1495
			this->groupBox8->TabIndex = 1;
1465
			this->groupBox8->TabIndex = 1;
1496
			this->groupBox8->TabStop = false;
1466
			this->groupBox8->TabStop = false;
1497
			this->groupBox8->Text = L"Add/Edit Game";
1467
			this->groupBox8->Text = L"Add/Edit Game";
1498
			// 
1468
			// 
1499
			// panel10
1469
			// panel10
1500
			// 
1470
			// 
1501
			this->panel10->Controls->Add(this->panel21);
1471
			this->panel10->Controls->Add(this->panel21);
1502
			this->panel10->Controls->Add(this->ButGame);
1472
			this->panel10->Controls->Add(this->ButGame);
1503
			this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
1473
			this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
1504
			this->panel10->Location = System::Drawing::Point(4, 19);
1474
			this->panel10->Location = System::Drawing::Point(4, 19);
1505
			this->panel10->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1475
			this->panel10->Margin = System::Windows::Forms::Padding(4);
1506
			this->panel10->Name = L"panel10";
1476
			this->panel10->Name = L"panel10";
1507
			this->panel10->Size = System::Drawing::Size(984, 53);
1477
			this->panel10->Size = System::Drawing::Size(983, 53);
1508
			this->panel10->TabIndex = 44;
1478
			this->panel10->TabIndex = 44;
1509
			// 
1479
			// 
1510
			// panel21
1480
			// panel21
1511
			// 
1481
			// 
1512
			this->panel21->Controls->Add(this->ComboVersion);
1482
			this->panel21->Controls->Add(this->ComboVersion);
1513
			this->panel21->Controls->Add(this->TextExactVersion);
1483
			this->panel21->Controls->Add(this->TextExactVersion);
1514
			this->panel21->Controls->Add(this->ButGameAdd);
1484
			this->panel21->Controls->Add(this->ButGameAdd);
1515
			this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
1485
			this->panel21->Dock = System::Windows::Forms::DockStyle::Fill;
1516
			this->panel21->Location = System::Drawing::Point(291, 0);
1486
			this->panel21->Location = System::Drawing::Point(291, 0);
1517
			this->panel21->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1487
			this->panel21->Margin = System::Windows::Forms::Padding(4);
1518
			this->panel21->Name = L"panel21";
1488
			this->panel21->Name = L"panel21";
1519
			this->panel21->Size = System::Drawing::Size(693, 53);
1489
			this->panel21->Size = System::Drawing::Size(692, 53);
1520
			this->panel21->TabIndex = 44;
1490
			this->panel21->TabIndex = 44;
1521
			// 
1491
			// 
1522
			// ComboVersion
1492
			// ComboVersion
1523
			// 
1493
			// 
1524
			this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
1494
			this->ComboVersion->Dock = System::Windows::Forms::DockStyle::Fill;
1525
			this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1495
			this->ComboVersion->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1526
			this->ComboVersion->Enabled = false;
1496
			this->ComboVersion->Enabled = false;
1527
			this->ComboVersion->FormattingEnabled = true;
1497
			this->ComboVersion->FormattingEnabled = true;
1528
			this->ComboVersion->Location = System::Drawing::Point(0, 0);
1498
			this->ComboVersion->Location = System::Drawing::Point(0, 0);
1529
			this->ComboVersion->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1499
			this->ComboVersion->Margin = System::Windows::Forms::Padding(4);
1530
			this->ComboVersion->Name = L"ComboVersion";
1500
			this->ComboVersion->Name = L"ComboVersion";
1531
			this->ComboVersion->Size = System::Drawing::Size(622, 24);
1501
			this->ComboVersion->Size = System::Drawing::Size(621, 24);
1532
			this->ComboVersion->TabIndex = 41;
1502
			this->ComboVersion->TabIndex = 41;
1533
			this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
1503
			this->ComboVersion->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboVersion_SelectedIndexChanged);
1534
			// 
1504
			// 
1535
			// TextExactVersion
1505
			// TextExactVersion
1536
			// 
1506
			// 
1537
			this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
1507
			this->TextExactVersion->Dock = System::Windows::Forms::DockStyle::Bottom;
1538
			this->TextExactVersion->Location = System::Drawing::Point(0, 31);
1508
			this->TextExactVersion->Location = System::Drawing::Point(0, 31);
1539
			this->TextExactVersion->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1509
			this->TextExactVersion->Margin = System::Windows::Forms::Padding(4);
1540
			this->TextExactVersion->Name = L"TextExactVersion";
1510
			this->TextExactVersion->Name = L"TextExactVersion";
1541
			this->TextExactVersion->Size = System::Drawing::Size(622, 22);
1511
			this->TextExactVersion->Size = System::Drawing::Size(621, 22);
1542
			this->TextExactVersion->TabIndex = 42;
1512
			this->TextExactVersion->TabIndex = 42;
1543
			// 
1513
			// 
1544
			// ButGameAdd
1514
			// ButGameAdd
1545
			// 
1515
			// 
1546
			this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
1516
			this->ButGameAdd->Dock = System::Windows::Forms::DockStyle::Right;
1547
			this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
1517
			this->ButGameAdd->ForeColor = System::Drawing::Color::Green;
1548
			this->ButGameAdd->Location = System::Drawing::Point(622, 0);
1518
			this->ButGameAdd->Location = System::Drawing::Point(621, 0);
1549
			this->ButGameAdd->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1519
			this->ButGameAdd->Margin = System::Windows::Forms::Padding(4);
1550
			this->ButGameAdd->Name = L"ButGameAdd";
1520
			this->ButGameAdd->Name = L"ButGameAdd";
1551
			this->ButGameAdd->Size = System::Drawing::Size(71, 53);
1521
			this->ButGameAdd->Size = System::Drawing::Size(71, 53);
1552
			this->ButGameAdd->TabIndex = 43;
1522
			this->ButGameAdd->TabIndex = 43;
1553
			this->ButGameAdd->Text = L"Save!";
1523
			this->ButGameAdd->Text = L"Save!";
1554
			this->ButGameAdd->UseVisualStyleBackColor = true;
1524
			this->ButGameAdd->UseVisualStyleBackColor = true;
Line 1558... Line 1528...
1558
			// 
1528
			// 
1559
			this->ButGame->ContextMenuStrip = this->ContextGames;
1529
			this->ButGame->ContextMenuStrip = this->ContextGames;
1560
			this->ButGame->Dock = System::Windows::Forms::DockStyle::Left;
1530
			this->ButGame->Dock = System::Windows::Forms::DockStyle::Left;
1561
			this->ButGame->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
1531
			this->ButGame->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
1562
			this->ButGame->Location = System::Drawing::Point(0, 0);
1532
			this->ButGame->Location = System::Drawing::Point(0, 0);
1563
			this->ButGame->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1533
			this->ButGame->Margin = System::Windows::Forms::Padding(4);
1564
			this->ButGame->Name = L"ButGame";
1534
			this->ButGame->Name = L"ButGame";
1565
			this->ButGame->Size = System::Drawing::Size(291, 53);
1535
			this->ButGame->Size = System::Drawing::Size(291, 53);
1566
			this->ButGame->TabIndex = 43;
1536
			this->ButGame->TabIndex = 43;
1567
			this->ButGame->UseVisualStyleBackColor = true;
1537
			this->ButGame->UseVisualStyleBackColor = true;
1568
			this->ButGame->Click += gcnew System::EventHandler(this, &PackageForm::ButGame_Click);
1538
			this->ButGame->Click += gcnew System::EventHandler(this, &PackageForm::ButGame_Click);
Line 1583... Line 1553...
1583
			// PagePackage
1553
			// PagePackage
1584
			// 
1554
			// 
1585
			this->PagePackage->Controls->Add(this->groupBox3);
1555
			this->PagePackage->Controls->Add(this->groupBox3);
1586
			this->PagePackage->Controls->Add(this->panel22);
1556
			this->PagePackage->Controls->Add(this->panel22);
1587
			this->PagePackage->Controls->Add(this->panel7);
1557
			this->PagePackage->Controls->Add(this->panel7);
1588
			this->PagePackage->Location = System::Drawing::Point(4, 46);
1558
			this->PagePackage->Location = System::Drawing::Point(4, 25);
1589
			this->PagePackage->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1559
			this->PagePackage->Margin = System::Windows::Forms::Padding(4);
1590
			this->PagePackage->Name = L"PagePackage";
1560
			this->PagePackage->Name = L"PagePackage";
1591
			this->PagePackage->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
1561
			this->PagePackage->Padding = System::Windows::Forms::Padding(4);
1592
			this->PagePackage->Size = System::Drawing::Size(1000, 248);
1562
			this->PagePackage->Size = System::Drawing::Size(999, 269);
1593
			this->PagePackage->TabIndex = 2;
1563
			this->PagePackage->TabIndex = 2;
1594
			this->PagePackage->Text = L"Package Settings";
1564
			this->PagePackage->Text = L"Package Settings";
1595
			this->PagePackage->UseVisualStyleBackColor = true;
1565
			this->PagePackage->UseVisualStyleBackColor = true;
1596
			// 
1566
			// 
1597
			// groupBox3
1567
			// groupBox3
Line 1605... Line 1575...
1605
			this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
1575
			this->groupBox3->Dock = System::Windows::Forms::DockStyle::Top;
1606
			this->groupBox3->Location = System::Drawing::Point(4, 117);
1576
			this->groupBox3->Location = System::Drawing::Point(4, 117);
1607
			this->groupBox3->Margin = System::Windows::Forms::Padding(13, 12, 13, 12);
1577
			this->groupBox3->Margin = System::Windows::Forms::Padding(13, 12, 13, 12);
1608
			this->groupBox3->Name = L"groupBox3";
1578
			this->groupBox3->Name = L"groupBox3";
1609
			this->groupBox3->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
1579
			this->groupBox3->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
1610
			this->groupBox3->Size = System::Drawing::Size(992, 65);
1580
			this->groupBox3->Size = System::Drawing::Size(991, 65);
1611
			this->groupBox3->TabIndex = 1;
1581
			this->groupBox3->TabIndex = 1;
1612
			this->groupBox3->TabStop = false;
1582
			this->groupBox3->TabStop = false;
1613
			this->groupBox3->Text = L"Requires Parent Mod/Package";
1583
			this->groupBox3->Text = L"Requires Parent Mod/Package";
1614
			// 
1584
			// 
1615
			// TextOtherName
1585
			// TextOtherName
1616
			// 
1586
			// 
1617
			this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
1587
			this->TextOtherName->Dock = System::Windows::Forms::DockStyle::Fill;
1618
			this->TextOtherName->Location = System::Drawing::Point(140, 27);
1588
			this->TextOtherName->Location = System::Drawing::Point(140, 27);
1619
			this->TextOtherName->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1589
			this->TextOtherName->Margin = System::Windows::Forms::Padding(4);
1620
			this->TextOtherName->Name = L"TextOtherName";
1590
			this->TextOtherName->Name = L"TextOtherName";
1621
			this->TextOtherName->Size = System::Drawing::Size(452, 22);
1591
			this->TextOtherName->Size = System::Drawing::Size(451, 22);
1622
			this->TextOtherName->TabIndex = 1;
1592
			this->TextOtherName->TabIndex = 1;
1623
			this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1593
			this->TextOtherName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1624
			// 
1594
			// 
1625
			// label13
1595
			// label13
1626
			// 
1596
			// 
1627
			this->label13->Dock = System::Windows::Forms::DockStyle::Right;
1597
			this->label13->Dock = System::Windows::Forms::DockStyle::Right;
1628
			this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1598
			this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
1629
				static_cast<System::Byte>(0)));
1599
				static_cast<System::Byte>(0)));
1630
			this->label13->Location = System::Drawing::Point(592, 27);
1600
			this->label13->Location = System::Drawing::Point(591, 27);
1631
			this->label13->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
1601
			this->label13->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
1632
			this->label13->Name = L"label13";
1602
			this->label13->Name = L"label13";
1633
			this->label13->Size = System::Drawing::Size(103, 26);
1603
			this->label13->Size = System::Drawing::Size(103, 26);
1634
			this->label13->TabIndex = 3;
1604
			this->label13->TabIndex = 3;
1635
			this->label13->Text = L"Author";
1605
			this->label13->Text = L"Author";
Line 1653... Line 1623...
1653
			// CheckOther
1623
			// CheckOther
1654
			// 
1624
			// 
1655
			this->CheckOther->AutoSize = true;
1625
			this->CheckOther->AutoSize = true;
1656
			this->CheckOther->Dock = System::Windows::Forms::DockStyle::Left;
1626
			this->CheckOther->Dock = System::Windows::Forms::DockStyle::Left;
1657
			this->CheckOther->Location = System::Drawing::Point(13, 27);
1627
			this->CheckOther->Location = System::Drawing::Point(13, 27);
1658
			this->CheckOther->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1628
			this->CheckOther->Margin = System::Windows::Forms::Padding(4);
1659
			this->CheckOther->Name = L"CheckOther";
1629
			this->CheckOther->Name = L"CheckOther";
1660
			this->CheckOther->Size = System::Drawing::Size(18, 26);
1630
			this->CheckOther->Size = System::Drawing::Size(18, 26);
1661
			this->CheckOther->TabIndex = 0;
1631
			this->CheckOther->TabIndex = 0;
1662
			this->CheckOther->UseVisualStyleBackColor = true;
1632
			this->CheckOther->UseVisualStyleBackColor = true;
1663
			this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
1633
			this->CheckOther->CheckedChanged += gcnew System::EventHandler(this, &PackageForm::CheckOther_CheckedChanged);
1664
			// 
1634
			// 
1665
			// TextOtherAuthor
1635
			// TextOtherAuthor
1666
			// 
1636
			// 
1667
			this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
1637
			this->TextOtherAuthor->Dock = System::Windows::Forms::DockStyle::Right;
1668
			this->TextOtherAuthor->Location = System::Drawing::Point(695, 27);
1638
			this->TextOtherAuthor->Location = System::Drawing::Point(694, 27);
1669
			this->TextOtherAuthor->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1639
			this->TextOtherAuthor->Margin = System::Windows::Forms::Padding(4);
1670
			this->TextOtherAuthor->Name = L"TextOtherAuthor";
1640
			this->TextOtherAuthor->Name = L"TextOtherAuthor";
1671
			this->TextOtherAuthor->Size = System::Drawing::Size(184, 22);
1641
			this->TextOtherAuthor->Size = System::Drawing::Size(184, 22);
1672
			this->TextOtherAuthor->TabIndex = 4;
1642
			this->TextOtherAuthor->TabIndex = 4;
1673
			this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1643
			this->TextOtherAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextOtherName_TextChanged);
1674
			// 
1644
			// 
1675
			// ButFromFile
1645
			// ButFromFile
1676
			// 
1646
			// 
1677
			this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
1647
			this->ButFromFile->Dock = System::Windows::Forms::DockStyle::Right;
1678
			this->ButFromFile->Location = System::Drawing::Point(879, 27);
1648
			this->ButFromFile->Location = System::Drawing::Point(878, 27);
1679
			this->ButFromFile->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1649
			this->ButFromFile->Margin = System::Windows::Forms::Padding(4);
1680
			this->ButFromFile->Name = L"ButFromFile";
1650
			this->ButFromFile->Name = L"ButFromFile";
1681
			this->ButFromFile->Size = System::Drawing::Size(100, 26);
1651
			this->ButFromFile->Size = System::Drawing::Size(100, 26);
1682
			this->ButFromFile->TabIndex = 5;
1652
			this->ButFromFile->TabIndex = 5;
1683
			this->ButFromFile->Text = L"From File";
1653
			this->ButFromFile->Text = L"From File";
1684
			this->ButFromFile->UseVisualStyleBackColor = true;
1654
			this->ButFromFile->UseVisualStyleBackColor = true;
Line 1688... Line 1658...
1688
			// 
1658
			// 
1689
			this->panel22->Controls->Add(this->ComboPluginType);
1659
			this->panel22->Controls->Add(this->ComboPluginType);
1690
			this->panel22->Controls->Add(this->label15);
1660
			this->panel22->Controls->Add(this->label15);
1691
			this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
1661
			this->panel22->Dock = System::Windows::Forms::DockStyle::Top;
1692
			this->panel22->Location = System::Drawing::Point(4, 78);
1662
			this->panel22->Location = System::Drawing::Point(4, 78);
1693
			this->panel22->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1663
			this->panel22->Margin = System::Windows::Forms::Padding(4);
1694
			this->panel22->Name = L"panel22";
1664
			this->panel22->Name = L"panel22";
1695
			this->panel22->Size = System::Drawing::Size(992, 39);
1665
			this->panel22->Size = System::Drawing::Size(991, 39);
1696
			this->panel22->TabIndex = 2;
1666
			this->panel22->TabIndex = 2;
1697
			// 
1667
			// 
1698
			// ComboPluginType
1668
			// ComboPluginType
1699
			// 
1669
			// 
1700
			this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
1670
			this->ComboPluginType->Dock = System::Windows::Forms::DockStyle::Fill;
Line 1703... Line 1673...
1703
			this->ComboPluginType->Items->AddRange(gcnew cli::array< System::Object^  >(5) {
1673
			this->ComboPluginType->Items->AddRange(gcnew cli::array< System::Object^  >(5) {
1704
				L"Normal", L"Stable", L"Experimental", L"Cheat",
1674
				L"Normal", L"Stable", L"Experimental", L"Cheat",
1705
					L"Mod"
1675
					L"Mod"
1706
			});
1676
			});
1707
			this->ComboPluginType->Location = System::Drawing::Point(209, 0);
1677
			this->ComboPluginType->Location = System::Drawing::Point(209, 0);
1708
			this->ComboPluginType->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1678
			this->ComboPluginType->Margin = System::Windows::Forms::Padding(4);
1709
			this->ComboPluginType->Name = L"ComboPluginType";
1679
			this->ComboPluginType->Name = L"ComboPluginType";
1710
			this->ComboPluginType->Size = System::Drawing::Size(783, 24);
1680
			this->ComboPluginType->Size = System::Drawing::Size(782, 24);
1711
			this->ComboPluginType->TabIndex = 7;
1681
			this->ComboPluginType->TabIndex = 7;
1712
			this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
1682
			this->ComboPluginType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboPluginType_SelectedIndexChanged);
1713
			// 
1683
			// 
1714
			// label15
1684
			// label15
1715
			// 
1685
			// 
Line 1727... Line 1697...
1727
			// 
1697
			// 
1728
			this->panel7->Controls->Add(this->panel8);
1698
			this->panel7->Controls->Add(this->panel8);
1729
			this->panel7->Controls->Add(this->label7);
1699
			this->panel7->Controls->Add(this->label7);
1730
			this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
1700
			this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
1731
			this->panel7->Location = System::Drawing::Point(4, 4);
1701
			this->panel7->Location = System::Drawing::Point(4, 4);
1732
			this->panel7->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1702
			this->panel7->Margin = System::Windows::Forms::Padding(4);
1733
			this->panel7->Name = L"panel7";
1703
			this->panel7->Name = L"panel7";
1734
			this->panel7->Padding = System::Windows::Forms::Padding(7, 6, 7, 12);
1704
			this->panel7->Padding = System::Windows::Forms::Padding(7, 6, 7, 12);
1735
			this->panel7->Size = System::Drawing::Size(992, 74);
1705
			this->panel7->Size = System::Drawing::Size(991, 74);
1736
			this->panel7->TabIndex = 0;
1706
			this->panel7->TabIndex = 0;
1737
			// 
1707
			// 
1738
			// panel8
1708
			// panel8
1739
			// 
1709
			// 
1740
			this->panel8->Controls->Add(this->flowLayoutPanel1);
1710
			this->panel8->Controls->Add(this->flowLayoutPanel1);
1741
			this->panel8->Controls->Add(this->panel9);
1711
			this->panel8->Controls->Add(this->panel9);
1742
			this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
1712
			this->panel8->Dock = System::Windows::Forms::DockStyle::Fill;
1743
			this->panel8->Location = System::Drawing::Point(216, 6);
1713
			this->panel8->Location = System::Drawing::Point(216, 6);
1744
			this->panel8->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1714
			this->panel8->Margin = System::Windows::Forms::Padding(4);
1745
			this->panel8->Name = L"panel8";
1715
			this->panel8->Name = L"panel8";
1746
			this->panel8->Size = System::Drawing::Size(769, 56);
1716
			this->panel8->Size = System::Drawing::Size(768, 56);
1747
			this->panel8->TabIndex = 2;
1717
			this->panel8->TabIndex = 2;
1748
			// 
1718
			// 
1749
			// flowLayoutPanel1
1719
			// flowLayoutPanel1
1750
			// 
1720
			// 
1751
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
1721
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeUpdate);
1752
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeLibrary);
1722
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeLibrary);
1753
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
1723
			this->flowLayoutPanel1->Controls->Add(this->RadioTypeStart);
1754
			this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
1724
			this->flowLayoutPanel1->Controls->Add(this->RadioTypePatch);
1755
			this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
1725
			this->flowLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
1756
			this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
1726
			this->flowLayoutPanel1->Location = System::Drawing::Point(0, 0);
1757
			this->flowLayoutPanel1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1727
			this->flowLayoutPanel1->Margin = System::Windows::Forms::Padding(4);
1758
			this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
1728
			this->flowLayoutPanel1->Name = L"flowLayoutPanel1";
1759
			this->flowLayoutPanel1->Size = System::Drawing::Size(769, 28);
1729
			this->flowLayoutPanel1->Size = System::Drawing::Size(768, 28);
1760
			this->flowLayoutPanel1->TabIndex = 4;
1730
			this->flowLayoutPanel1->TabIndex = 4;
1761
			// 
1731
			// 
1762
			// RadioTypeUpdate
1732
			// RadioTypeUpdate
1763
			// 
1733
			// 
1764
			this->RadioTypeUpdate->AutoSize = true;
1734
			this->RadioTypeUpdate->AutoSize = true;
1765
			this->RadioTypeUpdate->Location = System::Drawing::Point(4, 4);
1735
			this->RadioTypeUpdate->Location = System::Drawing::Point(4, 4);
1766
			this->RadioTypeUpdate->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1736
			this->RadioTypeUpdate->Margin = System::Windows::Forms::Padding(4);
1767
			this->RadioTypeUpdate->Name = L"RadioTypeUpdate";
1737
			this->RadioTypeUpdate->Name = L"RadioTypeUpdate";
1768
			this->RadioTypeUpdate->Size = System::Drawing::Size(134, 21);
1738
			this->RadioTypeUpdate->Size = System::Drawing::Size(134, 21);
1769
			this->RadioTypeUpdate->TabIndex = 1;
1739
			this->RadioTypeUpdate->TabIndex = 1;
1770
			this->RadioTypeUpdate->TabStop = true;
1740
			this->RadioTypeUpdate->TabStop = true;
1771
			this->RadioTypeUpdate->Text = L"Update Package";
1741
			this->RadioTypeUpdate->Text = L"Update Package";
Line 1774... Line 1744...
1774
			// 
1744
			// 
1775
			// RadioTypeLibrary
1745
			// RadioTypeLibrary
1776
			// 
1746
			// 
1777
			this->RadioTypeLibrary->AutoSize = true;
1747
			this->RadioTypeLibrary->AutoSize = true;
1778
			this->RadioTypeLibrary->Location = System::Drawing::Point(146, 4);
1748
			this->RadioTypeLibrary->Location = System::Drawing::Point(146, 4);
1779
			this->RadioTypeLibrary->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1749
			this->RadioTypeLibrary->Margin = System::Windows::Forms::Padding(4);
1780
			this->RadioTypeLibrary->Name = L"RadioTypeLibrary";
1750
			this->RadioTypeLibrary->Name = L"RadioTypeLibrary";
1781
			this->RadioTypeLibrary->Size = System::Drawing::Size(113, 21);
1751
			this->RadioTypeLibrary->Size = System::Drawing::Size(113, 21);
1782
			this->RadioTypeLibrary->TabIndex = 3;
1752
			this->RadioTypeLibrary->TabIndex = 3;
1783
			this->RadioTypeLibrary->TabStop = true;
1753
			this->RadioTypeLibrary->TabStop = true;
1784
			this->RadioTypeLibrary->Text = L"Script Library";
1754
			this->RadioTypeLibrary->Text = L"Script Library";
Line 1787... Line 1757...
1787
			// 
1757
			// 
1788
			// RadioTypeStart
1758
			// RadioTypeStart
1789
			// 
1759
			// 
1790
			this->RadioTypeStart->AutoSize = true;
1760
			this->RadioTypeStart->AutoSize = true;
1791
			this->RadioTypeStart->Location = System::Drawing::Point(267, 4);
1761
			this->RadioTypeStart->Location = System::Drawing::Point(267, 4);
1792
			this->RadioTypeStart->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1762
			this->RadioTypeStart->Margin = System::Windows::Forms::Padding(4);
1793
			this->RadioTypeStart->Name = L"RadioTypeStart";
1763
			this->RadioTypeStart->Name = L"RadioTypeStart";
1794
			this->RadioTypeStart->Size = System::Drawing::Size(110, 21);
1764
			this->RadioTypeStart->Size = System::Drawing::Size(110, 21);
1795
			this->RadioTypeStart->TabIndex = 0;
1765
			this->RadioTypeStart->TabIndex = 0;
1796
			this->RadioTypeStart->TabStop = true;
1766
			this->RadioTypeStart->TabStop = true;
1797
			this->RadioTypeStart->Text = L"Custom Start";
1767
			this->RadioTypeStart->Text = L"Custom Start";
Line 1800... Line 1770...
1800
			// 
1770
			// 
1801
			// RadioTypePatch
1771
			// RadioTypePatch
1802
			// 
1772
			// 
1803
			this->RadioTypePatch->AutoSize = true;
1773
			this->RadioTypePatch->AutoSize = true;
1804
			this->RadioTypePatch->Location = System::Drawing::Point(385, 4);
1774
			this->RadioTypePatch->Location = System::Drawing::Point(385, 4);
1805
			this->RadioTypePatch->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1775
			this->RadioTypePatch->Margin = System::Windows::Forms::Padding(4);
1806
			this->RadioTypePatch->Name = L"RadioTypePatch";
1776
			this->RadioTypePatch->Name = L"RadioTypePatch";
1807
			this->RadioTypePatch->Size = System::Drawing::Size(96, 21);
1777
			this->RadioTypePatch->Size = System::Drawing::Size(96, 21);
1808
			this->RadioTypePatch->TabIndex = 2;
1778
			this->RadioTypePatch->TabIndex = 2;
1809
			this->RadioTypePatch->TabStop = true;
1779
			this->RadioTypePatch->TabStop = true;
1810
			this->RadioTypePatch->Text = L"Mod Patch";
1780
			this->RadioTypePatch->Text = L"Mod Patch";
Line 1816... Line 1786...
1816
			this->panel9->Controls->Add(this->TextCustomType);
1786
			this->panel9->Controls->Add(this->TextCustomType);
1817
			this->panel9->Controls->Add(this->ComboType);
1787
			this->panel9->Controls->Add(this->ComboType);
1818
			this->panel9->Controls->Add(this->RadioTypeScript);
1788
			this->panel9->Controls->Add(this->RadioTypeScript);
1819
			this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
1789
			this->panel9->Dock = System::Windows::Forms::DockStyle::Bottom;
1820
			this->panel9->Location = System::Drawing::Point(0, 28);
1790
			this->panel9->Location = System::Drawing::Point(0, 28);
1821
			this->panel9->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1791
			this->panel9->Margin = System::Windows::Forms::Padding(4);
1822
			this->panel9->Name = L"panel9";
1792
			this->panel9->Name = L"panel9";
1823
			this->panel9->Size = System::Drawing::Size(769, 28);
1793
			this->panel9->Size = System::Drawing::Size(768, 28);
1824
			this->panel9->TabIndex = 6;
1794
			this->panel9->TabIndex = 6;
1825
			// 
1795
			// 
1826
			// TextCustomType
1796
			// TextCustomType
1827
			// 
1797
			// 
1828
			this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
1798
			this->TextCustomType->Dock = System::Windows::Forms::DockStyle::Fill;
1829
			this->TextCustomType->Location = System::Drawing::Point(192, 0);
1799
			this->TextCustomType->Location = System::Drawing::Point(192, 0);
1830
			this->TextCustomType->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1800
			this->TextCustomType->Margin = System::Windows::Forms::Padding(4);
1831
			this->TextCustomType->Name = L"TextCustomType";
1801
			this->TextCustomType->Name = L"TextCustomType";
1832
			this->TextCustomType->Size = System::Drawing::Size(577, 22);
1802
			this->TextCustomType->Size = System::Drawing::Size(576, 22);
1833
			this->TextCustomType->TabIndex = 7;
1803
			this->TextCustomType->TabIndex = 7;
1834
			this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
1804
			this->TextCustomType->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextCustomType_TextChanged);
1835
			// 
1805
			// 
1836
			// ComboType
1806
			// ComboType
1837
			// 
1807
			// 
1838
			this->ComboType->Dock = System::Windows::Forms::DockStyle::Left;
1808
			this->ComboType->Dock = System::Windows::Forms::DockStyle::Left;
1839
			this->ComboType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1809
			this->ComboType->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
1840
			this->ComboType->FormattingEnabled = true;
1810
			this->ComboType->FormattingEnabled = true;
1841
			this->ComboType->Location = System::Drawing::Point(17, 0);
1811
			this->ComboType->Location = System::Drawing::Point(17, 0);
1842
			this->ComboType->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1812
			this->ComboType->Margin = System::Windows::Forms::Padding(4);
1843
			this->ComboType->Name = L"ComboType";
1813
			this->ComboType->Name = L"ComboType";
1844
			this->ComboType->Size = System::Drawing::Size(175, 24);
1814
			this->ComboType->Size = System::Drawing::Size(175, 24);
1845
			this->ComboType->TabIndex = 6;
1815
			this->ComboType->TabIndex = 6;
1846
			this->ComboType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboType_SelectedIndexChanged);
1816
			this->ComboType->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboType_SelectedIndexChanged);
1847
			// 
1817
			// 
1848
			// RadioTypeScript
1818
			// RadioTypeScript
1849
			// 
1819
			// 
1850
			this->RadioTypeScript->AutoSize = true;
1820
			this->RadioTypeScript->AutoSize = true;
1851
			this->RadioTypeScript->Dock = System::Windows::Forms::DockStyle::Left;
1821
			this->RadioTypeScript->Dock = System::Windows::Forms::DockStyle::Left;
1852
			this->RadioTypeScript->Location = System::Drawing::Point(0, 0);
1822
			this->RadioTypeScript->Location = System::Drawing::Point(0, 0);
1853
			this->RadioTypeScript->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1823
			this->RadioTypeScript->Margin = System::Windows::Forms::Padding(4);
1854
			this->RadioTypeScript->Name = L"RadioTypeScript";
1824
			this->RadioTypeScript->Name = L"RadioTypeScript";
1855
			this->RadioTypeScript->Size = System::Drawing::Size(17, 28);
1825
			this->RadioTypeScript->Size = System::Drawing::Size(17, 28);
1856
			this->RadioTypeScript->TabIndex = 5;
1826
			this->RadioTypeScript->TabIndex = 5;
1857
			this->RadioTypeScript->TabStop = true;
1827
			this->RadioTypeScript->TabStop = true;
1858
			this->RadioTypeScript->UseVisualStyleBackColor = true;
1828
			this->RadioTypeScript->UseVisualStyleBackColor = true;
Line 1875... Line 1845...
1875
			// 
1845
			// 
1876
			this->tabPage3->Controls->Add(this->groupBox7);
1846
			this->tabPage3->Controls->Add(this->groupBox7);
1877
			this->tabPage3->Controls->Add(this->groupBox6);
1847
			this->tabPage3->Controls->Add(this->groupBox6);
1878
			this->tabPage3->Controls->Add(this->groupBox5);
1848
			this->tabPage3->Controls->Add(this->groupBox5);
1879
			this->tabPage3->Controls->Add(this->panel15);
1849
			this->tabPage3->Controls->Add(this->panel15);
1880
			this->tabPage3->Location = System::Drawing::Point(4, 46);
1850
			this->tabPage3->Location = System::Drawing::Point(4, 25);
1881
			this->tabPage3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1851
			this->tabPage3->Margin = System::Windows::Forms::Padding(4);
1882
			this->tabPage3->Name = L"tabPage3";
1852
			this->tabPage3->Name = L"tabPage3";
1883
			this->tabPage3->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
1853
			this->tabPage3->Padding = System::Windows::Forms::Padding(4);
1884
			this->tabPage3->Size = System::Drawing::Size(1000, 248);
1854
			this->tabPage3->Size = System::Drawing::Size(999, 269);
1885
			this->tabPage3->TabIndex = 4;
1855
			this->tabPage3->TabIndex = 4;
1886
			this->tabPage3->Text = L"Display";
1856
			this->tabPage3->Text = L"Display";
1887
			this->tabPage3->UseVisualStyleBackColor = true;
1857
			this->tabPage3->UseVisualStyleBackColor = true;
1888
			// 
1858
			// 
1889
			// groupBox7
1859
			// groupBox7
Line 1891... Line 1861...
1891
			this->groupBox7->Controls->Add(this->TextText);
1861
			this->groupBox7->Controls->Add(this->TextText);
1892
			this->groupBox7->Controls->Add(this->panel19);
1862
			this->groupBox7->Controls->Add(this->panel19);
1893
			this->groupBox7->Controls->Add(this->panel18);
1863
			this->groupBox7->Controls->Add(this->panel18);
1894
			this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
1864
			this->groupBox7->Dock = System::Windows::Forms::DockStyle::Fill;
1895
			this->groupBox7->Location = System::Drawing::Point(280, 82);
1865
			this->groupBox7->Location = System::Drawing::Point(280, 82);
1896
			this->groupBox7->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1866
			this->groupBox7->Margin = System::Windows::Forms::Padding(4);
1897
			this->groupBox7->Name = L"groupBox7";
1867
			this->groupBox7->Name = L"groupBox7";
1898
			this->groupBox7->Padding = System::Windows::Forms::Padding(7, 0, 7, 6);
1868
			this->groupBox7->Padding = System::Windows::Forms::Padding(7, 0, 7, 6);
1899
			this->groupBox7->Size = System::Drawing::Size(716, 162);
1869
			this->groupBox7->Size = System::Drawing::Size(715, 183);
1900
			this->groupBox7->TabIndex = 4;
1870
			this->groupBox7->TabIndex = 4;
1901
			this->groupBox7->TabStop = false;
1871
			this->groupBox7->TabStop = false;
1902
			this->groupBox7->Text = L"Text";
1872
			this->groupBox7->Text = L"Text";
1903
			// 
1873
			// 
1904
			// TextText
1874
			// TextText
1905
			// 
1875
			// 
1906
			this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
1876
			this->TextText->Dock = System::Windows::Forms::DockStyle::Fill;
1907
			this->TextText->Location = System::Drawing::Point(139, 48);
1877
			this->TextText->Location = System::Drawing::Point(139, 48);
1908
			this->TextText->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1878
			this->TextText->Margin = System::Windows::Forms::Padding(4);
1909
			this->TextText->Name = L"TextText";
1879
			this->TextText->Name = L"TextText";
1910
			this->TextText->Size = System::Drawing::Size(570, 108);
1880
			this->TextText->Size = System::Drawing::Size(569, 129);
1911
			this->TextText->TabIndex = 3;
1881
			this->TextText->TabIndex = 3;
1912
			this->TextText->Text = L"";
1882
			this->TextText->Text = L"";
1913
			this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
1883
			this->TextText->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextText_TextChanged);
1914
			// 
1884
			// 
1915
			// panel19
1885
			// panel19
1916
			// 
1886
			// 
1917
			this->panel19->Controls->Add(this->ListLang);
1887
			this->panel19->Controls->Add(this->ListLang);
1918
			this->panel19->Controls->Add(this->panel20);
1888
			this->panel19->Controls->Add(this->panel20);
1919
			this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
1889
			this->panel19->Dock = System::Windows::Forms::DockStyle::Left;
1920
			this->panel19->Location = System::Drawing::Point(7, 48);
1890
			this->panel19->Location = System::Drawing::Point(7, 48);
1921
			this->panel19->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1891
			this->panel19->Margin = System::Windows::Forms::Padding(4);
1922
			this->panel19->Name = L"panel19";
1892
			this->panel19->Name = L"panel19";
1923
			this->panel19->Size = System::Drawing::Size(132, 108);
1893
			this->panel19->Size = System::Drawing::Size(132, 129);
1924
			this->panel19->TabIndex = 5;
1894
			this->panel19->TabIndex = 5;
1925
			// 
1895
			// 
1926
			// ListLang
1896
			// ListLang
1927
			// 
1897
			// 
1928
			this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
1898
			this->ListLang->Dock = System::Windows::Forms::DockStyle::Fill;
1929
			this->ListLang->FormattingEnabled = true;
1899
			this->ListLang->FormattingEnabled = true;
1930
			this->ListLang->ItemHeight = 16;
1900
			this->ListLang->ItemHeight = 16;
1931
			this->ListLang->Items->AddRange(gcnew cli::array< System::Object^  >(1) { L"- Default -" });
1901
			this->ListLang->Items->AddRange(gcnew cli::array< System::Object^  >(1) { L"- Default -" });
1932
			this->ListLang->Location = System::Drawing::Point(0, 0);
1902
			this->ListLang->Location = System::Drawing::Point(0, 0);
1933
			this->ListLang->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1903
			this->ListLang->Margin = System::Windows::Forms::Padding(4);
1934
			this->ListLang->Name = L"ListLang";
1904
			this->ListLang->Name = L"ListLang";
1935
			this->ListLang->Size = System::Drawing::Size(132, 83);
1905
			this->ListLang->Size = System::Drawing::Size(132, 104);
1936
			this->ListLang->TabIndex = 4;
1906
			this->ListLang->TabIndex = 4;
1937
			this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
1907
			this->ListLang->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListLang_SelectedIndexChanged);
1938
			// 
1908
			// 
1939
			// panel20
1909
			// panel20
1940
			// 
1910
			// 
1941
			this->panel20->Controls->Add(this->ButTextDel);
1911
			this->panel20->Controls->Add(this->ButTextDel);
1942
			this->panel20->Controls->Add(this->ButTextAdd);
1912
			this->panel20->Controls->Add(this->ButTextAdd);
1943
			this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
1913
			this->panel20->Dock = System::Windows::Forms::DockStyle::Bottom;
1944
			this->panel20->Location = System::Drawing::Point(0, 83);
1914
			this->panel20->Location = System::Drawing::Point(0, 104);
1945
			this->panel20->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1915
			this->panel20->Margin = System::Windows::Forms::Padding(4);
1946
			this->panel20->Name = L"panel20";
1916
			this->panel20->Name = L"panel20";
1947
			this->panel20->Size = System::Drawing::Size(132, 25);
1917
			this->panel20->Size = System::Drawing::Size(132, 25);
1948
			this->panel20->TabIndex = 7;
1918
			this->panel20->TabIndex = 7;
1949
			// 
1919
			// 
1950
			// ButTextDel
1920
			// ButTextDel
1951
			// 
1921
			// 
1952
			this->ButTextDel->Dock = System::Windows::Forms::DockStyle::Left;
1922
			this->ButTextDel->Dock = System::Windows::Forms::DockStyle::Left;
1953
			this->ButTextDel->Location = System::Drawing::Point(68, 0);
1923
			this->ButTextDel->Location = System::Drawing::Point(68, 0);
1954
			this->ButTextDel->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1924
			this->ButTextDel->Margin = System::Windows::Forms::Padding(4);
1955
			this->ButTextDel->Name = L"ButTextDel";
1925
			this->ButTextDel->Name = L"ButTextDel";
1956
			this->ButTextDel->Size = System::Drawing::Size(61, 25);
1926
			this->ButTextDel->Size = System::Drawing::Size(61, 25);
1957
			this->ButTextDel->TabIndex = 5;
1927
			this->ButTextDel->TabIndex = 5;
1958
			this->ButTextDel->Text = L"-";
1928
			this->ButTextDel->Text = L"-";
1959
			this->ButTextDel->UseVisualStyleBackColor = true;
1929
			this->ButTextDel->UseVisualStyleBackColor = true;
Line 1961... Line 1931...
1961
			// 
1931
			// 
1962
			// ButTextAdd
1932
			// ButTextAdd
1963
			// 
1933
			// 
1964
			this->ButTextAdd->Dock = System::Windows::Forms::DockStyle::Left;
1934
			this->ButTextAdd->Dock = System::Windows::Forms::DockStyle::Left;
1965
			this->ButTextAdd->Location = System::Drawing::Point(0, 0);
1935
			this->ButTextAdd->Location = System::Drawing::Point(0, 0);
1966
			this->ButTextAdd->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1936
			this->ButTextAdd->Margin = System::Windows::Forms::Padding(4);
1967
			this->ButTextAdd->Name = L"ButTextAdd";
1937
			this->ButTextAdd->Name = L"ButTextAdd";
1968
			this->ButTextAdd->Size = System::Drawing::Size(68, 25);
1938
			this->ButTextAdd->Size = System::Drawing::Size(68, 25);
1969
			this->ButTextAdd->TabIndex = 6;
1939
			this->ButTextAdd->TabIndex = 6;
1970
			this->ButTextAdd->Text = L"+";
1940
			this->ButTextAdd->Text = L"+";
1971
			this->ButTextAdd->UseVisualStyleBackColor = true;
1941
			this->ButTextAdd->UseVisualStyleBackColor = true;
Line 1977... Line 1947...
1977
			this->panel18->Controls->Add(this->RadioUninstallBefore);
1947
			this->panel18->Controls->Add(this->RadioUninstallBefore);
1978
			this->panel18->Controls->Add(this->RadioInstallAfter);
1948
			this->panel18->Controls->Add(this->RadioInstallAfter);
1979
			this->panel18->Controls->Add(this->RadioInstallBefore);
1949
			this->panel18->Controls->Add(this->RadioInstallBefore);
1980
			this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
1950
			this->panel18->Dock = System::Windows::Forms::DockStyle::Top;
1981
			this->panel18->Location = System::Drawing::Point(7, 15);
1951
			this->panel18->Location = System::Drawing::Point(7, 15);
1982
			this->panel18->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1952
			this->panel18->Margin = System::Windows::Forms::Padding(4);
1983
			this->panel18->Name = L"panel18";
1953
			this->panel18->Name = L"panel18";
1984
			this->panel18->Size = System::Drawing::Size(702, 33);
1954
			this->panel18->Size = System::Drawing::Size(701, 33);
1985
			this->panel18->TabIndex = 2;
1955
			this->panel18->TabIndex = 2;
1986
			// 
1956
			// 
1987
			// RadioUninstallAfter
1957
			// RadioUninstallAfter
1988
			// 
1958
			// 
1989
			this->RadioUninstallAfter->AutoSize = true;
1959
			this->RadioUninstallAfter->AutoSize = true;
1990
			this->RadioUninstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1960
			this->RadioUninstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1991
			this->RadioUninstallAfter->Location = System::Drawing::Point(339, 0);
1961
			this->RadioUninstallAfter->Location = System::Drawing::Point(339, 0);
1992
			this->RadioUninstallAfter->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1962
			this->RadioUninstallAfter->Margin = System::Windows::Forms::Padding(4);
1993
			this->RadioUninstallAfter->Name = L"RadioUninstallAfter";
1963
			this->RadioUninstallAfter->Name = L"RadioUninstallAfter";
1994
			this->RadioUninstallAfter->Size = System::Drawing::Size(117, 33);
1964
			this->RadioUninstallAfter->Size = System::Drawing::Size(117, 33);
1995
			this->RadioUninstallAfter->TabIndex = 3;
1965
			this->RadioUninstallAfter->TabIndex = 3;
1996
			this->RadioUninstallAfter->TabStop = true;
1966
			this->RadioUninstallAfter->TabStop = true;
1997
			this->RadioUninstallAfter->Text = L"Uninstall After";
1967
			this->RadioUninstallAfter->Text = L"Uninstall After";
Line 2001... Line 1971...
2001
			// RadioUninstallBefore
1971
			// RadioUninstallBefore
2002
			// 
1972
			// 
2003
			this->RadioUninstallBefore->AutoSize = true;
1973
			this->RadioUninstallBefore->AutoSize = true;
2004
			this->RadioUninstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
1974
			this->RadioUninstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
2005
			this->RadioUninstallBefore->Location = System::Drawing::Point(210, 0);
1975
			this->RadioUninstallBefore->Location = System::Drawing::Point(210, 0);
2006
			this->RadioUninstallBefore->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1976
			this->RadioUninstallBefore->Margin = System::Windows::Forms::Padding(4);
2007
			this->RadioUninstallBefore->Name = L"RadioUninstallBefore";
1977
			this->RadioUninstallBefore->Name = L"RadioUninstallBefore";
2008
			this->RadioUninstallBefore->Size = System::Drawing::Size(129, 33);
1978
			this->RadioUninstallBefore->Size = System::Drawing::Size(129, 33);
2009
			this->RadioUninstallBefore->TabIndex = 2;
1979
			this->RadioUninstallBefore->TabIndex = 2;
2010
			this->RadioUninstallBefore->TabStop = true;
1980
			this->RadioUninstallBefore->TabStop = true;
2011
			this->RadioUninstallBefore->Text = L"Uninstall Before";
1981
			this->RadioUninstallBefore->Text = L"Uninstall Before";
Line 2015... Line 1985...
2015
			// RadioInstallAfter
1985
			// RadioInstallAfter
2016
			// 
1986
			// 
2017
			this->RadioInstallAfter->AutoSize = true;
1987
			this->RadioInstallAfter->AutoSize = true;
2018
			this->RadioInstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
1988
			this->RadioInstallAfter->Dock = System::Windows::Forms::DockStyle::Left;
2019
			this->RadioInstallAfter->Location = System::Drawing::Point(111, 0);
1989
			this->RadioInstallAfter->Location = System::Drawing::Point(111, 0);
2020
			this->RadioInstallAfter->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
1990
			this->RadioInstallAfter->Margin = System::Windows::Forms::Padding(4);
2021
			this->RadioInstallAfter->Name = L"RadioInstallAfter";
1991
			this->RadioInstallAfter->Name = L"RadioInstallAfter";
2022
			this->RadioInstallAfter->Size = System::Drawing::Size(99, 33);
1992
			this->RadioInstallAfter->Size = System::Drawing::Size(99, 33);
2023
			this->RadioInstallAfter->TabIndex = 1;
1993
			this->RadioInstallAfter->TabIndex = 1;
2024
			this->RadioInstallAfter->TabStop = true;
1994
			this->RadioInstallAfter->TabStop = true;
2025
			this->RadioInstallAfter->Text = L"Install After";
1995
			this->RadioInstallAfter->Text = L"Install After";
Line 2029... Line 1999...
2029
			// RadioInstallBefore
1999
			// RadioInstallBefore
2030
			// 
2000
			// 
2031
			this->RadioInstallBefore->AutoSize = true;
2001
			this->RadioInstallBefore->AutoSize = true;
2032
			this->RadioInstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
2002
			this->RadioInstallBefore->Dock = System::Windows::Forms::DockStyle::Left;
2033
			this->RadioInstallBefore->Location = System::Drawing::Point(0, 0);
2003
			this->RadioInstallBefore->Location = System::Drawing::Point(0, 0);
2034
			this->RadioInstallBefore->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2004
			this->RadioInstallBefore->Margin = System::Windows::Forms::Padding(4);
2035
			this->RadioInstallBefore->Name = L"RadioInstallBefore";
2005
			this->RadioInstallBefore->Name = L"RadioInstallBefore";
2036
			this->RadioInstallBefore->Size = System::Drawing::Size(111, 33);
2006
			this->RadioInstallBefore->Size = System::Drawing::Size(111, 33);
2037
			this->RadioInstallBefore->TabIndex = 0;
2007
			this->RadioInstallBefore->TabIndex = 0;
2038
			this->RadioInstallBefore->TabStop = true;
2008
			this->RadioInstallBefore->TabStop = true;
2039
			this->RadioInstallBefore->Text = L"Install Before";
2009
			this->RadioInstallBefore->Text = L"Install Before";
Line 2043... Line 2013...
2043
			// groupBox6
2013
			// groupBox6
2044
			// 
2014
			// 
2045
			this->groupBox6->Controls->Add(this->panel17);
2015
			this->groupBox6->Controls->Add(this->panel17);
2046
			this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
2016
			this->groupBox6->Dock = System::Windows::Forms::DockStyle::Top;
2047
			this->groupBox6->Location = System::Drawing::Point(280, 4);
2017
			this->groupBox6->Location = System::Drawing::Point(280, 4);
2048
			this->groupBox6->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2018
			this->groupBox6->Margin = System::Windows::Forms::Padding(4);
2049
			this->groupBox6->Name = L"groupBox6";
2019
			this->groupBox6->Name = L"groupBox6";
2050
			this->groupBox6->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2020
			this->groupBox6->Padding = System::Windows::Forms::Padding(4);
2051
			this->groupBox6->Size = System::Drawing::Size(716, 78);
2021
			this->groupBox6->Size = System::Drawing::Size(715, 78);
2052
			this->groupBox6->TabIndex = 3;
2022
			this->groupBox6->TabIndex = 3;
2053
			this->groupBox6->TabStop = false;
2023
			this->groupBox6->TabStop = false;
2054
			this->groupBox6->Text = L"Ratings";
2024
			this->groupBox6->Text = L"Ratings";
2055
			// 
2025
			// 
2056
			// panel17
2026
			// panel17
Line 2058... Line 2028...
2058
			this->panel17->Controls->Add(this->GroupChange);
2028
			this->panel17->Controls->Add(this->GroupChange);
2059
			this->panel17->Controls->Add(this->GroupRec);
2029
			this->panel17->Controls->Add(this->GroupRec);
2060
			this->panel17->Controls->Add(this->GroupEase);
2030
			this->panel17->Controls->Add(this->GroupEase);
2061
			this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
2031
			this->panel17->Dock = System::Windows::Forms::DockStyle::Fill;
2062
			this->panel17->Location = System::Drawing::Point(4, 19);
2032
			this->panel17->Location = System::Drawing::Point(4, 19);
2063
			this->panel17->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2033
			this->panel17->Margin = System::Windows::Forms::Padding(4);
2064
			this->panel17->Name = L"panel17";
2034
			this->panel17->Name = L"panel17";
2065
			this->panel17->Size = System::Drawing::Size(708, 55);
2035
			this->panel17->Size = System::Drawing::Size(707, 55);
2066
			this->panel17->TabIndex = 4;
2036
			this->panel17->TabIndex = 4;
2067
			// 
2037
			// 
2068
			// GroupChange
2038
			// GroupChange
2069
			// 
2039
			// 
2070
			this->GroupChange->Controls->Add(this->PicChange5);
2040
			this->GroupChange->Controls->Add(this->PicChange5);
Line 2072... Line 2042...
2072
			this->GroupChange->Controls->Add(this->PicChange3);
2042
			this->GroupChange->Controls->Add(this->PicChange3);
2073
			this->GroupChange->Controls->Add(this->PicChange2);
2043
			this->GroupChange->Controls->Add(this->PicChange2);
2074
			this->GroupChange->Controls->Add(this->PicChange1);
2044
			this->GroupChange->Controls->Add(this->PicChange1);
2075
			this->GroupChange->Dock = System::Windows::Forms::DockStyle::Left;
2045
			this->GroupChange->Dock = System::Windows::Forms::DockStyle::Left;
2076
			this->GroupChange->Location = System::Drawing::Point(335, 0);
2046
			this->GroupChange->Location = System::Drawing::Point(335, 0);
2077
			this->GroupChange->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2047
			this->GroupChange->Margin = System::Windows::Forms::Padding(4);
2078
			this->GroupChange->Name = L"GroupChange";
2048
			this->GroupChange->Name = L"GroupChange";
2079
			this->GroupChange->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2049
			this->GroupChange->Padding = System::Windows::Forms::Padding(4);
2080
			this->GroupChange->Size = System::Drawing::Size(168, 55);
2050
			this->GroupChange->Size = System::Drawing::Size(168, 55);
2081
			this->GroupChange->TabIndex = 2;
2051
			this->GroupChange->TabIndex = 2;
2082
			this->GroupChange->TabStop = false;
2052
			this->GroupChange->TabStop = false;
2083
			this->GroupChange->Text = L"Game Changing";
2053
			this->GroupChange->Text = L"Game Changing";
2084
			// 
2054
			// 
2085
			// PicChange4
2055
			// PicChange4
2086
			// 
2056
			// 
2087
			this->PicChange4->Dock = System::Windows::Forms::DockStyle::Left;
2057
			this->PicChange4->Dock = System::Windows::Forms::DockStyle::Left;
2088
			this->PicChange4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange4.Image")));
2058
			this->PicChange4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange4.Image")));
2089
			this->PicChange4->Location = System::Drawing::Point(100, 19);
2059
			this->PicChange4->Location = System::Drawing::Point(100, 19);
2090
			this->PicChange4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2060
			this->PicChange4->Margin = System::Windows::Forms::Padding(4);
2091
			this->PicChange4->Name = L"PicChange4";
2061
			this->PicChange4->Name = L"PicChange4";
2092
			this->PicChange4->Size = System::Drawing::Size(32, 32);
2062
			this->PicChange4->Size = System::Drawing::Size(32, 32);
2093
			this->PicChange4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2063
			this->PicChange4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2094
			this->PicChange4->TabIndex = 17;
2064
			this->PicChange4->TabIndex = 17;
2095
			this->PicChange4->TabStop = false;
2065
			this->PicChange4->TabStop = false;
Line 2098... Line 2068...
2098
			// PicChange3
2068
			// PicChange3
2099
			// 
2069
			// 
2100
			this->PicChange3->Dock = System::Windows::Forms::DockStyle::Left;
2070
			this->PicChange3->Dock = System::Windows::Forms::DockStyle::Left;
2101
			this->PicChange3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange3.Image")));
2071
			this->PicChange3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange3.Image")));
2102
			this->PicChange3->Location = System::Drawing::Point(68, 19);
2072
			this->PicChange3->Location = System::Drawing::Point(68, 19);
2103
			this->PicChange3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2073
			this->PicChange3->Margin = System::Windows::Forms::Padding(4);
2104
			this->PicChange3->Name = L"PicChange3";
2074
			this->PicChange3->Name = L"PicChange3";
2105
			this->PicChange3->Size = System::Drawing::Size(32, 32);
2075
			this->PicChange3->Size = System::Drawing::Size(32, 32);
2106
			this->PicChange3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2076
			this->PicChange3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2107
			this->PicChange3->TabIndex = 16;
2077
			this->PicChange3->TabIndex = 16;
2108
			this->PicChange3->TabStop = false;
2078
			this->PicChange3->TabStop = false;
Line 2111... Line 2081...
2111
			// PicChange2
2081
			// PicChange2
2112
			// 
2082
			// 
2113
			this->PicChange2->Dock = System::Windows::Forms::DockStyle::Left;
2083
			this->PicChange2->Dock = System::Windows::Forms::DockStyle::Left;
2114
			this->PicChange2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange2.Image")));
2084
			this->PicChange2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicChange2.Image")));
2115
			this->PicChange2->Location = System::Drawing::Point(36, 19);
2085
			this->PicChange2->Location = System::Drawing::Point(36, 19);
2116
			this->PicChange2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2086
			this->PicChange2->Margin = System::Windows::Forms::Padding(4);
2117
			this->PicChange2->Name = L"PicChange2";
2087
			this->PicChange2->Name = L"PicChange2";
2118
			this->PicChange2->Size = System::Drawing::Size(32, 32);
2088
			this->PicChange2->Size = System::Drawing::Size(32, 32);
2119
			this->PicChange2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2089
			this->PicChange2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2120
			this->PicChange2->TabIndex = 15;
2090
			this->PicChange2->TabIndex = 15;
2121
			this->PicChange2->TabStop = false;
2091
			this->PicChange2->TabStop = false;
Line 2128... Line 2098...
2128
			this->GroupRec->Controls->Add(this->PicRec3);
2098
			this->GroupRec->Controls->Add(this->PicRec3);
2129
			this->GroupRec->Controls->Add(this->PicRec2);
2099
			this->GroupRec->Controls->Add(this->PicRec2);
2130
			this->GroupRec->Controls->Add(this->PicRec1);
2100
			this->GroupRec->Controls->Add(this->PicRec1);
2131
			this->GroupRec->Dock = System::Windows::Forms::DockStyle::Left;
2101
			this->GroupRec->Dock = System::Windows::Forms::DockStyle::Left;
2132
			this->GroupRec->Location = System::Drawing::Point(168, 0);
2102
			this->GroupRec->Location = System::Drawing::Point(168, 0);
2133
			this->GroupRec->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2103
			this->GroupRec->Margin = System::Windows::Forms::Padding(4);
2134
			this->GroupRec->Name = L"GroupRec";
2104
			this->GroupRec->Name = L"GroupRec";
2135
			this->GroupRec->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2105
			this->GroupRec->Padding = System::Windows::Forms::Padding(4);
2136
			this->GroupRec->Size = System::Drawing::Size(167, 55);
2106
			this->GroupRec->Size = System::Drawing::Size(167, 55);
2137
			this->GroupRec->TabIndex = 3;
2107
			this->GroupRec->TabIndex = 3;
2138
			this->GroupRec->TabStop = false;
2108
			this->GroupRec->TabStop = false;
2139
			this->GroupRec->Text = L"Recommended";
2109
			this->GroupRec->Text = L"Recommended";
2140
			// 
2110
			// 
2141
			// PicRec4
2111
			// PicRec4
2142
			// 
2112
			// 
2143
			this->PicRec4->Dock = System::Windows::Forms::DockStyle::Left;
2113
			this->PicRec4->Dock = System::Windows::Forms::DockStyle::Left;
2144
			this->PicRec4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec4.Image")));
2114
			this->PicRec4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec4.Image")));
2145
			this->PicRec4->Location = System::Drawing::Point(100, 19);
2115
			this->PicRec4->Location = System::Drawing::Point(100, 19);
2146
			this->PicRec4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2116
			this->PicRec4->Margin = System::Windows::Forms::Padding(4);
2147
			this->PicRec4->Name = L"PicRec4";
2117
			this->PicRec4->Name = L"PicRec4";
2148
			this->PicRec4->Size = System::Drawing::Size(32, 32);
2118
			this->PicRec4->Size = System::Drawing::Size(32, 32);
2149
			this->PicRec4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2119
			this->PicRec4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2150
			this->PicRec4->TabIndex = 17;
2120
			this->PicRec4->TabIndex = 17;
2151
			this->PicRec4->TabStop = false;
2121
			this->PicRec4->TabStop = false;
Line 2154... Line 2124...
2154
			// PicRec3
2124
			// PicRec3
2155
			// 
2125
			// 
2156
			this->PicRec3->Dock = System::Windows::Forms::DockStyle::Left;
2126
			this->PicRec3->Dock = System::Windows::Forms::DockStyle::Left;
2157
			this->PicRec3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec3.Image")));
2127
			this->PicRec3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec3.Image")));
2158
			this->PicRec3->Location = System::Drawing::Point(68, 19);
2128
			this->PicRec3->Location = System::Drawing::Point(68, 19);
2159
			this->PicRec3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2129
			this->PicRec3->Margin = System::Windows::Forms::Padding(4);
2160
			this->PicRec3->Name = L"PicRec3";
2130
			this->PicRec3->Name = L"PicRec3";
2161
			this->PicRec3->Size = System::Drawing::Size(32, 32);
2131
			this->PicRec3->Size = System::Drawing::Size(32, 32);
2162
			this->PicRec3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2132
			this->PicRec3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2163
			this->PicRec3->TabIndex = 16;
2133
			this->PicRec3->TabIndex = 16;
2164
			this->PicRec3->TabStop = false;
2134
			this->PicRec3->TabStop = false;
Line 2167... Line 2137...
2167
			// PicRec2
2137
			// PicRec2
2168
			// 
2138
			// 
2169
			this->PicRec2->Dock = System::Windows::Forms::DockStyle::Left;
2139
			this->PicRec2->Dock = System::Windows::Forms::DockStyle::Left;
2170
			this->PicRec2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec2.Image")));
2140
			this->PicRec2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec2.Image")));
2171
			this->PicRec2->Location = System::Drawing::Point(36, 19);
2141
			this->PicRec2->Location = System::Drawing::Point(36, 19);
2172
			this->PicRec2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2142
			this->PicRec2->Margin = System::Windows::Forms::Padding(4);
2173
			this->PicRec2->Name = L"PicRec2";
2143
			this->PicRec2->Name = L"PicRec2";
2174
			this->PicRec2->Size = System::Drawing::Size(32, 32);
2144
			this->PicRec2->Size = System::Drawing::Size(32, 32);
2175
			this->PicRec2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2145
			this->PicRec2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2176
			this->PicRec2->TabIndex = 15;
2146
			this->PicRec2->TabIndex = 15;
2177
			this->PicRec2->TabStop = false;
2147
			this->PicRec2->TabStop = false;
Line 2180... Line 2150...
2180
			// PicRec1
2150
			// PicRec1
2181
			// 
2151
			// 
2182
			this->PicRec1->Dock = System::Windows::Forms::DockStyle::Left;
2152
			this->PicRec1->Dock = System::Windows::Forms::DockStyle::Left;
2183
			this->PicRec1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec1.Image")));
2153
			this->PicRec1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicRec1.Image")));
2184
			this->PicRec1->Location = System::Drawing::Point(4, 19);
2154
			this->PicRec1->Location = System::Drawing::Point(4, 19);
2185
			this->PicRec1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2155
			this->PicRec1->Margin = System::Windows::Forms::Padding(4);
2186
			this->PicRec1->Name = L"PicRec1";
2156
			this->PicRec1->Name = L"PicRec1";
2187
			this->PicRec1->Size = System::Drawing::Size(32, 32);
2157
			this->PicRec1->Size = System::Drawing::Size(32, 32);
2188
			this->PicRec1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2158
			this->PicRec1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2189
			this->PicRec1->TabIndex = 14;
2159
			this->PicRec1->TabIndex = 14;
2190
			this->PicRec1->TabStop = false;
2160
			this->PicRec1->TabStop = false;
Line 2197... Line 2167...
2197
			this->GroupEase->Controls->Add(this->PicEase3);
2167
			this->GroupEase->Controls->Add(this->PicEase3);
2198
			this->GroupEase->Controls->Add(this->PicEase2);
2168
			this->GroupEase->Controls->Add(this->PicEase2);
2199
			this->GroupEase->Controls->Add(this->PicEase1);
2169
			this->GroupEase->Controls->Add(this->PicEase1);
2200
			this->GroupEase->Dock = System::Windows::Forms::DockStyle::Left;
2170
			this->GroupEase->Dock = System::Windows::Forms::DockStyle::Left;
2201
			this->GroupEase->Location = System::Drawing::Point(0, 0);
2171
			this->GroupEase->Location = System::Drawing::Point(0, 0);
2202
			this->GroupEase->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2172
			this->GroupEase->Margin = System::Windows::Forms::Padding(4);
2203
			this->GroupEase->Name = L"GroupEase";
2173
			this->GroupEase->Name = L"GroupEase";
2204
			this->GroupEase->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2174
			this->GroupEase->Padding = System::Windows::Forms::Padding(4);
2205
			this->GroupEase->Size = System::Drawing::Size(168, 55);
2175
			this->GroupEase->Size = System::Drawing::Size(168, 55);
2206
			this->GroupEase->TabIndex = 1;
2176
			this->GroupEase->TabIndex = 1;
2207
			this->GroupEase->TabStop = false;
2177
			this->GroupEase->TabStop = false;
2208
			this->GroupEase->Text = L"Ease of Use";
2178
			this->GroupEase->Text = L"Ease of Use";
2209
			// 
2179
			// 
2210
			// PicEase5
2180
			// PicEase5
2211
			// 
2181
			// 
2212
			this->PicEase5->Dock = System::Windows::Forms::DockStyle::Left;
2182
			this->PicEase5->Dock = System::Windows::Forms::DockStyle::Left;
2213
			this->PicEase5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase5.Image")));
2183
			this->PicEase5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase5.Image")));
2214
			this->PicEase5->Location = System::Drawing::Point(132, 19);
2184
			this->PicEase5->Location = System::Drawing::Point(132, 19);
2215
			this->PicEase5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2185
			this->PicEase5->Margin = System::Windows::Forms::Padding(4);
2216
			this->PicEase5->Name = L"PicEase5";
2186
			this->PicEase5->Name = L"PicEase5";
2217
			this->PicEase5->Size = System::Drawing::Size(32, 32);
2187
			this->PicEase5->Size = System::Drawing::Size(32, 32);
2218
			this->PicEase5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2188
			this->PicEase5->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2219
			this->PicEase5->TabIndex = 17;
2189
			this->PicEase5->TabIndex = 17;
2220
			this->PicEase5->TabStop = false;
2190
			this->PicEase5->TabStop = false;
Line 2223... Line 2193...
2223
			// PicEase4
2193
			// PicEase4
2224
			// 
2194
			// 
2225
			this->PicEase4->Dock = System::Windows::Forms::DockStyle::Left;
2195
			this->PicEase4->Dock = System::Windows::Forms::DockStyle::Left;
2226
			this->PicEase4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase4.Image")));
2196
			this->PicEase4->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase4.Image")));
2227
			this->PicEase4->Location = System::Drawing::Point(100, 19);
2197
			this->PicEase4->Location = System::Drawing::Point(100, 19);
2228
			this->PicEase4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2198
			this->PicEase4->Margin = System::Windows::Forms::Padding(4);
2229
			this->PicEase4->Name = L"PicEase4";
2199
			this->PicEase4->Name = L"PicEase4";
2230
			this->PicEase4->Size = System::Drawing::Size(32, 32);
2200
			this->PicEase4->Size = System::Drawing::Size(32, 32);
2231
			this->PicEase4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2201
			this->PicEase4->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2232
			this->PicEase4->TabIndex = 16;
2202
			this->PicEase4->TabIndex = 16;
2233
			this->PicEase4->TabStop = false;
2203
			this->PicEase4->TabStop = false;
Line 2236... Line 2206...
2236
			// PicEase3
2206
			// PicEase3
2237
			// 
2207
			// 
2238
			this->PicEase3->Dock = System::Windows::Forms::DockStyle::Left;
2208
			this->PicEase3->Dock = System::Windows::Forms::DockStyle::Left;
2239
			this->PicEase3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase3.Image")));
2209
			this->PicEase3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase3.Image")));
2240
			this->PicEase3->Location = System::Drawing::Point(68, 19);
2210
			this->PicEase3->Location = System::Drawing::Point(68, 19);
2241
			this->PicEase3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2211
			this->PicEase3->Margin = System::Windows::Forms::Padding(4);
2242
			this->PicEase3->Name = L"PicEase3";
2212
			this->PicEase3->Name = L"PicEase3";
2243
			this->PicEase3->Size = System::Drawing::Size(32, 32);
2213
			this->PicEase3->Size = System::Drawing::Size(32, 32);
2244
			this->PicEase3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2214
			this->PicEase3->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2245
			this->PicEase3->TabIndex = 15;
2215
			this->PicEase3->TabIndex = 15;
2246
			this->PicEase3->TabStop = false;
2216
			this->PicEase3->TabStop = false;
Line 2249... Line 2219...
2249
			// PicEase2
2219
			// PicEase2
2250
			// 
2220
			// 
2251
			this->PicEase2->Dock = System::Windows::Forms::DockStyle::Left;
2221
			this->PicEase2->Dock = System::Windows::Forms::DockStyle::Left;
2252
			this->PicEase2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase2.Image")));
2222
			this->PicEase2->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase2.Image")));
2253
			this->PicEase2->Location = System::Drawing::Point(36, 19);
2223
			this->PicEase2->Location = System::Drawing::Point(36, 19);
2254
			this->PicEase2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2224
			this->PicEase2->Margin = System::Windows::Forms::Padding(4);
2255
			this->PicEase2->Name = L"PicEase2";
2225
			this->PicEase2->Name = L"PicEase2";
2256
			this->PicEase2->Size = System::Drawing::Size(32, 32);
2226
			this->PicEase2->Size = System::Drawing::Size(32, 32);
2257
			this->PicEase2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2227
			this->PicEase2->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2258
			this->PicEase2->TabIndex = 14;
2228
			this->PicEase2->TabIndex = 14;
2259
			this->PicEase2->TabStop = false;
2229
			this->PicEase2->TabStop = false;
Line 2262... Line 2232...
2262
			// PicEase1
2232
			// PicEase1
2263
			// 
2233
			// 
2264
			this->PicEase1->Dock = System::Windows::Forms::DockStyle::Left;
2234
			this->PicEase1->Dock = System::Windows::Forms::DockStyle::Left;
2265
			this->PicEase1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase1.Image")));
2235
			this->PicEase1->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"PicEase1.Image")));
2266
			this->PicEase1->Location = System::Drawing::Point(4, 19);
2236
			this->PicEase1->Location = System::Drawing::Point(4, 19);
2267
			this->PicEase1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2237
			this->PicEase1->Margin = System::Windows::Forms::Padding(4);
2268
			this->PicEase1->Name = L"PicEase1";
2238
			this->PicEase1->Name = L"PicEase1";
2269
			this->PicEase1->Size = System::Drawing::Size(32, 32);
2239
			this->PicEase1->Size = System::Drawing::Size(32, 32);
2270
			this->PicEase1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2240
			this->PicEase1->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2271
			this->PicEase1->TabIndex = 13;
2241
			this->PicEase1->TabIndex = 13;
2272
			this->PicEase1->TabStop = false;
2242
			this->PicEase1->TabStop = false;
Line 2277... Line 2247...
2277
			this->groupBox5->Controls->Add(this->ButIconDel);
2247
			this->groupBox5->Controls->Add(this->ButIconDel);
2278
			this->groupBox5->Controls->Add(this->DisplayIcon);
2248
			this->groupBox5->Controls->Add(this->DisplayIcon);
2279
			this->groupBox5->Controls->Add(this->button4);
2249
			this->groupBox5->Controls->Add(this->button4);
2280
			this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
2250
			this->groupBox5->Dock = System::Windows::Forms::DockStyle::Left;
2281
			this->groupBox5->Location = System::Drawing::Point(204, 4);
2251
			this->groupBox5->Location = System::Drawing::Point(204, 4);
2282
			this->groupBox5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2252
			this->groupBox5->Margin = System::Windows::Forms::Padding(4);
2283
			this->groupBox5->Name = L"groupBox5";
2253
			this->groupBox5->Name = L"groupBox5";
2284
			this->groupBox5->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2254
			this->groupBox5->Padding = System::Windows::Forms::Padding(4);
2285
			this->groupBox5->Size = System::Drawing::Size(76, 240);
2255
			this->groupBox5->Size = System::Drawing::Size(76, 261);
2286
			this->groupBox5->TabIndex = 2;
2256
			this->groupBox5->TabIndex = 2;
2287
			this->groupBox5->TabStop = false;
2257
			this->groupBox5->TabStop = false;
2288
			this->groupBox5->Text = L"Icon";
2258
			this->groupBox5->Text = L"Icon";
2289
			// 
2259
			// 
2290
			// ButIconDel
2260
			// ButIconDel
2291
			// 
2261
			// 
2292
			this->ButIconDel->Dock = System::Windows::Forms::DockStyle::Top;
2262
			this->ButIconDel->Dock = System::Windows::Forms::DockStyle::Top;
2293
			this->ButIconDel->Location = System::Drawing::Point(4, 104);
2263
			this->ButIconDel->Location = System::Drawing::Point(4, 104);
2294
			this->ButIconDel->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2264
			this->ButIconDel->Margin = System::Windows::Forms::Padding(4);
2295
			this->ButIconDel->Name = L"ButIconDel";
2265
			this->ButIconDel->Name = L"ButIconDel";
2296
			this->ButIconDel->Size = System::Drawing::Size(68, 28);
2266
			this->ButIconDel->Size = System::Drawing::Size(68, 28);
2297
			this->ButIconDel->TabIndex = 1;
2267
			this->ButIconDel->TabIndex = 1;
2298
			this->ButIconDel->Text = L"Del";
2268
			this->ButIconDel->Text = L"Del";
2299
			this->ButIconDel->UseVisualStyleBackColor = true;
2269
			this->ButIconDel->UseVisualStyleBackColor = true;
Line 2302... Line 2272...
2302
			// DisplayIcon
2272
			// DisplayIcon
2303
			// 
2273
			// 
2304
			this->DisplayIcon->Dock = System::Windows::Forms::DockStyle::Top;
2274
			this->DisplayIcon->Dock = System::Windows::Forms::DockStyle::Top;
2305
			this->DisplayIcon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayIcon.Image")));
2275
			this->DisplayIcon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayIcon.Image")));
2306
			this->DisplayIcon->Location = System::Drawing::Point(4, 47);
2276
			this->DisplayIcon->Location = System::Drawing::Point(4, 47);
2307
			this->DisplayIcon->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2277
			this->DisplayIcon->Margin = System::Windows::Forms::Padding(4);
2308
			this->DisplayIcon->Name = L"DisplayIcon";
2278
			this->DisplayIcon->Name = L"DisplayIcon";
2309
			this->DisplayIcon->Size = System::Drawing::Size(68, 57);
2279
			this->DisplayIcon->Size = System::Drawing::Size(68, 57);
2310
			this->DisplayIcon->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2280
			this->DisplayIcon->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2311
			this->DisplayIcon->TabIndex = 0;
2281
			this->DisplayIcon->TabIndex = 0;
2312
			this->DisplayIcon->TabStop = false;
2282
			this->DisplayIcon->TabStop = false;
2313
			// 
2283
			// 
2314
			// button4
2284
			// button4
2315
			// 
2285
			// 
2316
			this->button4->Dock = System::Windows::Forms::DockStyle::Top;
2286
			this->button4->Dock = System::Windows::Forms::DockStyle::Top;
2317
			this->button4->Location = System::Drawing::Point(4, 19);
2287
			this->button4->Location = System::Drawing::Point(4, 19);
2318
			this->button4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2288
			this->button4->Margin = System::Windows::Forms::Padding(4);
2319
			this->button4->Name = L"button4";
2289
			this->button4->Name = L"button4";
2320
			this->button4->Size = System::Drawing::Size(68, 28);
2290
			this->button4->Size = System::Drawing::Size(68, 28);
2321
			this->button4->TabIndex = 2;
2291
			this->button4->TabIndex = 2;
2322
			this->button4->Text = L"Set";
2292
			this->button4->Text = L"Set";
2323
			this->button4->UseVisualStyleBackColor = true;
2293
			this->button4->UseVisualStyleBackColor = true;
Line 2327... Line 2297...
2327
			// 
2297
			// 
2328
			this->panel15->Controls->Add(this->DisplayPicture);
2298
			this->panel15->Controls->Add(this->DisplayPicture);
2329
			this->panel15->Controls->Add(this->panel16);
2299
			this->panel15->Controls->Add(this->panel16);
2330
			this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
2300
			this->panel15->Dock = System::Windows::Forms::DockStyle::Left;
2331
			this->panel15->Location = System::Drawing::Point(4, 4);
2301
			this->panel15->Location = System::Drawing::Point(4, 4);
2332
			this->panel15->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2302
			this->panel15->Margin = System::Windows::Forms::Padding(4);
2333
			this->panel15->Name = L"panel15";
2303
			this->panel15->Name = L"panel15";
2334
			this->panel15->Size = System::Drawing::Size(200, 240);
2304
			this->panel15->Size = System::Drawing::Size(200, 261);
2335
			this->panel15->TabIndex = 1;
2305
			this->panel15->TabIndex = 1;
2336
			// 
2306
			// 
2337
			// DisplayPicture
2307
			// DisplayPicture
2338
			// 
2308
			// 
2339
			this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
2309
			this->DisplayPicture->Dock = System::Windows::Forms::DockStyle::Fill;
2340
			this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
2310
			this->DisplayPicture->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"DisplayPicture.Image")));
2341
			this->DisplayPicture->Location = System::Drawing::Point(0, 0);
2311
			this->DisplayPicture->Location = System::Drawing::Point(0, 0);
2342
			this->DisplayPicture->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2312
			this->DisplayPicture->Margin = System::Windows::Forms::Padding(4);
2343
			this->DisplayPicture->Name = L"DisplayPicture";
2313
			this->DisplayPicture->Name = L"DisplayPicture";
2344
			this->DisplayPicture->Size = System::Drawing::Size(200, 204);
2314
			this->DisplayPicture->Size = System::Drawing::Size(200, 225);
2345
			this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2315
			this->DisplayPicture->SizeMode = System::Windows::Forms::PictureBoxSizeMode::StretchImage;
2346
			this->DisplayPicture->TabIndex = 0;
2316
			this->DisplayPicture->TabIndex = 0;
2347
			this->DisplayPicture->TabStop = false;
2317
			this->DisplayPicture->TabStop = false;
2348
			// 
2318
			// 
2349
			// panel16
2319
			// panel16
Line 2351... Line 2321...
2351
			this->panel16->Controls->Add(this->ButPicAdd);
2321
			this->panel16->Controls->Add(this->ButPicAdd);
2352
			this->panel16->Controls->Add(this->ButPicDel);
2322
			this->panel16->Controls->Add(this->ButPicDel);
2353
			this->panel16->Controls->Add(this->ButPicNext);
2323
			this->panel16->Controls->Add(this->ButPicNext);
2354
			this->panel16->Controls->Add(this->ButPicBack);
2324
			this->panel16->Controls->Add(this->ButPicBack);
2355
			this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
2325
			this->panel16->Dock = System::Windows::Forms::DockStyle::Bottom;
2356
			this->panel16->Location = System::Drawing::Point(0, 204);
2326
			this->panel16->Location = System::Drawing::Point(0, 225);
2357
			this->panel16->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2327
			this->panel16->Margin = System::Windows::Forms::Padding(4);
2358
			this->panel16->Name = L"panel16";
2328
			this->panel16->Name = L"panel16";
2359
			this->panel16->Size = System::Drawing::Size(200, 36);
2329
			this->panel16->Size = System::Drawing::Size(200, 36);
2360
			this->panel16->TabIndex = 2;
2330
			this->panel16->TabIndex = 2;
2361
			// 
2331
			// 
2362
			// ButPicAdd
2332
			// ButPicAdd
2363
			// 
2333
			// 
2364
			this->ButPicAdd->Dock = System::Windows::Forms::DockStyle::Fill;
2334
			this->ButPicAdd->Dock = System::Windows::Forms::DockStyle::Fill;
2365
			this->ButPicAdd->Location = System::Drawing::Point(43, 0);
2335
			this->ButPicAdd->Location = System::Drawing::Point(43, 0);
2366
			this->ButPicAdd->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2336
			this->ButPicAdd->Margin = System::Windows::Forms::Padding(4);
2367
			this->ButPicAdd->Name = L"ButPicAdd";
2337
			this->ButPicAdd->Name = L"ButPicAdd";
2368
			this->ButPicAdd->Size = System::Drawing::Size(65, 36);
2338
			this->ButPicAdd->Size = System::Drawing::Size(65, 36);
2369
			this->ButPicAdd->TabIndex = 4;
2339
			this->ButPicAdd->TabIndex = 4;
2370
			this->ButPicAdd->Text = L"Add";
2340
			this->ButPicAdd->Text = L"Add";
2371
			this->ButPicAdd->UseVisualStyleBackColor = true;
2341
			this->ButPicAdd->UseVisualStyleBackColor = true;
Line 2374... Line 2344...
2374
			// ButPicDel
2344
			// ButPicDel
2375
			// 
2345
			// 
2376
			this->ButPicDel->Dock = System::Windows::Forms::DockStyle::Right;
2346
			this->ButPicDel->Dock = System::Windows::Forms::DockStyle::Right;
2377
			this->ButPicDel->Enabled = false;
2347
			this->ButPicDel->Enabled = false;
2378
			this->ButPicDel->Location = System::Drawing::Point(108, 0);
2348
			this->ButPicDel->Location = System::Drawing::Point(108, 0);
2379
			this->ButPicDel->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2349
			this->ButPicDel->Margin = System::Windows::Forms::Padding(4);
2380
			this->ButPicDel->Name = L"ButPicDel";
2350
			this->ButPicDel->Name = L"ButPicDel";
2381
			this->ButPicDel->Size = System::Drawing::Size(53, 36);
2351
			this->ButPicDel->Size = System::Drawing::Size(53, 36);
2382
			this->ButPicDel->TabIndex = 3;
2352
			this->ButPicDel->TabIndex = 3;
2383
			this->ButPicDel->Text = L"Del";
2353
			this->ButPicDel->Text = L"Del";
2384
			this->ButPicDel->UseVisualStyleBackColor = true;
2354
			this->ButPicDel->UseVisualStyleBackColor = true;
Line 2387... Line 2357...
2387
			// ButPicNext
2357
			// ButPicNext
2388
			// 
2358
			// 
2389
			this->ButPicNext->Dock = System::Windows::Forms::DockStyle::Right;
2359
			this->ButPicNext->Dock = System::Windows::Forms::DockStyle::Right;
2390
			this->ButPicNext->Enabled = false;
2360
			this->ButPicNext->Enabled = false;
2391
			this->ButPicNext->Location = System::Drawing::Point(161, 0);
2361
			this->ButPicNext->Location = System::Drawing::Point(161, 0);
2392
			this->ButPicNext->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2362
			this->ButPicNext->Margin = System::Windows::Forms::Padding(4);
2393
			this->ButPicNext->Name = L"ButPicNext";
2363
			this->ButPicNext->Name = L"ButPicNext";
2394
			this->ButPicNext->Size = System::Drawing::Size(39, 36);
2364
			this->ButPicNext->Size = System::Drawing::Size(39, 36);
2395
			this->ButPicNext->TabIndex = 2;
2365
			this->ButPicNext->TabIndex = 2;
2396
			this->ButPicNext->Text = L"->";
2366
			this->ButPicNext->Text = L"->";
2397
			this->ButPicNext->UseVisualStyleBackColor = true;
2367
			this->ButPicNext->UseVisualStyleBackColor = true;
Line 2400... Line 2370...
2400
			// ButPicBack
2370
			// ButPicBack
2401
			// 
2371
			// 
2402
			this->ButPicBack->Dock = System::Windows::Forms::DockStyle::Left;
2372
			this->ButPicBack->Dock = System::Windows::Forms::DockStyle::Left;
2403
			this->ButPicBack->Enabled = false;
2373
			this->ButPicBack->Enabled = false;
2404
			this->ButPicBack->Location = System::Drawing::Point(0, 0);
2374
			this->ButPicBack->Location = System::Drawing::Point(0, 0);
2405
			this->ButPicBack->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2375
			this->ButPicBack->Margin = System::Windows::Forms::Padding(4);
2406
			this->ButPicBack->Name = L"ButPicBack";
2376
			this->ButPicBack->Name = L"ButPicBack";
2407
			this->ButPicBack->Size = System::Drawing::Size(43, 36);
2377
			this->ButPicBack->Size = System::Drawing::Size(43, 36);
2408
			this->ButPicBack->TabIndex = 1;
2378
			this->ButPicBack->TabIndex = 1;
2409
			this->ButPicBack->Text = L"<-";
2379
			this->ButPicBack->Text = L"<-";
2410
			this->ButPicBack->UseVisualStyleBackColor = true;
2380
			this->ButPicBack->UseVisualStyleBackColor = true;
Line 2412... Line 2382...
2412
			// 
2382
			// 
2413
			// tabPage2
2383
			// tabPage2
2414
			// 
2384
			// 
2415
			this->tabPage2->Controls->Add(this->ListNames);
2385
			this->tabPage2->Controls->Add(this->ListNames);
2416
			this->tabPage2->Controls->Add(this->groupBox4);
2386
			this->tabPage2->Controls->Add(this->groupBox4);
2417
			this->tabPage2->Location = System::Drawing::Point(4, 46);
2387
			this->tabPage2->Location = System::Drawing::Point(4, 25);
2418
			this->tabPage2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2388
			this->tabPage2->Margin = System::Windows::Forms::Padding(4);
2419
			this->tabPage2->Name = L"tabPage2";
2389
			this->tabPage2->Name = L"tabPage2";
2420
			this->tabPage2->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2390
			this->tabPage2->Padding = System::Windows::Forms::Padding(4);
2421
			this->tabPage2->Size = System::Drawing::Size(1000, 248);
2391
			this->tabPage2->Size = System::Drawing::Size(999, 269);
2422
			this->tabPage2->TabIndex = 3;
2392
			this->tabPage2->TabIndex = 3;
2423
			this->tabPage2->Text = L"Advanced";
2393
			this->tabPage2->Text = L"Advanced";
2424
			this->tabPage2->UseVisualStyleBackColor = true;
2394
			this->tabPage2->UseVisualStyleBackColor = true;
2425
			// 
2395
			// 
2426
			// ListNames
2396
			// ListNames
Line 2429... Line 2399...
2429
			this->ListNames->ContextMenuStrip = this->ContextLangName;
2399
			this->ListNames->ContextMenuStrip = this->ContextLangName;
2430
			this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
2400
			this->ListNames->Dock = System::Windows::Forms::DockStyle::Fill;
2431
			this->ListNames->FullRowSelect = true;
2401
			this->ListNames->FullRowSelect = true;
2432
			this->ListNames->HideSelection = false;
2402
			this->ListNames->HideSelection = false;
2433
			this->ListNames->Location = System::Drawing::Point(4, 149);
2403
			this->ListNames->Location = System::Drawing::Point(4, 149);
2434
			this->ListNames->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2404
			this->ListNames->Margin = System::Windows::Forms::Padding(4);
2435
			this->ListNames->Name = L"ListNames";
2405
			this->ListNames->Name = L"ListNames";
2436
			this->ListNames->Size = System::Drawing::Size(992, 95);
2406
			this->ListNames->Size = System::Drawing::Size(991, 116);
2437
			this->ListNames->TabIndex = 1;
2407
			this->ListNames->TabIndex = 1;
2438
			this->ListNames->UseCompatibleStateImageBehavior = false;
2408
			this->ListNames->UseCompatibleStateImageBehavior = false;
2439
			this->ListNames->View = System::Windows::Forms::View::Details;
2409
			this->ListNames->View = System::Windows::Forms::View::Details;
2440
			this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
2410
			this->ListNames->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListNames_MouseDoubleClick);
2441
			// 
2411
			// 
Line 2510... Line 2480...
2510
			// 
2480
			// 
2511
			this->groupBox4->Controls->Add(this->ListMirrors);
2481
			this->groupBox4->Controls->Add(this->ListMirrors);
2512
			this->groupBox4->Controls->Add(this->panel14);
2482
			this->groupBox4->Controls->Add(this->panel14);
2513
			this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
2483
			this->groupBox4->Dock = System::Windows::Forms::DockStyle::Top;
2514
			this->groupBox4->Location = System::Drawing::Point(4, 4);
2484
			this->groupBox4->Location = System::Drawing::Point(4, 4);
2515
			this->groupBox4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2485
			this->groupBox4->Margin = System::Windows::Forms::Padding(4);
2516
			this->groupBox4->Name = L"groupBox4";
2486
			this->groupBox4->Name = L"groupBox4";
2517
			this->groupBox4->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2487
			this->groupBox4->Padding = System::Windows::Forms::Padding(4);
2518
			this->groupBox4->Size = System::Drawing::Size(992, 145);
2488
			this->groupBox4->Size = System::Drawing::Size(991, 145);
2519
			this->groupBox4->TabIndex = 0;
2489
			this->groupBox4->TabIndex = 0;
2520
			this->groupBox4->TabStop = false;
2490
			this->groupBox4->TabStop = false;
2521
			this->groupBox4->Text = L"Automatic Update";
2491
			this->groupBox4->Text = L"Automatic Update";
2522
			// 
2492
			// 
2523
			// ListMirrors
2493
			// ListMirrors
Line 2528... Line 2498...
2528
			this->ListMirrors->FullRowSelect = true;
2498
			this->ListMirrors->FullRowSelect = true;
2529
			this->ListMirrors->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2499
			this->ListMirrors->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2530
			this->ListMirrors->HideSelection = false;
2500
			this->ListMirrors->HideSelection = false;
2531
			this->ListMirrors->LabelWrap = false;
2501
			this->ListMirrors->LabelWrap = false;
2532
			this->ListMirrors->Location = System::Drawing::Point(4, 49);
2502
			this->ListMirrors->Location = System::Drawing::Point(4, 49);
2533
			this->ListMirrors->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2503
			this->ListMirrors->Margin = System::Windows::Forms::Padding(4);
2534
			this->ListMirrors->MultiSelect = false;
2504
			this->ListMirrors->MultiSelect = false;
2535
			this->ListMirrors->Name = L"ListMirrors";
2505
			this->ListMirrors->Name = L"ListMirrors";
2536
			this->ListMirrors->ShowGroups = false;
2506
			this->ListMirrors->ShowGroups = false;
2537
			this->ListMirrors->Size = System::Drawing::Size(984, 92);
2507
			this->ListMirrors->Size = System::Drawing::Size(983, 92);
2538
			this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
2508
			this->ListMirrors->Sorting = System::Windows::Forms::SortOrder::Ascending;
2539
			this->ListMirrors->TabIndex = 1;
2509
			this->ListMirrors->TabIndex = 1;
2540
			this->ListMirrors->UseCompatibleStateImageBehavior = false;
2510
			this->ListMirrors->UseCompatibleStateImageBehavior = false;
2541
			this->ListMirrors->View = System::Windows::Forms::View::Details;
2511
			this->ListMirrors->View = System::Windows::Forms::View::Details;
2542
			this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
2512
			this->ListMirrors->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListMirrors_MouseDoubleClick);
Line 2593... Line 2563...
2593
			// 
2563
			// 
2594
			this->panel14->Controls->Add(this->TextWebAddress);
2564
			this->panel14->Controls->Add(this->TextWebAddress);
2595
			this->panel14->Controls->Add(this->label14);
2565
			this->panel14->Controls->Add(this->label14);
2596
			this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
2566
			this->panel14->Dock = System::Windows::Forms::DockStyle::Top;
2597
			this->panel14->Location = System::Drawing::Point(4, 19);
2567
			this->panel14->Location = System::Drawing::Point(4, 19);
2598
			this->panel14->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2568
			this->panel14->Margin = System::Windows::Forms::Padding(4);
2599
			this->panel14->Name = L"panel14";
2569
			this->panel14->Name = L"panel14";
2600
			this->panel14->Size = System::Drawing::Size(984, 30);
2570
			this->panel14->Size = System::Drawing::Size(983, 30);
2601
			this->panel14->TabIndex = 2;
2571
			this->panel14->TabIndex = 2;
2602
			// 
2572
			// 
2603
			// TextWebAddress
2573
			// TextWebAddress
2604
			// 
2574
			// 
2605
			this->TextWebAddress->DetectUrls = false;
2575
			this->TextWebAddress->DetectUrls = false;
2606
			this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
2576
			this->TextWebAddress->Dock = System::Windows::Forms::DockStyle::Fill;
2607
			this->TextWebAddress->Location = System::Drawing::Point(189, 0);
2577
			this->TextWebAddress->Location = System::Drawing::Point(189, 0);
2608
			this->TextWebAddress->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2578
			this->TextWebAddress->Margin = System::Windows::Forms::Padding(4);
2609
			this->TextWebAddress->Name = L"TextWebAddress";
2579
			this->TextWebAddress->Name = L"TextWebAddress";
2610
			this->TextWebAddress->Size = System::Drawing::Size(795, 30);
2580
			this->TextWebAddress->Size = System::Drawing::Size(794, 30);
2611
			this->TextWebAddress->TabIndex = 1;
2581
			this->TextWebAddress->TabIndex = 1;
2612
			this->TextWebAddress->Text = L"";
2582
			this->TextWebAddress->Text = L"";
2613
			this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
2583
			this->TextWebAddress->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextWebAddress_TextChanged_1);
2614
			// 
2584
			// 
2615
			// label14
2585
			// label14
Line 2625... Line 2595...
2625
			this->label14->Text = L"Primary Address";
2595
			this->label14->Text = L"Primary Address";
2626
			// 
2596
			// 
2627
			// tabPage4
2597
			// tabPage4
2628
			// 
2598
			// 
2629
			this->tabPage4->Controls->Add(this->ListDep);
2599
			this->tabPage4->Controls->Add(this->ListDep);
2630
			this->tabPage4->Location = System::Drawing::Point(4, 46);
2600
			this->tabPage4->Location = System::Drawing::Point(4, 25);
2631
			this->tabPage4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2601
			this->tabPage4->Margin = System::Windows::Forms::Padding(4);
2632
			this->tabPage4->Name = L"tabPage4";
2602
			this->tabPage4->Name = L"tabPage4";
2633
			this->tabPage4->Padding = System::Windows::Forms::Padding(20, 18, 20, 18);
2603
			this->tabPage4->Padding = System::Windows::Forms::Padding(20, 18, 20, 18);
2634
			this->tabPage4->Size = System::Drawing::Size(1000, 248);
2604
			this->tabPage4->Size = System::Drawing::Size(999, 269);
2635
			this->tabPage4->TabIndex = 9;
2605
			this->tabPage4->TabIndex = 9;
2636
			this->tabPage4->Text = L"Dependacies";
2606
			this->tabPage4->Text = L"Dependacies";
2637
			this->tabPage4->UseVisualStyleBackColor = true;
2607
			this->tabPage4->UseVisualStyleBackColor = true;
2638
			// 
2608
			// 
2639
			// ListDep
2609
			// ListDep
Line 2645... Line 2615...
2645
			this->ListDep->ContextMenuStrip = this->ContextDep;
2615
			this->ListDep->ContextMenuStrip = this->ContextDep;
2646
			this->ListDep->Dock = System::Windows::Forms::DockStyle::Fill;
2616
			this->ListDep->Dock = System::Windows::Forms::DockStyle::Fill;
2647
			this->ListDep->FullRowSelect = true;
2617
			this->ListDep->FullRowSelect = true;
2648
			this->ListDep->HideSelection = false;
2618
			this->ListDep->HideSelection = false;
2649
			this->ListDep->Location = System::Drawing::Point(20, 18);
2619
			this->ListDep->Location = System::Drawing::Point(20, 18);
2650
			this->ListDep->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2620
			this->ListDep->Margin = System::Windows::Forms::Padding(4);
2651
			this->ListDep->MultiSelect = false;
2621
			this->ListDep->MultiSelect = false;
2652
			this->ListDep->Name = L"ListDep";
2622
			this->ListDep->Name = L"ListDep";
2653
			this->ListDep->Size = System::Drawing::Size(960, 212);
2623
			this->ListDep->Size = System::Drawing::Size(959, 233);
2654
			this->ListDep->TabIndex = 0;
2624
			this->ListDep->TabIndex = 0;
2655
			this->ListDep->UseCompatibleStateImageBehavior = false;
2625
			this->ListDep->UseCompatibleStateImageBehavior = false;
2656
			this->ListDep->View = System::Windows::Forms::View::Details;
2626
			this->ListDep->View = System::Windows::Forms::View::Details;
2657
			this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
2627
			this->ListDep->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListDep_MouseDoubleClick);
2658
			// 
2628
			// 
Line 2747... Line 2717...
2747
			this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
2717
			this->ContextDepClear->Click += gcnew System::EventHandler(this, &PackageForm::ContextDepClear_Click);
2748
			// 
2718
			// 
2749
			// PageWares
2719
			// PageWares
2750
			// 
2720
			// 
2751
			this->PageWares->Controls->Add(this->splitContainer1);
2721
			this->PageWares->Controls->Add(this->splitContainer1);
2752
			this->PageWares->Location = System::Drawing::Point(4, 46);
2722
			this->PageWares->Location = System::Drawing::Point(4, 25);
2753
			this->PageWares->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2723
			this->PageWares->Margin = System::Windows::Forms::Padding(4);
2754
			this->PageWares->Name = L"PageWares";
2724
			this->PageWares->Name = L"PageWares";
2755
			this->PageWares->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
2725
			this->PageWares->Padding = System::Windows::Forms::Padding(4);
2756
			this->PageWares->Size = System::Drawing::Size(1000, 248);
2726
			this->PageWares->Size = System::Drawing::Size(999, 269);
2757
			this->PageWares->TabIndex = 5;
2727
			this->PageWares->TabIndex = 5;
2758
			this->PageWares->Text = L"Custom Wares";
2728
			this->PageWares->Text = L"Custom Wares";
2759
			this->PageWares->UseVisualStyleBackColor = true;
2729
			this->PageWares->UseVisualStyleBackColor = true;
2760
			// 
2730
			// 
2761
			// splitContainer1
2731
			// splitContainer1
2762
			// 
2732
			// 
2763
			this->splitContainer1->Dock = System::Windows::Forms::DockStyle::Fill;
2733
			this->splitContainer1->Dock = System::Windows::Forms::DockStyle::Fill;
2764
			this->splitContainer1->Location = System::Drawing::Point(4, 4);
2734
			this->splitContainer1->Location = System::Drawing::Point(4, 4);
2765
			this->splitContainer1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2735
			this->splitContainer1->Margin = System::Windows::Forms::Padding(4);
2766
			this->splitContainer1->Name = L"splitContainer1";
2736
			this->splitContainer1->Name = L"splitContainer1";
2767
			this->splitContainer1->Orientation = System::Windows::Forms::Orientation::Horizontal;
2737
			this->splitContainer1->Orientation = System::Windows::Forms::Orientation::Horizontal;
2768
			// 
2738
			// 
2769
			// splitContainer1.Panel1
2739
			// splitContainer1.Panel1
2770
			// 
2740
			// 
2771
			this->splitContainer1->Panel1->Controls->Add(this->ListWares);
2741
			this->splitContainer1->Panel1->Controls->Add(this->ListWares);
2772
			// 
2742
			// 
2773
			// splitContainer1.Panel2
2743
			// splitContainer1.Panel2
2774
			// 
2744
			// 
2775
			this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
2745
			this->splitContainer1->Panel2->Controls->Add(this->ListWareText);
2776
			this->splitContainer1->Size = System::Drawing::Size(992, 240);
2746
			this->splitContainer1->Size = System::Drawing::Size(991, 261);
2777
			this->splitContainer1->SplitterDistance = 124;
2747
			this->splitContainer1->SplitterDistance = 134;
2778
			this->splitContainer1->SplitterWidth = 5;
2748
			this->splitContainer1->SplitterWidth = 5;
2779
			this->splitContainer1->TabIndex = 0;
2749
			this->splitContainer1->TabIndex = 0;
2780
			// 
2750
			// 
2781
			// ListWares
2751
			// ListWares
2782
			// 
2752
			// 
Line 2787... Line 2757...
2787
			this->ListWares->ContextMenuStrip = this->ContextWare;
2757
			this->ListWares->ContextMenuStrip = this->ContextWare;
2788
			this->ListWares->Dock = System::Windows::Forms::DockStyle::Fill;
2758
			this->ListWares->Dock = System::Windows::Forms::DockStyle::Fill;
2789
			this->ListWares->FullRowSelect = true;
2759
			this->ListWares->FullRowSelect = true;
2790
			this->ListWares->HideSelection = false;
2760
			this->ListWares->HideSelection = false;
2791
			this->ListWares->Location = System::Drawing::Point(0, 0);
2761
			this->ListWares->Location = System::Drawing::Point(0, 0);
2792
			this->ListWares->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2762
			this->ListWares->Margin = System::Windows::Forms::Padding(4);
2793
			this->ListWares->MultiSelect = false;
2763
			this->ListWares->MultiSelect = false;
2794
			this->ListWares->Name = L"ListWares";
2764
			this->ListWares->Name = L"ListWares";
2795
			this->ListWares->Size = System::Drawing::Size(992, 124);
2765
			this->ListWares->Size = System::Drawing::Size(991, 134);
2796
			this->ListWares->TabIndex = 0;
2766
			this->ListWares->TabIndex = 0;
2797
			this->ListWares->UseCompatibleStateImageBehavior = false;
2767
			this->ListWares->UseCompatibleStateImageBehavior = false;
2798
			this->ListWares->View = System::Windows::Forms::View::Details;
2768
			this->ListWares->View = System::Windows::Forms::View::Details;
2799
			this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
2769
			this->ListWares->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ListWares_SelectedIndexChanged);
2800
			this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
2770
			this->ListWares->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWares_MouseDoubleClick);
Line 2894... Line 2864...
2894
			this->ListWareText->ContextMenuStrip = this->ContextWareText;
2864
			this->ListWareText->ContextMenuStrip = this->ContextWareText;
2895
			this->ListWareText->Dock = System::Windows::Forms::DockStyle::Fill;
2865
			this->ListWareText->Dock = System::Windows::Forms::DockStyle::Fill;
2896
			this->ListWareText->FullRowSelect = true;
2866
			this->ListWareText->FullRowSelect = true;
2897
			this->ListWareText->HideSelection = false;
2867
			this->ListWareText->HideSelection = false;
2898
			this->ListWareText->Location = System::Drawing::Point(0, 0);
2868
			this->ListWareText->Location = System::Drawing::Point(0, 0);
2899
			this->ListWareText->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2869
			this->ListWareText->Margin = System::Windows::Forms::Padding(4);
2900
			this->ListWareText->MultiSelect = false;
2870
			this->ListWareText->MultiSelect = false;
2901
			this->ListWareText->Name = L"ListWareText";
2871
			this->ListWareText->Name = L"ListWareText";
2902
			this->ListWareText->Size = System::Drawing::Size(992, 111);
2872
			this->ListWareText->Size = System::Drawing::Size(991, 122);
2903
			this->ListWareText->TabIndex = 0;
2873
			this->ListWareText->TabIndex = 0;
2904
			this->ListWareText->UseCompatibleStateImageBehavior = false;
2874
			this->ListWareText->UseCompatibleStateImageBehavior = false;
2905
			this->ListWareText->View = System::Windows::Forms::View::Details;
2875
			this->ListWareText->View = System::Windows::Forms::View::Details;
2906
			this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
2876
			this->ListWareText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListWareText_MouseDoubleClick);
2907
			// 
2877
			// 
Line 2979... Line 2949...
2979
			// PageShip
2949
			// PageShip
2980
			// 
2950
			// 
2981
			this->PageShip->Controls->Add(this->ListShipText);
2951
			this->PageShip->Controls->Add(this->ListShipText);
2982
			this->PageShip->Controls->Add(this->PanelTextID);
2952
			this->PageShip->Controls->Add(this->PanelTextID);
2983
			this->PageShip->Controls->Add(this->flowLayoutPanel2);
2953
			this->PageShip->Controls->Add(this->flowLayoutPanel2);
2984
			this->PageShip->Location = System::Drawing::Point(4, 46);
2954
			this->PageShip->Location = System::Drawing::Point(4, 25);
2985
			this->PageShip->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2955
			this->PageShip->Margin = System::Windows::Forms::Padding(4);
2986
			this->PageShip->Name = L"PageShip";
2956
			this->PageShip->Name = L"PageShip";
2987
			this->PageShip->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
2957
			this->PageShip->Padding = System::Windows::Forms::Padding(11, 10, 11, 10);
2988
			this->PageShip->Size = System::Drawing::Size(1000, 248);
2958
			this->PageShip->Size = System::Drawing::Size(999, 269);
2989
			this->PageShip->TabIndex = 6;
2959
			this->PageShip->TabIndex = 6;
2990
			this->PageShip->Text = L"Ship Settings";
2960
			this->PageShip->Text = L"Ship Settings";
2991
			this->PageShip->UseVisualStyleBackColor = true;
2961
			this->PageShip->UseVisualStyleBackColor = true;
2992
			// 
2962
			// 
2993
			// ListShipText
2963
			// ListShipText
Line 3000... Line 2970...
3000
			this->ListShipText->Dock = System::Windows::Forms::DockStyle::Fill;
2970
			this->ListShipText->Dock = System::Windows::Forms::DockStyle::Fill;
3001
			this->ListShipText->FullRowSelect = true;
2971
			this->ListShipText->FullRowSelect = true;
3002
			this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
2972
			this->ListShipText->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::Nonclickable;
3003
			this->ListShipText->HideSelection = false;
2973
			this->ListShipText->HideSelection = false;
3004
			this->ListShipText->Location = System::Drawing::Point(11, 137);
2974
			this->ListShipText->Location = System::Drawing::Point(11, 137);
3005
			this->ListShipText->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
2975
			this->ListShipText->Margin = System::Windows::Forms::Padding(4);
3006
			this->ListShipText->Name = L"ListShipText";
2976
			this->ListShipText->Name = L"ListShipText";
3007
			this->ListShipText->Size = System::Drawing::Size(978, 101);
2977
			this->ListShipText->Size = System::Drawing::Size(977, 122);
3008
			this->ListShipText->TabIndex = 8;
2978
			this->ListShipText->TabIndex = 8;
3009
			this->ListShipText->UseCompatibleStateImageBehavior = false;
2979
			this->ListShipText->UseCompatibleStateImageBehavior = false;
3010
			this->ListShipText->View = System::Windows::Forms::View::Details;
2980
			this->ListShipText->View = System::Windows::Forms::View::Details;
3011
			this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
2981
			this->ListShipText->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipText_MouseDoubleClick);
3012
			// 
2982
			// 
Line 3037... Line 3007...
3037
			// importTextToolStripMenuItem
3007
			// importTextToolStripMenuItem
3038
			// 
3008
			// 
3039
			this->importTextToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(3) {
3009
			this->importTextToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(3) {
3040
				this->fromFileToolStripMenuItem,
3010
				this->fromFileToolStripMenuItem,
3041
					this->fromDirectoryToolStripMenuItem, this->fromModToolStripMenuItem
3011
					this->fromDirectoryToolStripMenuItem, this->fromModToolStripMenuItem
3042
			});
3012
			});
3043
			this->importTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importTextToolStripMenuItem.Image")));
3013
			this->importTextToolStripMenuItem->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"importTextToolStripMenuItem.Image")));
3044
			this->importTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3014
			this->importTextToolStripMenuItem->ImageScaling = System::Windows::Forms::ToolStripItemImageScaling::None;
3045
			this->importTextToolStripMenuItem->Name = L"importTextToolStripMenuItem";
3015
			this->importTextToolStripMenuItem->Name = L"importTextToolStripMenuItem";
3046
			this->importTextToolStripMenuItem->Size = System::Drawing::Size(191, 38);
3016
			this->importTextToolStripMenuItem->Size = System::Drawing::Size(191, 38);
3047
			this->importTextToolStripMenuItem->Text = L"Import Text";
3017
			this->importTextToolStripMenuItem->Text = L"Import Text";
Line 3123... Line 3093...
3123
			// 
3093
			// 
3124
			this->PanelTextID->Controls->Add(this->NumTextID);
3094
			this->PanelTextID->Controls->Add(this->NumTextID);
3125
			this->PanelTextID->Controls->Add(this->CheckExistingText);
3095
			this->PanelTextID->Controls->Add(this->CheckExistingText);
3126
			this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
3096
			this->PanelTextID->Dock = System::Windows::Forms::DockStyle::Top;
3127
			this->PanelTextID->Location = System::Drawing::Point(11, 112);
3097
			this->PanelTextID->Location = System::Drawing::Point(11, 112);
3128
			this->PanelTextID->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3098
			this->PanelTextID->Margin = System::Windows::Forms::Padding(4);
3129
			this->PanelTextID->Name = L"PanelTextID";
3099
			this->PanelTextID->Name = L"PanelTextID";
3130
			this->PanelTextID->Size = System::Drawing::Size(978, 25);
3100
			this->PanelTextID->Size = System::Drawing::Size(977, 25);
3131
			this->PanelTextID->TabIndex = 9;
3101
			this->PanelTextID->TabIndex = 9;
3132
			// 
3102
			// 
3133
			// NumTextID
3103
			// NumTextID
3134
			// 
3104
			// 
3135
			this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
3105
			this->NumTextID->Dock = System::Windows::Forms::DockStyle::Left;
3136
			this->NumTextID->Location = System::Drawing::Point(155, 0);
3106
			this->NumTextID->Location = System::Drawing::Point(155, 0);
3137
			this->NumTextID->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3107
			this->NumTextID->Margin = System::Windows::Forms::Padding(4);
3138
			this->NumTextID->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 90000000, 0, 0, 0 });
3108
			this->NumTextID->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 90000000, 0, 0, 0 });
3139
			this->NumTextID->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
3109
			this->NumTextID->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) { 1, 0, 0, 0 });
3140
			this->NumTextID->Name = L"NumTextID";
3110
			this->NumTextID->Name = L"NumTextID";
3141
			this->NumTextID->Size = System::Drawing::Size(137, 22);
3111
			this->NumTextID->Size = System::Drawing::Size(137, 22);
3142
			this->NumTextID->TabIndex = 1;
3112
			this->NumTextID->TabIndex = 1;
Line 3147... Line 3117...
3147
			// CheckExistingText
3117
			// CheckExistingText
3148
			// 
3118
			// 
3149
			this->CheckExistingText->AutoSize = true;
3119
			this->CheckExistingText->AutoSize = true;
3150
			this->CheckExistingText->Dock = System::Windows::Forms::DockStyle::Left;
3120
			this->CheckExistingText->Dock = System::Windows::Forms::DockStyle::Left;
3151
			this->CheckExistingText->Location = System::Drawing::Point(0, 0);
3121
			this->CheckExistingText->Location = System::Drawing::Point(0, 0);
3152
			this->CheckExistingText->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3122
			this->CheckExistingText->Margin = System::Windows::Forms::Padding(4);
3153
			this->CheckExistingText->Name = L"CheckExistingText";
3123
			this->CheckExistingText->Name = L"CheckExistingText";
3154
			this->CheckExistingText->Size = System::Drawing::Size(155, 25);
3124
			this->CheckExistingText->Size = System::Drawing::Size(155, 25);
3155
			this->CheckExistingText->TabIndex = 3;
3125
			this->CheckExistingText->TabIndex = 3;
3156
			this->CheckExistingText->Text = L"Use Existing Text ID";
3126
			this->CheckExistingText->Text = L"Use Existing Text ID";
3157
			this->CheckExistingText->UseVisualStyleBackColor = true;
3127
			this->CheckExistingText->UseVisualStyleBackColor = true;
Line 3172... Line 3142...
3172
			this->flowLayoutPanel2->Controls->Add(this->CheckSYTerran);
3142
			this->flowLayoutPanel2->Controls->Add(this->CheckSYTerran);
3173
			this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
3143
			this->flowLayoutPanel2->Controls->Add(this->CheckSYATF);
3174
			this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
3144
			this->flowLayoutPanel2->Controls->Add(this->CheckSYYaki);
3175
			this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
3145
			this->flowLayoutPanel2->Dock = System::Windows::Forms::DockStyle::Top;
3176
			this->flowLayoutPanel2->Location = System::Drawing::Point(11, 10);
3146
			this->flowLayoutPanel2->Location = System::Drawing::Point(11, 10);
3177
			this->flowLayoutPanel2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3147
			this->flowLayoutPanel2->Margin = System::Windows::Forms::Padding(4);
3178
			this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
3148
			this->flowLayoutPanel2->Name = L"flowLayoutPanel2";
3179
			this->flowLayoutPanel2->Size = System::Drawing::Size(978, 102);
3149
			this->flowLayoutPanel2->Size = System::Drawing::Size(977, 102);
3180
			this->flowLayoutPanel2->TabIndex = 7;
3150
			this->flowLayoutPanel2->TabIndex = 7;
3181
			// 
3151
			// 
3182
			// label16
3152
			// label16
3183
			// 
3153
			// 
3184
			this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3154
			this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
Line 3196... Line 3166...
3196
			this->CheckSYArgon->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
3166
			this->CheckSYArgon->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
3197
				static_cast<System::Byte>(0)));
3167
				static_cast<System::Byte>(0)));
3198
			this->CheckSYArgon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYArgon.Image")));
3168
			this->CheckSYArgon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYArgon.Image")));
3199
			this->CheckSYArgon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3169
			this->CheckSYArgon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3200
			this->CheckSYArgon->Location = System::Drawing::Point(132, 4);
3170
			this->CheckSYArgon->Location = System::Drawing::Point(132, 4);
3201
			this->CheckSYArgon->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3171
			this->CheckSYArgon->Margin = System::Windows::Forms::Padding(4);
3202
			this->CheckSYArgon->Name = L"CheckSYArgon";
3172
			this->CheckSYArgon->Name = L"CheckSYArgon";
3203
			this->CheckSYArgon->Size = System::Drawing::Size(120, 43);
3173
			this->CheckSYArgon->Size = System::Drawing::Size(120, 43);
3204
			this->CheckSYArgon->TabIndex = 0;
3174
			this->CheckSYArgon->TabIndex = 0;
3205
			this->CheckSYArgon->Text = L"Argon";
3175
			this->CheckSYArgon->Text = L"Argon";
3206
			this->CheckSYArgon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3176
			this->CheckSYArgon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3210... Line 3180...
3210
			// CheckSYBoron
3180
			// CheckSYBoron
3211
			// 
3181
			// 
3212
			this->CheckSYBoron->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYBoron.Image")));
3182
			this->CheckSYBoron->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYBoron.Image")));
3213
			this->CheckSYBoron->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3183
			this->CheckSYBoron->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3214
			this->CheckSYBoron->Location = System::Drawing::Point(260, 4);
3184
			this->CheckSYBoron->Location = System::Drawing::Point(260, 4);
3215
			this->CheckSYBoron->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3185
			this->CheckSYBoron->Margin = System::Windows::Forms::Padding(4);
3216
			this->CheckSYBoron->Name = L"CheckSYBoron";
3186
			this->CheckSYBoron->Name = L"CheckSYBoron";
3217
			this->CheckSYBoron->Size = System::Drawing::Size(120, 43);
3187
			this->CheckSYBoron->Size = System::Drawing::Size(120, 43);
3218
			this->CheckSYBoron->TabIndex = 1;
3188
			this->CheckSYBoron->TabIndex = 1;
3219
			this->CheckSYBoron->Text = L"Boron";
3189
			this->CheckSYBoron->Text = L"Boron";
3220
			this->CheckSYBoron->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3190
			this->CheckSYBoron->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3224... Line 3194...
3224
			// CheckSYParanid
3194
			// CheckSYParanid
3225
			// 
3195
			// 
3226
			this->CheckSYParanid->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYParanid.Image")));
3196
			this->CheckSYParanid->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYParanid.Image")));
3227
			this->CheckSYParanid->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3197
			this->CheckSYParanid->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3228
			this->CheckSYParanid->Location = System::Drawing::Point(388, 4);
3198
			this->CheckSYParanid->Location = System::Drawing::Point(388, 4);
3229
			this->CheckSYParanid->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3199
			this->CheckSYParanid->Margin = System::Windows::Forms::Padding(4);
3230
			this->CheckSYParanid->Name = L"CheckSYParanid";
3200
			this->CheckSYParanid->Name = L"CheckSYParanid";
3231
			this->CheckSYParanid->Size = System::Drawing::Size(120, 43);
3201
			this->CheckSYParanid->Size = System::Drawing::Size(120, 43);
3232
			this->CheckSYParanid->TabIndex = 2;
3202
			this->CheckSYParanid->TabIndex = 2;
3233
			this->CheckSYParanid->Text = L"Paranid";
3203
			this->CheckSYParanid->Text = L"Paranid";
3234
			this->CheckSYParanid->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3204
			this->CheckSYParanid->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3238... Line 3208...
3238
			// CheckSYTeladi
3208
			// CheckSYTeladi
3239
			// 
3209
			// 
3240
			this->CheckSYTeladi->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTeladi.Image")));
3210
			this->CheckSYTeladi->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTeladi.Image")));
3241
			this->CheckSYTeladi->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3211
			this->CheckSYTeladi->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3242
			this->CheckSYTeladi->Location = System::Drawing::Point(516, 4);
3212
			this->CheckSYTeladi->Location = System::Drawing::Point(516, 4);
3243
			this->CheckSYTeladi->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3213
			this->CheckSYTeladi->Margin = System::Windows::Forms::Padding(4);
3244
			this->CheckSYTeladi->Name = L"CheckSYTeladi";
3214
			this->CheckSYTeladi->Name = L"CheckSYTeladi";
3245
			this->CheckSYTeladi->Size = System::Drawing::Size(120, 43);
3215
			this->CheckSYTeladi->Size = System::Drawing::Size(120, 43);
3246
			this->CheckSYTeladi->TabIndex = 3;
3216
			this->CheckSYTeladi->TabIndex = 3;
3247
			this->CheckSYTeladi->Text = L"Teladi";
3217
			this->CheckSYTeladi->Text = L"Teladi";
3248
			this->CheckSYTeladi->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3218
			this->CheckSYTeladi->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3252... Line 3222...
3252
			// CheckSYSplit
3222
			// CheckSYSplit
3253
			// 
3223
			// 
3254
			this->CheckSYSplit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYSplit.Image")));
3224
			this->CheckSYSplit->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYSplit.Image")));
3255
			this->CheckSYSplit->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3225
			this->CheckSYSplit->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3256
			this->CheckSYSplit->Location = System::Drawing::Point(644, 4);
3226
			this->CheckSYSplit->Location = System::Drawing::Point(644, 4);
3257
			this->CheckSYSplit->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3227
			this->CheckSYSplit->Margin = System::Windows::Forms::Padding(4);
3258
			this->CheckSYSplit->Name = L"CheckSYSplit";
3228
			this->CheckSYSplit->Name = L"CheckSYSplit";
3259
			this->CheckSYSplit->Size = System::Drawing::Size(120, 43);
3229
			this->CheckSYSplit->Size = System::Drawing::Size(120, 43);
3260
			this->CheckSYSplit->TabIndex = 4;
3230
			this->CheckSYSplit->TabIndex = 4;
3261
			this->CheckSYSplit->Text = L"Split";
3231
			this->CheckSYSplit->Text = L"Split";
3262
			this->CheckSYSplit->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3232
			this->CheckSYSplit->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3266... Line 3236...
3266
			// CheckSYPirate
3236
			// CheckSYPirate
3267
			// 
3237
			// 
3268
			this->CheckSYPirate->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYPirate.Image")));
3238
			this->CheckSYPirate->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYPirate.Image")));
3269
			this->CheckSYPirate->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3239
			this->CheckSYPirate->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3270
			this->CheckSYPirate->Location = System::Drawing::Point(772, 4);
3240
			this->CheckSYPirate->Location = System::Drawing::Point(772, 4);
3271
			this->CheckSYPirate->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3241
			this->CheckSYPirate->Margin = System::Windows::Forms::Padding(4);
3272
			this->CheckSYPirate->Name = L"CheckSYPirate";
3242
			this->CheckSYPirate->Name = L"CheckSYPirate";
3273
			this->CheckSYPirate->Size = System::Drawing::Size(120, 43);
3243
			this->CheckSYPirate->Size = System::Drawing::Size(120, 43);
3274
			this->CheckSYPirate->TabIndex = 5;
3244
			this->CheckSYPirate->TabIndex = 5;
3275
			this->CheckSYPirate->Text = L"Pirate";
3245
			this->CheckSYPirate->Text = L"Pirate";
3276
			this->CheckSYPirate->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3246
			this->CheckSYPirate->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3280... Line 3250...
3280
			// CheckSYFriend
3250
			// CheckSYFriend
3281
			// 
3251
			// 
3282
			this->CheckSYFriend->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYFriend.Image")));
3252
			this->CheckSYFriend->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYFriend.Image")));
3283
			this->CheckSYFriend->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3253
			this->CheckSYFriend->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3284
			this->CheckSYFriend->Location = System::Drawing::Point(4, 55);
3254
			this->CheckSYFriend->Location = System::Drawing::Point(4, 55);
3285
			this->CheckSYFriend->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3255
			this->CheckSYFriend->Margin = System::Windows::Forms::Padding(4);
3286
			this->CheckSYFriend->Name = L"CheckSYFriend";
3256
			this->CheckSYFriend->Name = L"CheckSYFriend";
3287
			this->CheckSYFriend->Size = System::Drawing::Size(120, 43);
3257
			this->CheckSYFriend->Size = System::Drawing::Size(120, 43);
3288
			this->CheckSYFriend->TabIndex = 6;
3258
			this->CheckSYFriend->TabIndex = 6;
3289
			this->CheckSYFriend->Text = L"Friendly Race";
3259
			this->CheckSYFriend->Text = L"Friendly Race";
3290
			this->CheckSYFriend->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3260
			this->CheckSYFriend->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3294... Line 3264...
3294
			// CheckSYXenon
3264
			// CheckSYXenon
3295
			// 
3265
			// 
3296
			this->CheckSYXenon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYXenon.Image")));
3266
			this->CheckSYXenon->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYXenon.Image")));
3297
			this->CheckSYXenon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3267
			this->CheckSYXenon->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3298
			this->CheckSYXenon->Location = System::Drawing::Point(132, 55);
3268
			this->CheckSYXenon->Location = System::Drawing::Point(132, 55);
3299
			this->CheckSYXenon->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3269
			this->CheckSYXenon->Margin = System::Windows::Forms::Padding(4);
3300
			this->CheckSYXenon->Name = L"CheckSYXenon";
3270
			this->CheckSYXenon->Name = L"CheckSYXenon";
3301
			this->CheckSYXenon->Size = System::Drawing::Size(120, 43);
3271
			this->CheckSYXenon->Size = System::Drawing::Size(120, 43);
3302
			this->CheckSYXenon->TabIndex = 7;
3272
			this->CheckSYXenon->TabIndex = 7;
3303
			this->CheckSYXenon->Text = L"Xenon";
3273
			this->CheckSYXenon->Text = L"Xenon";
3304
			this->CheckSYXenon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3274
			this->CheckSYXenon->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3308... Line 3278...
3308
			// CheckSYTerran
3278
			// CheckSYTerran
3309
			// 
3279
			// 
3310
			this->CheckSYTerran->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTerran.Image")));
3280
			this->CheckSYTerran->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYTerran.Image")));
3311
			this->CheckSYTerran->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3281
			this->CheckSYTerran->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3312
			this->CheckSYTerran->Location = System::Drawing::Point(260, 55);
3282
			this->CheckSYTerran->Location = System::Drawing::Point(260, 55);
3313
			this->CheckSYTerran->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3283
			this->CheckSYTerran->Margin = System::Windows::Forms::Padding(4);
3314
			this->CheckSYTerran->Name = L"CheckSYTerran";
3284
			this->CheckSYTerran->Name = L"CheckSYTerran";
3315
			this->CheckSYTerran->Size = System::Drawing::Size(120, 43);
3285
			this->CheckSYTerran->Size = System::Drawing::Size(120, 43);
3316
			this->CheckSYTerran->TabIndex = 8;
3286
			this->CheckSYTerran->TabIndex = 8;
3317
			this->CheckSYTerran->Text = L"Terran";
3287
			this->CheckSYTerran->Text = L"Terran";
3318
			this->CheckSYTerran->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3288
			this->CheckSYTerran->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3322... Line 3292...
3322
			// CheckSYATF
3292
			// CheckSYATF
3323
			// 
3293
			// 
3324
			this->CheckSYATF->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYATF.Image")));
3294
			this->CheckSYATF->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYATF.Image")));
3325
			this->CheckSYATF->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3295
			this->CheckSYATF->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3326
			this->CheckSYATF->Location = System::Drawing::Point(388, 55);
3296
			this->CheckSYATF->Location = System::Drawing::Point(388, 55);
3327
			this->CheckSYATF->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3297
			this->CheckSYATF->Margin = System::Windows::Forms::Padding(4);
3328
			this->CheckSYATF->Name = L"CheckSYATF";
3298
			this->CheckSYATF->Name = L"CheckSYATF";
3329
			this->CheckSYATF->Size = System::Drawing::Size(120, 43);
3299
			this->CheckSYATF->Size = System::Drawing::Size(120, 43);
3330
			this->CheckSYATF->TabIndex = 9;
3300
			this->CheckSYATF->TabIndex = 9;
3331
			this->CheckSYATF->Text = L"ATF";
3301
			this->CheckSYATF->Text = L"ATF";
3332
			this->CheckSYATF->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3302
			this->CheckSYATF->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3336... Line 3306...
3336
			// CheckSYYaki
3306
			// CheckSYYaki
3337
			// 
3307
			// 
3338
			this->CheckSYYaki->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYYaki.Image")));
3308
			this->CheckSYYaki->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"CheckSYYaki.Image")));
3339
			this->CheckSYYaki->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3309
			this->CheckSYYaki->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3340
			this->CheckSYYaki->Location = System::Drawing::Point(516, 55);
3310
			this->CheckSYYaki->Location = System::Drawing::Point(516, 55);
3341
			this->CheckSYYaki->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3311
			this->CheckSYYaki->Margin = System::Windows::Forms::Padding(4);
3342
			this->CheckSYYaki->Name = L"CheckSYYaki";
3312
			this->CheckSYYaki->Name = L"CheckSYYaki";
3343
			this->CheckSYYaki->Size = System::Drawing::Size(120, 43);
3313
			this->CheckSYYaki->Size = System::Drawing::Size(120, 43);
3344
			this->CheckSYYaki->TabIndex = 10;
3314
			this->CheckSYYaki->TabIndex = 10;
3345
			this->CheckSYYaki->Text = L"Yaki";
3315
			this->CheckSYYaki->Text = L"Yaki";
3346
			this->CheckSYYaki->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3316
			this->CheckSYYaki->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3349... Line 3319...
3349
			// 
3319
			// 
3350
			// PageRaw
3320
			// PageRaw
3351
			// 
3321
			// 
3352
			this->PageRaw->Controls->Add(this->panel23);
3322
			this->PageRaw->Controls->Add(this->panel23);
3353
			this->PageRaw->Controls->Add(this->flowLayoutPanel3);
3323
			this->PageRaw->Controls->Add(this->flowLayoutPanel3);
3354
			this->PageRaw->Location = System::Drawing::Point(4, 46);
3324
			this->PageRaw->Location = System::Drawing::Point(4, 25);
3355
			this->PageRaw->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3325
			this->PageRaw->Margin = System::Windows::Forms::Padding(4);
3356
			this->PageRaw->Name = L"PageRaw";
3326
			this->PageRaw->Name = L"PageRaw";
3357
			this->PageRaw->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
3327
			this->PageRaw->Padding = System::Windows::Forms::Padding(4);
3358
			this->PageRaw->Size = System::Drawing::Size(1000, 248);
3328
			this->PageRaw->Size = System::Drawing::Size(999, 269);
3359
			this->PageRaw->TabIndex = 7;
3329
			this->PageRaw->TabIndex = 7;
3360
			this->PageRaw->Text = L"Ship Data";
3330
			this->PageRaw->Text = L"Ship Data";
3361
			this->PageRaw->UseVisualStyleBackColor = true;
3331
			this->PageRaw->UseVisualStyleBackColor = true;
3362
			// 
3332
			// 
3363
			// panel23
3333
			// panel23
3364
			// 
3334
			// 
3365
			this->panel23->Controls->Add(this->TextShipData);
3335
			this->panel23->Controls->Add(this->TextShipData);
3366
			this->panel23->Controls->Add(this->panel24);
3336
			this->panel23->Controls->Add(this->panel24);
3367
			this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
3337
			this->panel23->Dock = System::Windows::Forms::DockStyle::Fill;
3368
			this->panel23->Location = System::Drawing::Point(4, 52);
3338
			this->panel23->Location = System::Drawing::Point(4, 52);
3369
			this->panel23->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3339
			this->panel23->Margin = System::Windows::Forms::Padding(4);
3370
			this->panel23->Name = L"panel23";
3340
			this->panel23->Name = L"panel23";
3371
			this->panel23->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3341
			this->panel23->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3372
			this->panel23->Size = System::Drawing::Size(992, 192);
3342
			this->panel23->Size = System::Drawing::Size(991, 213);
3373
			this->panel23->TabIndex = 3;
3343
			this->panel23->TabIndex = 3;
3374
			// 
3344
			// 
3375
			// TextShipData
3345
			// TextShipData
3376
			// 
3346
			// 
3377
			this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
3347
			this->TextShipData->BackColor = System::Drawing::SystemColors::Control;
3378
			this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
3348
			this->TextShipData->Dock = System::Windows::Forms::DockStyle::Fill;
3379
			this->TextShipData->Location = System::Drawing::Point(13, 42);
3349
			this->TextShipData->Location = System::Drawing::Point(13, 42);
3380
			this->TextShipData->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3350
			this->TextShipData->Margin = System::Windows::Forms::Padding(4);
3381
			this->TextShipData->Name = L"TextShipData";
3351
			this->TextShipData->Name = L"TextShipData";
3382
			this->TextShipData->ReadOnly = true;
3352
			this->TextShipData->ReadOnly = true;
3383
			this->TextShipData->Size = System::Drawing::Size(966, 138);
3353
			this->TextShipData->Size = System::Drawing::Size(965, 159);
3384
			this->TextShipData->TabIndex = 0;
3354
			this->TextShipData->TabIndex = 0;
3385
			this->TextShipData->Text = L"";
3355
			this->TextShipData->Text = L"";
3386
			this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
3356
			this->TextShipData->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipData_TextChanged);
3387
			// 
3357
			// 
3388
			// panel24
3358
			// panel24
3389
			// 
3359
			// 
3390
			this->panel24->Controls->Add(this->label17);
3360
			this->panel24->Controls->Add(this->label17);
3391
			this->panel24->Controls->Add(this->checkBox1);
3361
			this->panel24->Controls->Add(this->checkBox1);
3392
			this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
3362
			this->panel24->Dock = System::Windows::Forms::DockStyle::Top;
3393
			this->panel24->Location = System::Drawing::Point(13, 12);
3363
			this->panel24->Location = System::Drawing::Point(13, 12);
3394
			this->panel24->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3364
			this->panel24->Margin = System::Windows::Forms::Padding(4);
3395
			this->panel24->Name = L"panel24";
3365
			this->panel24->Name = L"panel24";
3396
			this->panel24->Size = System::Drawing::Size(966, 30);
3366
			this->panel24->Size = System::Drawing::Size(965, 30);
3397
			this->panel24->TabIndex = 2;
3367
			this->panel24->TabIndex = 2;
3398
			// 
3368
			// 
3399
			// label17
3369
			// label17
3400
			// 
3370
			// 
3401
			this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
3371
			this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
3402
			this->label17->Location = System::Drawing::Point(129, 0);
3372
			this->label17->Location = System::Drawing::Point(129, 0);
3403
			this->label17->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
3373
			this->label17->Margin = System::Windows::Forms::Padding(4, 0, 4, 0);
3404
			this->label17->Name = L"label17";
3374
			this->label17->Name = L"label17";
3405
			this->label17->Size = System::Drawing::Size(837, 30);
3375
			this->label17->Size = System::Drawing::Size(836, 30);
3406
			this->label17->TabIndex = 2;
3376
			this->label17->TabIndex = 2;
3407
			this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
3377
			this->label17->Text = L"(Warning: Making changes could break the ship if you dont know what your doing)";
3408
			this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3378
			this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
3409
			// 
3379
			// 
3410
			// checkBox1
3380
			// checkBox1
Line 3412... Line 3382...
3412
			this->checkBox1->AutoSize = true;
3382
			this->checkBox1->AutoSize = true;
3413
			this->checkBox1->Dock = System::Windows::Forms::DockStyle::Left;
3383
			this->checkBox1->Dock = System::Windows::Forms::DockStyle::Left;
3414
			this->checkBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3384
			this->checkBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
3415
				static_cast<System::Byte>(0)));
3385
				static_cast<System::Byte>(0)));
3416
			this->checkBox1->Location = System::Drawing::Point(0, 0);
3386
			this->checkBox1->Location = System::Drawing::Point(0, 0);
3417
			this->checkBox1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3387
			this->checkBox1->Margin = System::Windows::Forms::Padding(4);
3418
			this->checkBox1->Name = L"checkBox1";
3388
			this->checkBox1->Name = L"checkBox1";
3419
			this->checkBox1->Size = System::Drawing::Size(129, 30);
3389
			this->checkBox1->Size = System::Drawing::Size(129, 30);
3420
			this->checkBox1->TabIndex = 1;
3390
			this->checkBox1->TabIndex = 1;
3421
			this->checkBox1->Text = L"Allow Edit";
3391
			this->checkBox1->Text = L"Allow Edit";
3422
			this->checkBox1->UseVisualStyleBackColor = true;
3392
			this->checkBox1->UseVisualStyleBackColor = true;
Line 3426... Line 3396...
3426
			// 
3396
			// 
3427
			this->flowLayoutPanel3->Controls->Add(this->button3);
3397
			this->flowLayoutPanel3->Controls->Add(this->button3);
3428
			this->flowLayoutPanel3->Controls->Add(this->button5);
3398
			this->flowLayoutPanel3->Controls->Add(this->button5);
3429
			this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
3399
			this->flowLayoutPanel3->Dock = System::Windows::Forms::DockStyle::Top;
3430
			this->flowLayoutPanel3->Location = System::Drawing::Point(4, 4);
3400
			this->flowLayoutPanel3->Location = System::Drawing::Point(4, 4);
3431
			this->flowLayoutPanel3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3401
			this->flowLayoutPanel3->Margin = System::Windows::Forms::Padding(4);
3432
			this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
3402
			this->flowLayoutPanel3->Name = L"flowLayoutPanel3";
3433
			this->flowLayoutPanel3->Size = System::Drawing::Size(992, 48);
3403
			this->flowLayoutPanel3->Size = System::Drawing::Size(991, 48);
3434
			this->flowLayoutPanel3->TabIndex = 4;
3404
			this->flowLayoutPanel3->TabIndex = 4;
3435
			// 
3405
			// 
3436
			// button3
3406
			// button3
3437
			// 
3407
			// 
3438
			this->button3->AutoSize = true;
3408
			this->button3->AutoSize = true;
3439
			this->button3->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3409
			this->button3->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3440
			this->button3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button3.Image")));
3410
			this->button3->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button3.Image")));
3441
			this->button3->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3411
			this->button3->ImageAlign = System::Drawing::ContentAlignment::MiddleLeft;
3442
			this->button3->Location = System::Drawing::Point(4, 4);
3412
			this->button3->Location = System::Drawing::Point(4, 4);
3443
			this->button3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3413
			this->button3->Margin = System::Windows::Forms::Padding(4);
3444
			this->button3->Name = L"button3";
3414
			this->button3->Name = L"button3";
3445
			this->button3->Size = System::Drawing::Size(138, 28);
3415
			this->button3->Size = System::Drawing::Size(138, 28);
3446
			this->button3->TabIndex = 2;
3416
			this->button3->TabIndex = 2;
3447
			this->button3->Text = L"Load Ship Data";
3417
			this->button3->Text = L"Load Ship Data";
3448
			this->button3->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3418
			this->button3->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3453... Line 3423...
3453
			// 
3423
			// 
3454
			this->button5->AutoSize = true;
3424
			this->button5->AutoSize = true;
3455
			this->button5->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3425
			this->button5->AutoSizeMode = System::Windows::Forms::AutoSizeMode::GrowAndShrink;
3456
			this->button5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button5.Image")));
3426
			this->button5->Image = (cli::safe_cast<System::Drawing::Image^>(resources->GetObject(L"button5.Image")));
3457
			this->button5->Location = System::Drawing::Point(150, 4);
3427
			this->button5->Location = System::Drawing::Point(150, 4);
3458
			this->button5->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3428
			this->button5->Margin = System::Windows::Forms::Padding(4);
3459
			this->button5->Name = L"button5";
3429
			this->button5->Name = L"button5";
3460
			this->button5->Size = System::Drawing::Size(137, 28);
3430
			this->button5->Size = System::Drawing::Size(137, 28);
3461
			this->button5->TabIndex = 3;
3431
			this->button5->TabIndex = 3;
3462
			this->button5->Text = L"Customise Ship";
3432
			this->button5->Text = L"Customise Ship";
3463
			this->button5->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
3433
			this->button5->TextImageRelation = System::Windows::Forms::TextImageRelation::ImageBeforeText;
Line 3466... Line 3436...
3466
			// 
3436
			// 
3467
			// PageShipComp
3437
			// PageShipComp
3468
			// 
3438
			// 
3469
			this->PageShipComp->Controls->Add(this->panel26);
3439
			this->PageShipComp->Controls->Add(this->panel26);
3470
			this->PageShipComp->Controls->Add(this->panel25);
3440
			this->PageShipComp->Controls->Add(this->panel25);
3471
			this->PageShipComp->Location = System::Drawing::Point(4, 46);
3441
			this->PageShipComp->Location = System::Drawing::Point(4, 25);
3472
			this->PageShipComp->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3442
			this->PageShipComp->Margin = System::Windows::Forms::Padding(4);
3473
			this->PageShipComp->Name = L"PageShipComp";
3443
			this->PageShipComp->Name = L"PageShipComp";
3474
			this->PageShipComp->Padding = System::Windows::Forms::Padding(4, 4, 4, 4);
3444
			this->PageShipComp->Padding = System::Windows::Forms::Padding(4);
3475
			this->PageShipComp->Size = System::Drawing::Size(1000, 248);
3445
			this->PageShipComp->Size = System::Drawing::Size(999, 269);
3476
			this->PageShipComp->TabIndex = 8;
3446
			this->PageShipComp->TabIndex = 8;
3477
			this->PageShipComp->Text = L"Ship Parts";
3447
			this->PageShipComp->Text = L"Ship Parts";
3478
			this->PageShipComp->UseVisualStyleBackColor = true;
3448
			this->PageShipComp->UseVisualStyleBackColor = true;
3479
			// 
3449
			// 
3480
			// panel26
3450
			// panel26
3481
			// 
3451
			// 
3482
			this->panel26->Controls->Add(this->ListShipPart);
3452
			this->panel26->Controls->Add(this->ListShipPart);
3483
			this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
3453
			this->panel26->Dock = System::Windows::Forms::DockStyle::Fill;
3484
			this->panel26->Location = System::Drawing::Point(4, 43);
3454
			this->panel26->Location = System::Drawing::Point(4, 43);
3485
			this->panel26->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3455
			this->panel26->Margin = System::Windows::Forms::Padding(4);
3486
			this->panel26->Name = L"panel26";
3456
			this->panel26->Name = L"panel26";
3487
			this->panel26->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3457
			this->panel26->Padding = System::Windows::Forms::Padding(13, 12, 13, 12);
3488
			this->panel26->Size = System::Drawing::Size(992, 201);
3458
			this->panel26->Size = System::Drawing::Size(991, 222);
3489
			this->panel26->TabIndex = 4;
3459
			this->panel26->TabIndex = 4;
3490
			// 
3460
			// 
3491
			// ListShipPart
3461
			// ListShipPart
3492
			// 
3462
			// 
3493
			this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(3) {
3463
			this->ListShipPart->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^  >(3) {
Line 3497... Line 3467...
3497
			this->ListShipPart->ContextMenuStrip = this->ContextShipPart;
3467
			this->ListShipPart->ContextMenuStrip = this->ContextShipPart;
3498
			this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3468
			this->ListShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3499
			this->ListShipPart->FullRowSelect = true;
3469
			this->ListShipPart->FullRowSelect = true;
3500
			this->ListShipPart->HideSelection = false;
3470
			this->ListShipPart->HideSelection = false;
3501
			this->ListShipPart->Location = System::Drawing::Point(13, 12);
3471
			this->ListShipPart->Location = System::Drawing::Point(13, 12);
3502
			this->ListShipPart->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3472
			this->ListShipPart->Margin = System::Windows::Forms::Padding(4);
3503
			this->ListShipPart->Name = L"ListShipPart";
3473
			this->ListShipPart->Name = L"ListShipPart";
3504
			this->ListShipPart->Size = System::Drawing::Size(966, 177);
3474
			this->ListShipPart->Size = System::Drawing::Size(965, 198);
3505
			this->ListShipPart->TabIndex = 3;
3475
			this->ListShipPart->TabIndex = 3;
3506
			this->ListShipPart->UseCompatibleStateImageBehavior = false;
3476
			this->ListShipPart->UseCompatibleStateImageBehavior = false;
3507
			this->ListShipPart->View = System::Windows::Forms::View::Details;
3477
			this->ListShipPart->View = System::Windows::Forms::View::Details;
3508
			this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
3478
			this->ListShipPart->MouseDoubleClick += gcnew System::Windows::Forms::MouseEventHandler(this, &PackageForm::ListShipPart_MouseDoubleClick);
3509
			// 
3479
			// 
Line 3578... Line 3548...
3578
			// 
3548
			// 
3579
			this->panel25->Controls->Add(this->ComboShipPart);
3549
			this->panel25->Controls->Add(this->ComboShipPart);
3580
			this->panel25->Controls->Add(this->label18);
3550
			this->panel25->Controls->Add(this->label18);
3581
			this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
3551
			this->panel25->Dock = System::Windows::Forms::DockStyle::Top;
3582
			this->panel25->Location = System::Drawing::Point(4, 4);
3552
			this->panel25->Location = System::Drawing::Point(4, 4);
3583
			this->panel25->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3553
			this->panel25->Margin = System::Windows::Forms::Padding(4);
3584
			this->panel25->Name = L"panel25";
3554
			this->panel25->Name = L"panel25";
3585
			this->panel25->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3555
			this->panel25->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3586
			this->panel25->Size = System::Drawing::Size(992, 39);
3556
			this->panel25->Size = System::Drawing::Size(991, 39);
3587
			this->panel25->TabIndex = 2;
3557
			this->panel25->TabIndex = 2;
3588
			// 
3558
			// 
3589
			// ComboShipPart
3559
			// ComboShipPart
3590
			// 
3560
			// 
3591
			this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
3561
			this->ComboShipPart->Dock = System::Windows::Forms::DockStyle::Fill;
Line 3594... Line 3564...
3594
			this->ComboShipPart->Items->AddRange(gcnew cli::array< System::Object^  >(6) {
3564
			this->ComboShipPart->Items->AddRange(gcnew cli::array< System::Object^  >(6) {
3595
				L"Componants", L"Dummies", L"Cockpits", L"CutData",
3565
				L"Componants", L"Dummies", L"Cockpits", L"CutData",
3596
					L"Bodies", L"Animations"
3566
					L"Bodies", L"Animations"
3597
			});
3567
			});
3598
			this->ComboShipPart->Location = System::Drawing::Point(140, 6);
3568
			this->ComboShipPart->Location = System::Drawing::Point(140, 6);
3599
			this->ComboShipPart->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3569
			this->ComboShipPart->Margin = System::Windows::Forms::Padding(4);
3600
			this->ComboShipPart->Name = L"ComboShipPart";
3570
			this->ComboShipPart->Name = L"ComboShipPart";
3601
			this->ComboShipPart->Size = System::Drawing::Size(845, 24);
3571
			this->ComboShipPart->Size = System::Drawing::Size(844, 24);
3602
			this->ComboShipPart->TabIndex = 0;
3572
			this->ComboShipPart->TabIndex = 0;
3603
			this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
3573
			this->ComboShipPart->SelectedIndexChanged += gcnew System::EventHandler(this, &PackageForm::ComboShipPart_SelectedIndexChanged);
3604
			// 
3574
			// 
3605
			// label18
3575
			// label18
3606
			// 
3576
			// 
Line 3618... Line 3588...
3618
			// CheckShipID
3588
			// CheckShipID
3619
			// 
3589
			// 
3620
			this->CheckShipID->AutoSize = true;
3590
			this->CheckShipID->AutoSize = true;
3621
			this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
3591
			this->CheckShipID->Dock = System::Windows::Forms::DockStyle::Left;
3622
			this->CheckShipID->Location = System::Drawing::Point(209, 0);
3592
			this->CheckShipID->Location = System::Drawing::Point(209, 0);
3623
			this->CheckShipID->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3593
			this->CheckShipID->Margin = System::Windows::Forms::Padding(4);
3624
			this->CheckShipID->Name = L"CheckShipID";
3594
			this->CheckShipID->Name = L"CheckShipID";
3625
			this->CheckShipID->Size = System::Drawing::Size(166, 25);
3595
			this->CheckShipID->Size = System::Drawing::Size(166, 25);
3626
			this->CheckShipID->TabIndex = 2;
3596
			this->CheckShipID->TabIndex = 2;
3627
			this->CheckShipID->Text = L"Replace Existing Ship";
3597
			this->CheckShipID->Text = L"Replace Existing Ship";
3628
			this->CheckShipID->UseVisualStyleBackColor = true;
3598
			this->CheckShipID->UseVisualStyleBackColor = true;
Line 3632... Line 3602...
3632
			// 
3602
			// 
3633
			this->panel1->Controls->Add(this->TextName);
3603
			this->panel1->Controls->Add(this->TextName);
3634
			this->panel1->Controls->Add(this->label1);
3604
			this->panel1->Controls->Add(this->label1);
3635
			this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
3605
			this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
3636
			this->panel1->Location = System::Drawing::Point(7, 37);
3606
			this->panel1->Location = System::Drawing::Point(7, 37);
3637
			this->panel1->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3607
			this->panel1->Margin = System::Windows::Forms::Padding(4);
3638
			this->panel1->Name = L"panel1";
3608
			this->panel1->Name = L"panel1";
3639
			this->panel1->Size = System::Drawing::Size(1007, 21);
3609
			this->panel1->Size = System::Drawing::Size(1007, 21);
3640
			this->panel1->TabIndex = 2;
3610
			this->panel1->TabIndex = 2;
3641
			// 
3611
			// 
3642
			// TextName
3612
			// TextName
3643
			// 
3613
			// 
3644
			this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
3614
			this->TextName->Dock = System::Windows::Forms::DockStyle::Fill;
3645
			this->TextName->Location = System::Drawing::Point(209, 0);
3615
			this->TextName->Location = System::Drawing::Point(209, 0);
3646
			this->TextName->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3616
			this->TextName->Margin = System::Windows::Forms::Padding(4);
3647
			this->TextName->Name = L"TextName";
3617
			this->TextName->Name = L"TextName";
3648
			this->TextName->Size = System::Drawing::Size(798, 22);
3618
			this->TextName->Size = System::Drawing::Size(798, 22);
3649
			this->TextName->TabIndex = 1;
3619
			this->TextName->TabIndex = 1;
3650
			this->TextName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextName_TextChanged);
3620
			this->TextName->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextName_TextChanged);
3651
			// 
3621
			// 
Line 3666... Line 3636...
3666
			// 
3636
			// 
3667
			this->panel2->Controls->Add(this->TextAuthor);
3637
			this->panel2->Controls->Add(this->TextAuthor);
3668
			this->panel2->Controls->Add(this->label2);
3638
			this->panel2->Controls->Add(this->label2);
3669
			this->panel2->Dock = System::Windows::Forms::DockStyle::Top;
3639
			this->panel2->Dock = System::Windows::Forms::DockStyle::Top;
3670
			this->panel2->Location = System::Drawing::Point(7, 58);
3640
			this->panel2->Location = System::Drawing::Point(7, 58);
3671
			this->panel2->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3641
			this->panel2->Margin = System::Windows::Forms::Padding(4);
3672
			this->panel2->Name = L"panel2";
3642
			this->panel2->Name = L"panel2";
3673
			this->panel2->Size = System::Drawing::Size(1007, 25);
3643
			this->panel2->Size = System::Drawing::Size(1007, 25);
3674
			this->panel2->TabIndex = 3;
3644
			this->panel2->TabIndex = 3;
3675
			// 
3645
			// 
3676
			// TextAuthor
3646
			// TextAuthor
3677
			// 
3647
			// 
3678
			this->TextAuthor->Dock = System::Windows::Forms::DockStyle::Fill;
3648
			this->TextAuthor->Dock = System::Windows::Forms::DockStyle::Fill;
3679
			this->TextAuthor->Location = System::Drawing::Point(209, 0);
3649
			this->TextAuthor->Location = System::Drawing::Point(209, 0);
3680
			this->TextAuthor->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3650
			this->TextAuthor->Margin = System::Windows::Forms::Padding(4);
3681
			this->TextAuthor->Name = L"TextAuthor";
3651
			this->TextAuthor->Name = L"TextAuthor";
3682
			this->TextAuthor->Size = System::Drawing::Size(798, 22);
3652
			this->TextAuthor->Size = System::Drawing::Size(798, 22);
3683
			this->TextAuthor->TabIndex = 1;
3653
			this->TextAuthor->TabIndex = 1;
3684
			this->TextAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextAuthor_TextChanged);
3654
			this->TextAuthor->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextAuthor_TextChanged);
3685
			// 
3655
			// 
Line 3700... Line 3670...
3700
			// 
3670
			// 
3701
			this->panel3->Controls->Add(this->TextVersion);
3671
			this->panel3->Controls->Add(this->TextVersion);
3702
			this->panel3->Controls->Add(this->label3);
3672
			this->panel3->Controls->Add(this->label3);
3703
			this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
3673
			this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
3704
			this->panel3->Location = System::Drawing::Point(7, 83);
3674
			this->panel3->Location = System::Drawing::Point(7, 83);
3705
			this->panel3->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3675
			this->panel3->Margin = System::Windows::Forms::Padding(4);
3706
			this->panel3->Name = L"panel3";
3676
			this->panel3->Name = L"panel3";
3707
			this->panel3->Size = System::Drawing::Size(1007, 25);
3677
			this->panel3->Size = System::Drawing::Size(1007, 25);
3708
			this->panel3->TabIndex = 4;
3678
			this->panel3->TabIndex = 4;
3709
			// 
3679
			// 
3710
			// TextVersion
3680
			// TextVersion
3711
			// 
3681
			// 
3712
			this->TextVersion->Dock = System::Windows::Forms::DockStyle::Fill;
3682
			this->TextVersion->Dock = System::Windows::Forms::DockStyle::Fill;
3713
			this->TextVersion->Location = System::Drawing::Point(209, 0);
3683
			this->TextVersion->Location = System::Drawing::Point(209, 0);
3714
			this->TextVersion->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3684
			this->TextVersion->Margin = System::Windows::Forms::Padding(4);
3715
			this->TextVersion->Name = L"TextVersion";
3685
			this->TextVersion->Name = L"TextVersion";
3716
			this->TextVersion->Size = System::Drawing::Size(798, 22);
3686
			this->TextVersion->Size = System::Drawing::Size(798, 22);
3717
			this->TextVersion->TabIndex = 1;
3687
			this->TextVersion->TabIndex = 1;
3718
			this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
3688
			this->TextVersion->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextVersion_TextChanged);
3719
			// 
3689
			// 
Line 3734... Line 3704...
3734
			// 
3704
			// 
3735
			this->panel4->Controls->Add(this->CreationDate);
3705
			this->panel4->Controls->Add(this->CreationDate);
3736
			this->panel4->Controls->Add(this->label4);
3706
			this->panel4->Controls->Add(this->label4);
3737
			this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
3707
			this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
3738
			this->panel4->Location = System::Drawing::Point(7, 108);
3708
			this->panel4->Location = System::Drawing::Point(7, 108);
3739
			this->panel4->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3709
			this->panel4->Margin = System::Windows::Forms::Padding(4);
3740
			this->panel4->Name = L"panel4";
3710
			this->panel4->Name = L"panel4";
3741
			this->panel4->Size = System::Drawing::Size(1007, 25);
3711
			this->panel4->Size = System::Drawing::Size(1007, 25);
3742
			this->panel4->TabIndex = 5;
3712
			this->panel4->TabIndex = 5;
3743
			// 
3713
			// 
3744
			// CreationDate
3714
			// CreationDate
3745
			// 
3715
			// 
3746
			this->CreationDate->Checked = false;
3716
			this->CreationDate->Checked = false;
3747
			this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
3717
			this->CreationDate->Dock = System::Windows::Forms::DockStyle::Fill;
3748
			this->CreationDate->Location = System::Drawing::Point(209, 0);
3718
			this->CreationDate->Location = System::Drawing::Point(209, 0);
3749
			this->CreationDate->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3719
			this->CreationDate->Margin = System::Windows::Forms::Padding(4);
3750
			this->CreationDate->Name = L"CreationDate";
3720
			this->CreationDate->Name = L"CreationDate";
3751
			this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
3721
			this->CreationDate->RightToLeft = System::Windows::Forms::RightToLeft::No;
3752
			this->CreationDate->Size = System::Drawing::Size(798, 22);
3722
			this->CreationDate->Size = System::Drawing::Size(798, 22);
3753
			this->CreationDate->TabIndex = 2;
3723
			this->CreationDate->TabIndex = 2;
3754
			this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
3724
			this->CreationDate->Value = System::DateTime(2009, 12, 8, 19, 52, 0, 0);
Line 3785... Line 3755...
3785
			this->PanelShip->Controls->Add(this->TextShipID);
3755
			this->PanelShip->Controls->Add(this->TextShipID);
3786
			this->PanelShip->Controls->Add(this->CheckShipID);
3756
			this->PanelShip->Controls->Add(this->CheckShipID);
3787
			this->PanelShip->Controls->Add(this->label6);
3757
			this->PanelShip->Controls->Add(this->label6);
3788
			this->PanelShip->Dock = System::Windows::Forms::DockStyle::Top;
3758
			this->PanelShip->Dock = System::Windows::Forms::DockStyle::Top;
3789
			this->PanelShip->Location = System::Drawing::Point(7, 133);
3759
			this->PanelShip->Location = System::Drawing::Point(7, 133);
3790
			this->PanelShip->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3760
			this->PanelShip->Margin = System::Windows::Forms::Padding(4);
3791
			this->PanelShip->Name = L"PanelShip";
3761
			this->PanelShip->Name = L"PanelShip";
3792
			this->PanelShip->Size = System::Drawing::Size(1007, 25);
3762
			this->PanelShip->Size = System::Drawing::Size(1007, 25);
3793
			this->PanelShip->TabIndex = 6;
3763
			this->PanelShip->TabIndex = 6;
3794
			// 
3764
			// 
3795
			// TextShipID
3765
			// TextShipID
3796
			// 
3766
			// 
3797
			this->TextShipID->Dock = System::Windows::Forms::DockStyle::Fill;
3767
			this->TextShipID->Dock = System::Windows::Forms::DockStyle::Fill;
3798
			this->TextShipID->Location = System::Drawing::Point(375, 0);
3768
			this->TextShipID->Location = System::Drawing::Point(375, 0);
3799
			this->TextShipID->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3769
			this->TextShipID->Margin = System::Windows::Forms::Padding(4);
3800
			this->TextShipID->Name = L"TextShipID";
3770
			this->TextShipID->Name = L"TextShipID";
3801
			this->TextShipID->Size = System::Drawing::Size(632, 22);
3771
			this->TextShipID->Size = System::Drawing::Size(632, 22);
3802
			this->TextShipID->TabIndex = 2;
3772
			this->TextShipID->TabIndex = 2;
3803
			this->TextShipID->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipID_TextChanged);
3773
			this->TextShipID->TextChanged += gcnew System::EventHandler(this, &PackageForm::TextShipID_TextChanged);
3804
			// 
3774
			// 
Line 3924... Line 3894...
3924
			this->Controls->Add(this->panel3);
3894
			this->Controls->Add(this->panel3);
3925
			this->Controls->Add(this->panel2);
3895
			this->Controls->Add(this->panel2);
3926
			this->Controls->Add(this->panel1);
3896
			this->Controls->Add(this->panel1);
3927
			this->Controls->Add(this->toolStrip1);
3897
			this->Controls->Add(this->toolStrip1);
3928
			this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
3898
			this->Icon = (cli::safe_cast<System::Drawing::Icon^>(resources->GetObject(L"$this.Icon")));
3929
			this->Margin = System::Windows::Forms::Padding(4, 4, 4, 4);
3899
			this->Margin = System::Windows::Forms::Padding(4);
3930
			this->Name = L"PackageForm";
3900
			this->Name = L"PackageForm";
3931
			this->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3901
			this->Padding = System::Windows::Forms::Padding(7, 6, 7, 6);
3932
			this->ShowIcon = false;
3902
			this->ShowIcon = false;
3933
			this->ShowInTaskbar = false;
3903
			this->ShowInTaskbar = false;
3934
			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
3904
			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
Line 4209... Line 4179...
4209
			 {
4179
			 {
4210
				 ((CSpkFile *)m_pPackage)->SetScriptType(this->ComboType->SelectedIndex);
4180
				 ((CSpkFile *)m_pPackage)->SetScriptType(this->ComboType->SelectedIndex);
4211
				 this->UpdateDependacies();
4181
				 this->UpdateDependacies();
4212
			 }
4182
			 }
4213
			 this->UpdateScriptType();
4183
			 this->UpdateScriptType();
4214
			 this->UpdateChanged();
4184
			 this->UpdateChanged();
4215
		 }
4185
		 }
4216
private: System::Void TextDesc_TextChanged(System::Object^  sender, System::EventArgs^  e) {
4186
private: System::Void TextDesc_TextChanged(System::Object^  sender, System::EventArgs^  e) {
4217
			if ( !m_bLoading )	m_pPackage->setDescription(_S(this->TextDesc->Text).findReplace("\n", "<br>"));
4187
			if ( !m_bLoading )	m_pPackage->setDescription(_S(this->TextDesc->Text).findReplace("\n", "<br>"));
4218
			this->UpdateChanged();
4188
			this->UpdateChanged();
4219
		 }
4189
		 }
Line 4347... Line 4317...
4347
				if ( input2->ShowDialog(this) == System::Windows::Forms::DialogResult::OK )
4317
				if ( input2->ShowDialog(this) == System::Windows::Forms::DialogResult::OK )
4348
				{
4318
				{
4349
					m_pPackage->AddLanguageName(Convert::ToInt32(input->GetInput()), _S(input2->GetInput()));
4319
					m_pPackage->AddLanguageName(Convert::ToInt32(input->GetInput()), _S(input2->GetInput()));
4350
					this->UpdateChanged();
4320
					this->UpdateChanged();
4351
					this->UpdatePackageNames();
4321
					this->UpdatePackageNames();
4352
				}
4322
				}
4353
			}
4323
			}
4354
		 }
4324
		 }
4355
private: System::Void ContextRemoveName_Click(System::Object^  sender, System::EventArgs^  e) {
4325
private: System::Void ContextRemoveName_Click(System::Object^  sender, System::EventArgs^  e) {
4356
			if ( m_pSelectedItem )
4326
			if ( m_pSelectedItem )
4357
			{
4327
			{
4358
				m_pPackage->RemoveLanguageName(Convert::ToInt32(m_pSelectedItem->Text));
4328
				m_pPackage->RemoveLanguageName(Convert::ToInt32(m_pSelectedItem->Text));
4359
				this->UpdatePackageNames();
4329
				this->UpdatePackageNames();
Line 4375... Line 4345...
4375
private: System::Void ButPicDel_Click(System::Object^  sender, System::EventArgs^  e) {
4345
private: System::Void ButPicDel_Click(System::Object^  sender, System::EventArgs^  e) {
4376
			 if ( m_pDisplayFile )
4346
			 if ( m_pDisplayFile )
4377
			 {
4347
			 {
4378
				 C_File *oldFile = m_pDisplayFile;
4348
				 C_File *oldFile = m_pDisplayFile;
4379
				 m_pDisplayFile = m_pPackage->GetNextFile(m_pDisplayFile);
4349
				 m_pDisplayFile = m_pPackage->GetNextFile(m_pDisplayFile);
4380
 
4350
 
4381
				 m_pPackage->RemoveFile(oldFile);
4351
				 m_pPackage->RemoveFile(oldFile);
4382
 
4352
 
4383
				 if ( !m_pDisplayFile )
4353
				 if ( !m_pDisplayFile )
4384
					 m_pDisplayFile = m_pPackage->GetFirstFile(FILETYPE_ADVERT);
4354
					 m_pDisplayFile = m_pPackage->GetFirstFile(FILETYPE_ADVERT);
4385
				 this->UpdateDisplayPic();
4355
				 this->UpdateDisplayPic();
4386
				 this->UpdateFileList();
4356
				 this->UpdateFileList();
4387
				 this->UpdateChanged();
4357
				 this->UpdateChanged();
4388
			 }
4358
			 }
4389
		 }
4359
		 }
4390
private: System::Void ButPicBack_Click(System::Object^  sender, System::EventArgs^  e) {
4360
private: System::Void ButPicBack_Click(System::Object^  sender, System::EventArgs^  e) {
4391
			 m_pDisplayFile = m_pPackage->GetPrevFile(m_pDisplayFile);
4361
			 m_pDisplayFile = m_pPackage->GetPrevFile(m_pDisplayFile);
4392
			 this->UpdateDisplayPic();
4362
			 this->UpdateDisplayPic();
4393
		 }
4363
		 }
4394
private: System::Void ButPicNext_Click(System::Object^  sender, System::EventArgs^  e) {
4364
private: System::Void ButPicNext_Click(System::Object^  sender, System::EventArgs^  e) {
Line 4408... Line 4378...
4408
			 this->UpdateRatings();
4378
			 this->UpdateRatings();
4409
			 this->UpdateChanged();
4379
			 this->UpdateChanged();
4410
		 }
4380
		 }
4411
private: System::Void PicEase2_Click(System::Object^  sender, System::EventArgs^  e) {
4381
private: System::Void PicEase2_Click(System::Object^  sender, System::EventArgs^  e) {
4412
			 m_pPackage->setEaseOfUse(2);
4382
			 m_pPackage->setEaseOfUse(2);
4413
			 this->UpdateChanged();
4383
			 this->UpdateChanged();
4414
			 this->UpdateRatings();
4384
			 this->UpdateRatings();
4415
		 }
4385
		 }
4416
private: System::Void PicEase3_Click(System::Object^  sender, System::EventArgs^  e) {
4386
private: System::Void PicEase3_Click(System::Object^  sender, System::EventArgs^  e) {
4417
			 m_pPackage->setEaseOfUse(3);
4387
			 m_pPackage->setEaseOfUse(3);
4418
			 this->UpdateChanged();
4388
			 this->UpdateChanged();
4419
			 this->UpdateRatings();
4389
			 this->UpdateRatings();
4420
		 }
4390
		 }
4421
private: System::Void PicEase4_Click(System::Object^  sender, System::EventArgs^  e) {
4391
private: System::Void PicEase4_Click(System::Object^  sender, System::EventArgs^  e) {
4422
			 m_pPackage->setEaseOfUse(4);
4392
			 m_pPackage->setEaseOfUse(4);
4423
			 this->UpdateChanged();
4393
			 this->UpdateChanged();
4424
			 this->UpdateRatings();
4394
			 this->UpdateRatings();
4425
		 }
4395
		 }
4426
private: System::Void PicEase5_Click(System::Object^  sender, System::EventArgs^  e) {
4396
private: System::Void PicEase5_Click(System::Object^  sender, System::EventArgs^  e) {
4427
			 m_pPackage->setEaseOfUse(5);
4397
			 m_pPackage->setEaseOfUse(5);
4428
			 this->UpdateChanged();
4398
			 this->UpdateChanged();
Line 4558... Line 4528...
4558
				this->ContextWareRemove->Visible = false;
4528
				this->ContextWareRemove->Visible = false;
4559
				this->ContextWareEdit->Visible = false;
4529
				this->ContextWareEdit->Visible = false;
4560
			}
4530
			}
4561
 
4531
 
4562
			if ( this->ListWares->Items->Count )
4532
			if ( this->ListWares->Items->Count )
4563
			{
4533
			{
4564
				this->ContextWareSep2->Visible = true;
4534
				this->ContextWareSep2->Visible = true;
4565
				this->ContextWareClear->Visible = true;
4535
				this->ContextWareClear->Visible = true;
4566
			}
4536
			}
4567
			else
4537
			else
4568
			{
4538
			{
Line 4740... Line 4710...
4740
						else
4710
						else
4741
							this->convertToFakePatchToolStripMenuItem->Visible = true;
4711
							this->convertToFakePatchToolStripMenuItem->Visible = true;
4742
					}
4712
					}
4743
					else if ( f->GetFileType() == FILETYPE_TEXT && !f->IsAutoTextFile() )
4713
					else if ( f->GetFileType() == FILETYPE_TEXT && !f->IsAutoTextFile() )
4744
						this->convertToAutoTextFileToolStripMenuItem->Visible = true;
4714
						this->convertToAutoTextFileToolStripMenuItem->Visible = true;
-
 
4715
					if (_addGameItem)
-
 
4716
					{
-
 
4717
						bool any = false;
-
 
4718
						for (int i = 0; i < _addGameItem->DropDownItems->Count; ++i)
-
 
4719
						{
-
 
4720
							ToolStripItem ^toolItem = _addGameItem->DropDownItems[i];
-
 
4721
							int iGame = Convert::ToInt32(toolItem->Tag);
-
 
4722
							if (f->game() & 1 << iGame)
-
 
4723
								toolItem->Visible = false;
-
 
4724
							else
-
 
4725
							{
-
 
4726
								toolItem->Visible = true;
-
 
4727
								any = true;
-
 
4728
							}
-
 
4729
						}
-
 
4730
						_addGameItem->Enabled = any;
-
 
4731
					}
-
 
4732
					if (_removeGameItem)
-
 
4733
					{
-
 
4734
						bool any = false;
-
 
4735
						for (int i = 0; i < _removeGameItem->DropDownItems->Count; ++i)
-
 
4736
						{
-
 
4737
							ToolStripItem ^toolItem = _removeGameItem->DropDownItems[i];
-
 
4738
							int iGame = Convert::ToInt32(toolItem->Tag);
-
 
4739
							if (!(f->game() & 1 << iGame))
-
 
4740
								toolItem->Visible = false;
-
 
4741
							else
-
 
4742
							{
-
 
4743
								toolItem->Visible = true;
-
 
4744
								any = true;
-
 
4745
							}
-
 
4746
						}
-
 
4747
						_removeGameItem->Enabled = any;
-
 
4748
					}
4745
				}
4749
				}
4746
			}
4750
			}
4747
			this->ContextFileDelete->Visible = (item) ? true : false;
4751
			this->ContextFileDelete->Visible = (item) ? true : false;
4748
			this->ContextFileClear->Visible = (this->ListFiles->Items->Count) ? true : false;
4752
			this->ContextFileClear->Visible = (this->ListFiles->Items->Count) ? true : false;
4749
			this->ContextFileSep2->Visible = (this->ListFiles->Items->Count) ? true : false;
4753
			this->ContextFileSep2->Visible = (this->ListFiles->Items->Count) ? true : false;
-
 
4754
 
4750
 
4755
 
4751
			m_pSelectedItem = item;
4756
			m_pSelectedItem = item;
4752
 
4757
 
4753
			e->Cancel = false;
4758
			e->Cancel = false;
4754
		 }
4759
		 }
4755
private: System::Void ButGame_Click(System::Object^  sender, System::EventArgs^  e) {
4760
private: System::Void ButGame_Click(System::Object^  sender, System::EventArgs^  e) {
4756
			 this->ContextGames->Show(this->ButGame, this->ButGame->PointToClient(this->ButGame->MousePosition));
4761
			 this->ContextGames->Show(this->ButGame, this->ButGame->PointToClient(this->ButGame->MousePosition));
4757
		 }
4762
		 }
4758
private: System::Void ContextGame_Selected(System::Object^  sender, System::EventArgs^  e) {
4763
private: System::Void ContextGame_Selected(System::Object^  sender, System::EventArgs^  e) {
4759
			System::Windows::Forms::ToolStripMenuItem ^item = cli::safe_cast<System::Windows::Forms::ToolStripMenuItem ^>(sender);
4764
			System::Windows::Forms::ToolStripMenuItem ^item = cli::safe_cast<System::Windows::Forms::ToolStripMenuItem ^>(sender);
4760
 
4765
 
4761
			this->ButGame->ImageIndex = Convert::ToInt32(item->Tag) - 1;
4766
			this->ButGame->ImageIndex = Convert::ToInt32(item->Tag) - 1;
4762
			this->ButGame->Text = item->Text;
4767
			this->ButGame->Text = item->Text;
4763
			this->ComboVersion->Enabled = true;
4768
			this->ComboVersion->Enabled = true;
4764
			this->ButGameAdd->Enabled = true;
4769
			this->ButGameAdd->Enabled = true;
4765
			this->UpdateGameVersion();
4770
			this->UpdateGameVersion();
4766
			this->ComboVersion->SelectedIndex = 0;
4771
			this->ComboVersion->SelectedIndex = 0;
4767
		 }
4772
		 }
4768
private: System::Void SetGame_Selected(System::Object^  sender, System::EventArgs^  e) {
4773
private: System::Void SetGame_Selected(System::Object^  sender, System::EventArgs^  e);
4769
			System::Windows::Forms::ToolStripMenuItem ^item = cli::safe_cast<System::Windows::Forms::ToolStripMenuItem ^>(sender);
4774
private: System::Void AddGame_Selected(System::Object^  sender, System::EventArgs^  e);
4770
 
-
 
4771
			int done = 0;
-
 
4772
			if ( ListFiles->SelectedItems->Count )
-
 
4773
			{
-
 
4774
				for ( int i = 0; i < ListFiles->SelectedItems->Count; i++ )
-
 
4775
				{
-
 
4776
					int id = CyStringFromSystemString(cli::safe_cast<System::String ^>(this->ListFiles->SelectedItems[i]->Tag)).ToInt();
4775
private: System::Void RemoveGame_Selected(System::Object^  sender, System::EventArgs^  e);
4777
					C_File *file = m_pPackage->GetFileList()->Get(id);
-
 
4778
					if ( file ) {
-
 
4779
						file->SetGame(Convert::ToInt32(item->Tag));
-
 
4780
						++done;
-
 
4781
					}
-
 
4782
				}
-
 
4783
			}
-
 
4784
 
-
 
4785
			if ( done ) {
-
 
4786
				this->UpdateFileList();
-
 
4787
				this->UpdateChanged();
-
 
4788
			}
-
 
4789
		 }
-
 
4790
private: System::Void ComboPluginType_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
4776
private: System::Void ComboPluginType_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
4791
			 if ( m_pPackage->GetType() == TYPE_SPK )
4777
			 if ( m_pPackage->GetType() == TYPE_SPK )
4792
			 {
4778
			 {
4793
				 if ( !m_bLoading )
4779
				 if ( !m_bLoading )
4794
					((CSpkFile *)m_pPackage)->setPluginType(this->ComboPluginType->SelectedIndex);
4780
					((CSpkFile *)m_pPackage)->setPluginType(this->ComboPluginType->SelectedIndex);
Line 5084... Line 5070...
5084
private: System::Void toolStripButton1_Click(System::Object^  sender, System::EventArgs^  e) {
5070
private: System::Void toolStripButton1_Click(System::Object^  sender, System::EventArgs^  e) {
5085
			 bool wildcard = false;
5071
			 bool wildcard = false;
5086
			 if ( MessageBox::Show(this, "Do you want to generate the script using wildcards for files?", "Generate Script - Wildcards", MessageBoxButtons::YesNo, MessageBoxIcon::Question) == System::Windows::Forms::DialogResult::Yes )
5072
			 if ( MessageBox::Show(this, "Do you want to generate the script using wildcards for files?", "Generate Script - Wildcards", MessageBoxButtons::YesNo, MessageBoxIcon::Question) == System::Windows::Forms::DialogResult::Yes )
5087
				 wildcard = true;
5073
				 wildcard = true;
5088
			 
5074
			 
5089
			Utils::CStringList list;
5075
			Utils::CStringList list;			
5090
			if ( !m_pPackage->GeneratePackagerScript(wildcard, &list, 0) )
5076
			if ( !m_pP->generatePackagerScript(m_pPackage, wildcard, &list, 0) )
5091
				MessageBox::Show(this, "Unable to generated packager script", "Error", MessageBoxButtons::OK, MessageBoxIcon::Error);
5077
				MessageBox::Show(this, "Unable to generated packager script", "Error", MessageBoxButtons::OK, MessageBoxIcon::Error);
5092
			else
5078
			else
5093
			{
5079
			{
5094
				SaveFileDialog ^ofd = gcnew SaveFileDialog();
5080
				SaveFileDialog ^ofd = gcnew SaveFileDialog();
5095
				ofd->Filter = "Package Script (*.sps)|*.sps";
5081
				ofd->Filter = "Package Script (*.sps)|*.sps";