diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb index 3d2b9c8..349cab9 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.ncb differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo index 6697b47..5221804 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL.suo differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm index 514d3c8..340d702 100644 Binary files a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm and b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm differ diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h index a4bcd52..2aec1d9 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.h @@ -3844,6 +3844,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeDSStation->Name = L"rPurposeDSStation"; this->rPurposeDSStation->TabStop = true; this->rPurposeDSStation->UseVisualStyleBackColor = true; + this->rPurposeDSStation->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeDSStation_CheckedChanged); // // rPurposeZone // @@ -3855,6 +3856,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeZone->Name = L"rPurposeZone"; this->rPurposeZone->TabStop = true; this->rPurposeZone->UseVisualStyleBackColor = true; + this->rPurposeZone->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeZone_CheckedChanged); // // rPurposeDSiWare // @@ -3866,6 +3868,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeDSiWare->Name = L"rPurposeDSiWare"; this->rPurposeDSiWare->TabStop = true; this->rPurposeDSiWare->UseVisualStyleBackColor = true; + this->rPurposeDSiWare->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeDSiWare_CheckedChanged); // // tboxPurposeOther // @@ -3884,8 +3887,8 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeOther->BackgroundImage = nullptr; this->rPurposeOther->Font = nullptr; this->rPurposeOther->Name = L"rPurposeOther"; - this->rPurposeOther->TabStop = true; this->rPurposeOther->UseVisualStyleBackColor = true; + this->rPurposeOther->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeOther_CheckedChanged); // // gboxPurposeCard // @@ -3911,6 +3914,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeCardProduction->Name = L"rPurposeCardProduction"; this->rPurposeCardProduction->TabStop = true; this->rPurposeCardProduction->UseVisualStyleBackColor = true; + this->rPurposeCardProduction->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardProduction_CheckedChanged); // // rPurposeCardDistribution // @@ -3921,6 +3925,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeCardDistribution->Font = nullptr; this->rPurposeCardDistribution->Name = L"rPurposeCardDistribution"; this->rPurposeCardDistribution->UseVisualStyleBackColor = true; + this->rPurposeCardDistribution->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardDistribution_CheckedChanged); // // rPurposeCardKiosk // @@ -3931,6 +3936,7 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->rPurposeCardKiosk->Font = nullptr; this->rPurposeCardKiosk->Name = L"rPurposeCardKiosk"; this->rPurposeCardKiosk->UseVisualStyleBackColor = true; + this->rPurposeCardKiosk->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardKiosk_CheckedChanged); // // labProductNameLimit // @@ -4584,6 +4590,113 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; return ret; } + // "用途"の項目で1つのラジオボタンしか押されないようにする + // (本来はグループボックスが自動的に処理してくれるが, グループボックスが複数あるためグループボックスをまたいだ排他処理が必要) + void changePurposeForms(System::Windows::Forms::RadioButton ^rbut) + { + // イベントが発生しないようにイベントを無効にする + this->rPurposeCardProduction->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeCardProduction_CheckedChanged); + this->rPurposeCardDistribution->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeCardDistribution_CheckedChanged); + this->rPurposeCardKiosk->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeCardKiosk_CheckedChanged); + this->rPurposeDSiWare->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeDSiWare_CheckedChanged); + this->rPurposeDSStation->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeDSStation_CheckedChanged); + this->rPurposeZone->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeZone_CheckedChanged); + this->rPurposeOther->CheckedChanged -= gcnew System::EventHandler(this, &Form1::rPurposeOther_CheckedChanged); + + // いったんすべてチェックを外す + this->rPurposeCardProduction->Checked = false; + this->rPurposeCardDistribution->Checked = false; + this->rPurposeCardKiosk->Checked = false; + this->rPurposeDSiWare->Checked = false; + this->rPurposeDSStation->Checked = false; + this->rPurposeZone->Checked = false; + this->rPurposeOther->Checked = false; + + // 選択されたもののみチェックする + rbut->Checked = true; + + // "その他"のテキストボックスを有効にする + if( rbut->Equals(this->rPurposeOther) ) + { + this->tboxPurposeOther->Enabled = true; + } + else + { + this->tboxPurposeOther->Clear(); + this->tboxPurposeOther->Enabled = false; + } + + // イベントを有効にする + this->rPurposeCardProduction->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardProduction_CheckedChanged); + this->rPurposeCardDistribution->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardDistribution_CheckedChanged); + this->rPurposeCardKiosk->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeCardKiosk_CheckedChanged); + this->rPurposeDSiWare->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeDSiWare_CheckedChanged); + this->rPurposeDSStation->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeDSStation_CheckedChanged); + this->rPurposeZone->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeZone_CheckedChanged); + this->rPurposeOther->CheckedChanged += gcnew System::EventHandler(this, &Form1::rPurposeOther_CheckedChanged); + + } //changePurposeForms() + + // ROMメディアにあわせて"用途"の選択可能なラジオボタンを絞る + void maskPurposeForms(void) + { + // カードアプリで選択可能な項目 + cli::array ^rbutsCard = gcnew cli::array + { + this->rPurposeCardProduction, + this->rPurposeCardDistribution, + this->rPurposeCardKiosk, + this->rPurposeDSStation, // カードアプリとして作成 + }; + // NANDアプリで選択可能な項目 + cli::array ^rbutsNand = gcnew cli::array + { + this->rPurposeDSiWare, + this->rPurposeZone + }; + + if( this->hSrl->IsMediaNand ) + { + for each( System::Windows::Forms::RadioButton ^r in rbutsCard ) + { + r->Enabled = false; + if( r->Checked ) // カードアプリの選択可能項目にチェックがついていたらチェックをつけかえる + { + this->changePurposeForms(this->rPurposeDSiWare); + } + } + for each( System::Windows::Forms::RadioButton ^r in rbutsNand ) + { + r->Enabled = true; + } + } + else + { + for each( System::Windows::Forms::RadioButton ^r in rbutsNand ) + { + r->Enabled = false; + if( r->Checked ) + { + this->changePurposeForms(this->rPurposeCardProduction); + } + } + for each( System::Windows::Forms::RadioButton ^r in rbutsCard ) + { + r->Enabled = true; + } + } + + // 日本向けでは"店頭試遊台(単独型)"をなくす + if( this->hSrl->IsRegionJapan ) + { + this->rPurposeCardKiosk->Enabled = false; + if( this->rPurposeCardKiosk->Checked ) + { + this->changePurposeForms(this->rPurposeOther); // わざわざこれを選ぶには特別な理由があるだろうから"その他"にチェックをつけかえる + } + } + } //maskPurposeForms() + private: // ---------------------------------------------- // 固定ファイル名の取得 @@ -5641,13 +5754,42 @@ private: System::Windows::Forms::RadioButton^ rPurposeZone; this->updateGrid(); } } - - - - - - - + // 用途の項目のラジオボタン + private: + System::Void rPurposeCardProduction_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeCardProduction); + } + private: + System::Void rPurposeCardDistribution_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeCardDistribution); + } + private: + System::Void rPurposeCardKiosk_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeCardKiosk); + } + private: + System::Void rPurposeDSiWare_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeDSiWare); + } + private: + System::Void rPurposeDSStation_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeDSStation); + } + private: + System::Void rPurposeZone_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeZone); + } + private: + System::Void rPurposeOther_CheckedChanged(System::Object^ sender, System::EventArgs^ e) + { + this->changePurposeForms(this->rPurposeOther); + } }; // enf of ref class Form1 } // end of namespace MasterEditorTWL diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.ja.resx b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.ja.resx index 7a9ebbe..664f3e7 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.ja.resx +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.ja.resx @@ -1478,7 +1478,10 @@ 繝繝シ繧ソ驟堺ソ。ROM - 118, 16 + 127, 16 + + + 蠎鈴ュ菴馴ィ鍋沿(蜊倡峡蝙) 繧ォ繝シ繝臥函逕」繧ス繝輔ヨ @@ -1609,8 +1612,4 @@ シュシウ シー繧エ繧キ繝繧ッ, 9pt - - - NoControl - \ No newline at end of file diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.resX b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.resX index 1a4d220..e5121e6 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.resX +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form1.resX @@ -117,8 +117,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gboxTWLExInfo + + + 737, 21 gboxSrl @@ -130,19 +131,21 @@ True - - h + + 3 tabSubmitInfo - 339, 182 27, 50 + + rPurposeOther + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -158,8 +161,8 @@ 140, 19 - - 22 + + True 2 @@ -176,8 +179,8 @@ 46, 21 - - 46, 21 + + 4 labShared2Size1 @@ -185,6 +188,9 @@ gboxTWLExInfo + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 349, 21 @@ -203,8 +209,8 @@ 75, 20 - - Game Card for Data Distribution + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 178, 83 @@ -227,17 +233,14 @@ Europe Only - - 24, 112 - - - tboxNormalRomOffset + + United States Only labShared2Size0 - - tboxMedia + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 34 @@ -248,17 +251,20 @@ gboxPurposeCard + + labSubBannerSize + + + 2 + Display Connection Icon On DSi Menu - - combPEGI_BBFC - 33 - - 0 + + 94, 21 139, 15 @@ -269,18 +275,27 @@ 171, 105 + + gridError + 8 248, 19 + + 17, 88 + 6, 85 gboxParental + + gboxTWLExInfo + 22 @@ -299,8 +314,8 @@ 6, 48 - - 31, 24 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 223, 108 @@ -317,11 +332,11 @@ TWL - - - Language + + tboxCaption - - 78, 133 + + tboxTmdSize stripMaster @@ -329,12 +344,18 @@ gboxNandSize + + Region and Rating Infomation + 0 labShared2Size2 + + 24, 112 + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -347,9 +368,6 @@ labRomType - - labSubmiteDate - 357, 261 @@ -362,9 +380,6 @@ 15 - - 5 - 3, 3, 3, 3 @@ -381,20 +396,17 @@ 41 - - gboxNandSize - 77, 124 - - 18, 214 + + Export both ROM info and error info to HTML file (Info when ROM data was read) 21, 15 - - Export both ROM info and error info to HTML file (Info when ROM data was read) + + Rating Pending gboxForeign @@ -408,15 +420,6 @@ You must complete all items on this tab to create a submission checklist and Master ROM.<newline>This information is used as ROM registration data when the Master ROM is created (excluding "Other ROM Spec"). - - labArbit2 - - - tboxCaption - - - cboxIsNormalJump - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -429,12 +432,18 @@ aged 6 or older + + 0 + 147, 21 10 + + 86, 15 + gboxTitleID @@ -477,15 +486,9 @@ 158, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - gboxExFlags - - True - 9 @@ -498,14 +501,14 @@ 11 + + True + 10 - - 98, 15 - - - Header CRC + + 14, 45 System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -522,8 +525,8 @@ 20 - - gboxTWLExInfo + + 3 gboxTitleID @@ -534,24 +537,30 @@ TWL Extended Flags + + Right + 124, 107 System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 259, 183 - 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 14 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -561,8 +570,8 @@ 6 - - combRegion + + => 118, 83 @@ -579,17 +588,14 @@ 209, 98 - - tboxNTSC2 + + 1 - - rPurposeDSStation + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 339, 79 - - - 0 + + 42, 21 408, 389 @@ -600,8 +606,8 @@ 497, 15 - - tabTWLInfo + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 96, 21 @@ -624,8 +630,8 @@ ages 15 or older - - 56, 20 + + 8 558, 54 @@ -639,20 +645,26 @@ h + + rErrorReading + + + 21, 15 + 12 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - tabTWLInfo - - 1 + + labShared2Size5 + + + gboxNandSize gboxTitleID @@ -663,8 +675,11 @@ labGameCode - - NAND Flash Memory + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 5 SDK Ver @@ -675,6 +690,9 @@ 40 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -684,14 +702,17 @@ Contact2 + + ages 12 or older + 1 37, 15 - - 5 + + labSrlSize 0 @@ -705,6 +726,9 @@ labPlatform + + (Furigana) + 189, 80 @@ -726,8 +750,11 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 223, 68 + + gboxSrl + + + 5 78, 79 @@ -750,6 +777,9 @@ 107, 15 + + Game Card for Data Distribution + tboxWarningChinaRating @@ -768,32 +798,29 @@ 31 - - True - labSubmitVer + + 1 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 127, 14 + + gboxLaunch - - 11 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 126, 15 - - gboxParental - 1 - - rPurposeCardProduction + + gboxTWLExInfo 71, 21 @@ -801,9 +828,6 @@ 215, 15 - - 200 - tboxPrivateSize @@ -813,8 +837,8 @@ gboxParental - - gboxNandSize + + Language 28 @@ -846,24 +870,24 @@ 11 - - gboxForeign + + True + + + 244, 14 stripItemErrorListCurrent + + NoControl + labPerson2 13 - - 31, 54 - - - File 4 - True @@ -873,26 +897,32 @@ tboxPublicSize + + $this + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 0 + + gboxOtherSpec + 139, 16 + + 406, 331 + tabMain 279, 90 - - gboxTWLExInfo + + 200 System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -903,15 +933,15 @@ NoControl + + 151, 19 + 96, 15 aged 12 or older - - 1 - 11 @@ -936,6 +966,9 @@ tboxAppTypeOther + + 9, 25 + 37, 29 @@ -963,9 +996,6 @@ 4 - - 1 - gboxShared2Size @@ -984,8 +1014,8 @@ 289, 90 - - labSubBannerSize + + gboxLaunch System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1002,6 +1032,9 @@ 95, 123 + + tboxShared2Size1 + 89, 21 @@ -1017,11 +1050,11 @@ 4 - - 136, 15 + + 15, 258 - - 207, 109 + + 8 53, 41 @@ -1080,8 +1113,8 @@ 293, 154 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 aged 3 or older @@ -1089,11 +1122,11 @@ 59, 15 - - labSumSize2 + + 100, 21 - - gboxPerson1 + + 2 NoControl @@ -1104,24 +1137,21 @@ 21, 55 - - labSrlSize + + tabMain NoControl + + 772, 420 + True - - 78, 106 - True - - 3 - 23 @@ -1134,45 +1164,42 @@ 17 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - gboxSrl - - 8 + + TWL MasterEditor - - gboxPurpose + + 339, 79 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 12 - - (Furigana) - - - Backup Memory + + tboxAppType labIsCodec - - 6 + + Game Card Access 2 + + 17 + gboxTWLExInfo System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 - gboxShared2Size @@ -1185,8 +1212,11 @@ 59, 15 - - 37 + + 4 + + + Total Size gboxSrl @@ -1203,6 +1233,9 @@ aged 7 or older + + 0 + (From NAND Application) @@ -1218,11 +1251,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - labBracketL + + 28, 15 NoControl @@ -1233,15 +1263,9 @@ gboxNandSize - - True - 24 - - labReleaseDate - gboxNandSize @@ -1254,26 +1278,20 @@ aged 4 or older - - Right - Special Instructions 105, 19 - - 155, 116 - 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 0 + + 39, 15 66, 19 @@ -1281,6 +1299,9 @@ 11 + + 33 + 2 @@ -1293,8 +1314,11 @@ colWarnName - - (100 characters or less) + + gboxPurpose + + + True 0 @@ -1308,9 +1332,6 @@ 40 - - NTSC - butSetBack @@ -1332,18 +1353,21 @@ tabNandSizeInfo + + True + 8 + + 9 + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1353,6 +1377,9 @@ 8 + + tabRomEditInfo + 117, 18 @@ -1362,11 +1389,14 @@ TWL Normal Region ROM Offset + + 1 + 4 - - 124, 21 + + 4, 24 Make a middleware list only(HTML format) @@ -1377,8 +1407,8 @@ True - - gboxOtherSpec + + 12, 82 204, 23 @@ -1389,6 +1419,9 @@ 6 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 13 @@ -1401,6 +1434,9 @@ 4 + + Right + True @@ -1410,11 +1446,11 @@ gboxSubmitWay - - 55, 21 + + 4Kbit EEPROM - - tboxSubBannerSizeFS + + 158, 21 202, 197 @@ -1422,8 +1458,8 @@ 187, 109 - - gboxPurposeNetwork + + 13, 94 Export both ROM info and error info to HTML file (Info applied current input) @@ -1434,8 +1470,8 @@ 1 - - 64, 15 + + 11 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1443,47 +1479,38 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 109 - T (aged 13 or older) 12, 28 - - A (All ages) - - + 2 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 71, 21 - - 307, 22 + + 78, 214 tabTWLInfo - - gboxPurpose + + True File 5 - - combOFLC - - - tabTWLInfo + + 2 tabTWLInfo @@ -1491,12 +1518,18 @@ gboxPerson1 + + 8 + 6 combPEGI + + labArrow3 + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1518,8 +1551,11 @@ gboxTWLExInfo - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 + + + 24, 11 23, 136 @@ -1530,8 +1566,8 @@ 2 - - ver.0.0 + + 261, 21 2 @@ -1545,8 +1581,8 @@ 228, 218 - - 0 + + 14 167, 19 @@ -1578,9 +1614,6 @@ gboxNandSize - - 47, 19 - SDK Version @@ -1593,15 +1626,15 @@ 157, 19 + + cboxIsInputPerson2 + Arial, 8.25pt 102, 148 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - tboxShared2Size2 @@ -1614,20 +1647,20 @@ tabSubmitInfo - - dataSDKVer + + 5 - - labCERO + + gboxForeign gboxExFlags - - 3 + + 42 - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tboxTel1 @@ -1644,12 +1677,15 @@ 78, 52 - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 stripItemEnglish + + 0 + 7 @@ -1659,9 +1695,6 @@ True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - B (aged 12 or older) @@ -1671,15 +1704,15 @@ True - - gboxForeign - 4 TitleID + + 171, 15 + 49, 15 @@ -1692,27 +1725,15 @@ True - - 11 - 18, 21 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - aged 3 or older + + 1 772, 420 - - gboxParental - gboxTWLExInfo @@ -1740,6 +1761,15 @@ Begin + + 37 + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3 + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1749,9 +1779,6 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 506, 22 - 0, 0 @@ -1776,9 +1803,6 @@ 171, 80 - - 23, 163 - labCompany2 @@ -1794,6 +1818,9 @@ labProductCode2 + + 6, 70 + labRemasterVer @@ -1815,26 +1842,17 @@ 119, 15 - - 1 - 14 - - 4 - 1 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Right + + 5 124, 21 @@ -1842,8 +1860,8 @@ True - - Right + + 5 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1851,8 +1869,8 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabCompanyInfo System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -1860,9 +1878,6 @@ 15 - - 26 - TWL-Only Region ROM Offset @@ -1872,8 +1887,11 @@ 303, 22 - - 86, 15 + + gboxPerson2 + + + True 0 @@ -1890,8 +1908,8 @@ False - - tboxGuideRomEditInfo + + 207, 109 gboxParental @@ -1911,17 +1929,14 @@ 9, 54 - - 7 - 13 True - - Other ROM Spec. + + True Name @@ -1938,15 +1953,9 @@ 1 - - 5 - 9 - - 18, 20 - colWarnBegin @@ -1956,12 +1965,18 @@ Right + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 6 stripItemMiddlewareHtml + + Export ROM info to HTML file + 126, 126 @@ -1983,9 +1998,6 @@ 1 - - 10 - 20 @@ -2007,27 +2019,33 @@ tboxNTSC1 - - 2 + + Backup Memory - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gboxPerson1 + + + 307, 22 17 - - gboxSrl + + End + + + 78, 133 261, 21 + + 223, 133 + labCompany1 - - tboxCompany2 - E (aged 6 or older) @@ -2043,9 +2061,6 @@ 13 - - 95, 19 - 4 @@ -2088,14 +2103,17 @@ Load a temporary info. saved previously + + h + 53, 91 29, 15 - - Remaster Version + + tabCompanyInfo 2 @@ -2124,8 +2142,8 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True stripItemSaveTemp @@ -2133,8 +2151,8 @@ 43, 15 - - gridError + + True 261, 21 @@ -2145,18 +2163,24 @@ 37, 15 - - 293, 73 + + 100 labFurigana2 - - 155, 232 + + ver.0.0 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 1 + + gboxPurposeCard + NoControl @@ -2172,11 +2196,14 @@ 2 + + 209, 98 + 38 - - gboxErrorTiming + + 114, 26 0 @@ -2196,17 +2223,14 @@ 39, 20 - - 183, 43 - - - 9 + + stripItemSheet Contact1 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Right 147, 21 @@ -2220,6 +2244,9 @@ 100, 21 + + 39 + labArrow4 @@ -2238,8 +2265,8 @@ gboxNandSize - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 78, 187 @@ -2253,8 +2280,8 @@ 14 - - Use Shared2 Files + + gboxNandSize 21 @@ -2265,20 +2292,23 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 2 + + labBracketR + tabRomInfo System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2289,6 +2319,9 @@ cboxIsSubBanner + + 175, 15 + Right @@ -2298,8 +2331,8 @@ All ages - - 24, 11 + + labReleaseDate System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2316,8 +2349,8 @@ gboxCRC - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SD Card tboxPlatform @@ -2337,38 +2370,32 @@ 3 - - 36, 15 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 37 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - gboxForeign - 16 6, 235 + + => + Z (aged 18 or older) Company Info *** - - 13 + + * Reset to 0 when a new master ROM is created. - - 74, 19 - - - tabErrorInfo + + 30 labArbit1 @@ -2376,8 +2403,8 @@ labAppTypeOther - - rErrorReading + + 772, 420 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2391,14 +2418,14 @@ 1 - - gboxPerson2 + + gboxPurpose 7 - - gboxPerson2 + + 772, 420 12 @@ -2412,11 +2439,11 @@ 4 - - tboxWholeCRC + + labCERO - - tboxSrlSize + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 7 @@ -2436,8 +2463,8 @@ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 737, 21 + + Right 303, 22 @@ -2448,14 +2475,17 @@ 4 + + rPurposeCardKiosk + 6, 45 5 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + aged 12 or older 84, 15 @@ -2478,6 +2508,9 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6, 70 + Make a set of submission data @@ -2487,9 +2520,18 @@ 150 - + + 40 + + + 4, 24 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 14 @@ -2514,12 +2556,15 @@ 100 - - 95, 83 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 123, 21 + + 495, 195 + True @@ -2553,6 +2598,9 @@ 78, 79 + + labFile + 18 @@ -2577,8 +2625,8 @@ 1 - - 8 + + 158, 21 6, 88 @@ -2601,11 +2649,11 @@ aged 15 or older - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18, 214 - - 1 + + 0 392, 88 @@ -2616,8 +2664,11 @@ rSubmitInternet - - 42 + + 8 + + + 366, 161 12, 144 @@ -2625,32 +2676,41 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gboxParental + 183, 70 20 + + gboxPurpose + labDepart2 tabSubmitInfo - - 100, 21 + + 366, 50 h - - tboxProductNameForeign + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 9 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Size in NAND Memory True @@ -2670,8 +2730,14 @@ 44 - - 39 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 10 + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 23, 136 @@ -2679,8 +2745,8 @@ 60 - - 1 + + True gboxNandSize @@ -2688,18 +2754,15 @@ 16 - - 13, 94 - gboxPerson2 + + 40, 15 + 300 - - 0 - NoControl @@ -2709,15 +2772,9 @@ 285, 123 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - True - - 2 - 203, 101 @@ -2727,17 +2784,14 @@ gboxForeign - - Right - Error Info tabMain - - Japanese + + gboxForeign 14, 20 @@ -2745,8 +2799,11 @@ tboxTitleIDHi - - 13, 169 + + (100 characters or less) + + + 5 395, 91 @@ -2760,12 +2817,6 @@ 2 - - 5 - - - 3 - Begin @@ -2793,11 +2844,14 @@ 149, 52 - - 772, 420 + + 13 - - Region and Rating Infomation + + You must complete all items on this tab to create a submission checklist. + + + True 115, 15 @@ -2811,8 +2865,8 @@ True - - 171, 15 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 gboxSubmitWay @@ -2847,6 +2901,9 @@ Right + + rPurposeCardDistribution + gboxShared2Size @@ -2874,8 +2931,8 @@ 123, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Permit Normal Jump Landing 12, 143 @@ -2901,8 +2958,11 @@ 100 - - 5 + + 123, 47 + + + Information on this tab cannot be edited. If data errors exist, review the ROM's build settings. Right @@ -2910,9 +2970,6 @@ 90, 21 - - gboxPerson1 - colErrorName @@ -2925,18 +2982,18 @@ 20 - - 14, 45 - - - 9 + + tboxNTSC2 - 6, 70 + 6, 20 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 30, 15 + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2955,8 +3012,8 @@ 4 - - labMakerCode + + 36, 15 System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -2967,8 +3024,11 @@ File 0 - - 261, 21 + + gboxNandSize + + + tboxKeyTableRomOffset True @@ -2979,15 +3039,15 @@ 49, 15 - - labMultiForeign2 - - - gboxCRC + + aged 16 or older False + + tabTWLInfo + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3003,8 +3063,8 @@ gboxProd - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False 60 @@ -3015,8 +3075,8 @@ True - - Actual ROM File Size + + 10 Right @@ -3024,14 +3084,11 @@ 100 - - 7 - labESRB - - Right + + NAND Flash Memory True @@ -3045,9 +3102,6 @@ labHex4 - - Export error info to HTML file (Info applied current input) - True @@ -3057,6 +3111,9 @@ 53, 141 + + gboxPurposeNetwork + 78, 52 @@ -3066,8 +3123,8 @@ CRC - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 47, 19 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3075,9 +3132,6 @@ ROM Info. - - tabMain - 45, 21 @@ -3093,6 +3147,9 @@ All ages + + 4 + 38, 21 @@ -3111,29 +3168,38 @@ 737, 21 + + 22, 55 + + + 0 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 0 10 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + True System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 - 6 1 - - 7 + + 201, 19 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3141,8 +3207,8 @@ 293, 100 - - 21, 15 + + 19 gboxPerson2 @@ -3159,9 +3225,6 @@ UGC(User Generated Contents) Support - - Photo Exchange Support - tboxGameCode @@ -3195,9 +3258,6 @@ gboxPurposeNetwork - - 2 - tabRomInfo @@ -3210,14 +3270,17 @@ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 366, 50 + + 5 78, 187 - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 293, 73 + + + tboxSubBannerSizeFS labSDK @@ -3234,14 +3297,11 @@ 1 - - 12, 113 - 125, 19 - - tabErrorInfo + + 95, 83 192, 21 @@ -3255,6 +3315,9 @@ gridLibrary + + labMakerCode + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3270,14 +3333,8 @@ tabRomInfo - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 23 - - - ESRB + + 503, 6 23 @@ -3291,8 +3348,8 @@ Application Type - - 16 + + 11 gboxPerson1 @@ -3309,8 +3366,8 @@ 78, 160 - - 158, 21 + + 268, 21 tboxIsCodec @@ -3354,8 +3411,8 @@ G - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CODEC Mode aged 16 or older @@ -3366,8 +3423,8 @@ tabRomInfo - - 60 + + 7 36, 15 @@ -3381,8 +3438,11 @@ 129, 15 - - 114, 15 + + 22 + + + 3 5 @@ -3405,6 +3465,12 @@ 15 + + gboxErrorTiming + + + 580, 11 + 86, 15 @@ -3414,8 +3480,8 @@ 72, 264 - - 15, 258 + + tboxSumSizeMB tabSubmitInfo @@ -3432,18 +3498,12 @@ 256, 15 - - gboxForeign - 168, 15 8 - - 12 - aged 18 or older @@ -3465,9 +3525,6 @@ 94, 15 - - 3 - gboxTitleID @@ -3495,12 +3552,12 @@ AGCB(OFLC) - - 21 - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 + labHex2 @@ -3510,9 +3567,6 @@ 94, 21 - - 27 - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3543,8 +3597,8 @@ tboxHeaderCRC - - (Only release multi ver.) + + DS Card Application 43, 15 @@ -3555,11 +3609,11 @@ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ROM Size - - 261, 21 + + 2 stripItemRomInfoList @@ -3588,8 +3642,8 @@ 94, 21 - - labArrow3 + + False 3 @@ -3636,8 +3690,11 @@ 0 - - 1 + + 3 + + + 18, 214 tabTWLInfo @@ -3654,6 +3711,9 @@ gboxSrl + + gboxNandSize + 4 @@ -3663,8 +3723,8 @@ tboxSubBannerSize - - => + + 6 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3672,6 +3732,9 @@ 503, 6 + + tabSubmitInfo + 360, 261 @@ -3684,20 +3747,29 @@ gboxPerson1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 53, 66 + + How To Submit 204, 23 + + 156, 205 + 36 - - Export ROM info to HTML file + + 1 + + + 128, 19 + + + Use Shared2 Files + + + True gboxPerson2 @@ -3723,6 +3795,9 @@ 13, 119 + + Right + 6 @@ -3735,26 +3810,29 @@ True - - 3 + + 16 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + $this 100 - - aged 4 or older + + 4 labSDAccessRight - - False + + True => @@ -3762,6 +3840,9 @@ 18 + + Header CRC + gboxShared2Size @@ -3780,14 +3861,23 @@ 100, 19 + + 1 + + + 6, 45 + tabMain + + 24, 11 + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + E(Pre-Check) tabCompanyInfo @@ -3807,8 +3897,8 @@ 124, 135 - - 201, 19 + + 27 31, 27 @@ -3828,6 +3918,9 @@ 737, 131 + + 11 + 204, 23 @@ -3837,11 +3930,17 @@ tabSubmitInfo + + tabErrorInfo + 3 - - gboxPerson1 + + 155, 116 + + + 261, 21 37 @@ -3852,21 +3951,21 @@ Rating Pending - - 7, 137 - gboxShared2Size - - 268, 21 - 14 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 + + + 6 + True @@ -3882,18 +3981,24 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Production Game Card + True gboxNandSize - - 17 + + True System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 772, 420 + 11 @@ -3912,11 +4017,11 @@ Both - + gboxNandSize - - End + + Launch Control On DSi Menu 337, 200 @@ -3945,80 +4050,89 @@ True + + True + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + tboxDepart2 + + (Only release multi ver.) + 78, 160 - - 0 + + gboxForeign gboxShared2Size - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 261, 21 - 2 - - gboxParental + + tabTWLInfo Mail - - 33 + + 155, 232 10 - - labTel2 + + labError True + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 7 - - 360, 45 + + labSumSize2 8 + + 16 + gboxProd - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - labNormalRomOffset + + Unnecessary Rating (Available Only Tool App) 53, 20 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + tabSubmitInfo - - gboxNandSize + + 15, 207 - - True + + 16 49, 15 - - tabMain + + labProductCode1 40, 15 @@ -4041,21 +4155,18 @@ labTmdSize - - 2 + + 3 100 - - NoControl + + 100 14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 12 @@ -4074,6 +4185,9 @@ tboxProductCode1Foreign + + labMultiForeign2 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4107,8 +4221,8 @@ 339, 50 - - You must complete all items on this tab to create a submission checklist. + + 2 C (aged 15 or older) @@ -4116,6 +4230,9 @@ 103, 15 + + 28 + tboxPerson2 @@ -4131,20 +4248,17 @@ English - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labPEGI_BBFC 5 - - tabSubmitInfo - Right - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24, 11 1 @@ -4170,57 +4284,72 @@ gboxSrl - - rPurposeCardKiosk + + 98, 24 0 - - 18, 214 - labPrivateSize + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 116, 15 - - 5 - 2 gboxPerson2 + + Market and Rating *** + 457, 70 - - tboxSumSize + + 96, 21 tabErrorInfo - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabErrorInfo - - gboxPerson1 + + Reason + + + Remaster Version + + + colErrorBegin 1 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + Input Contact2 60, 15 + + 14, 19 + 10, 83 + + 53, 66 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4230,20 +4359,17 @@ 1 - - 16 + + 9 - - 28, 15 + + 1 tabRomEditInfo - - 532, 188 - - - 49, 15 + + tabCompanyInfo True @@ -4251,20 +4377,26 @@ labNTSC2Pre + + NoControl + gboxShared2Size - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 89, 21 $this - - True + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Product Code + + + gboxSrl 6 @@ -4272,6 +4404,9 @@ 11 + + 5 + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4281,11 +4416,8 @@ 6 - - gboxNandSize - - - PG + + 5 gboxNandSize @@ -4296,8 +4428,8 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ages 12 or older + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 303, 22 @@ -4314,6 +4446,9 @@ 60 + + 31, 24 + 4 @@ -4326,17 +4461,14 @@ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ROM Size - stripItemRomInfoAndErrorListCurrent aged 12 or older - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + combPEGI_PRT 737, 21 @@ -4344,9 +4476,6 @@ tboxPhotoAccess - - 4 - tabRomInfo @@ -4362,18 +4491,12 @@ 14, 15 - - 3 - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tabRomEditInfo - - Product Code - aged 16 or older @@ -4410,15 +4533,9 @@ gboxPerson2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + gboxPerson1 - - 32, 15 - 1 @@ -4431,9 +4548,6 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gboxNandSize - 39, 127 @@ -4449,8 +4563,8 @@ tabSubmitInfo - - 17, 88 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 rPurposeZone @@ -4470,8 +4584,8 @@ 191, 57 - - 209, 98 + + (Arbitrary) False @@ -4482,8 +4596,8 @@ 6, 21 - - 7 + + 124, 21 19 @@ -4491,8 +4605,8 @@ 233, 178 - - Reason + + 200 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4509,33 +4623,30 @@ 9 - - 772, 420 - ) 100 - - 204, 23 - 17 - - labRomSize - 9, 103 - - True + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 11, 15 17 + + 32, 15 + combUSK @@ -4557,9 +4668,6 @@ 0 - - True - (Arbitrary) @@ -4578,8 +4686,8 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + gboxPerson1 None @@ -4602,8 +4710,8 @@ 512Kbit EEPROM - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 64Kbit EEPROM gboxPerson1 @@ -4614,15 +4722,15 @@ True - - False - 3 labDepart1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + gboxPerson1 @@ -4659,23 +4767,20 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24, 11 + 9, 109 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 175, 15 + + tabRomInfo - - 28 - - - Permit Normal Jump Landing - - - (Total NAND memory used) + + gboxPerson2 15 @@ -4686,8 +4791,11 @@ 447, 156 - - 14, 19 + + 6 + + + tboxGuideRomEditInfo 293, 82 @@ -4695,18 +4803,15 @@ 101, 90 - - 7 - - - 580, 11 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 73, 15 + + tabSubmitInfo + 78, 25 @@ -4722,14 +4827,17 @@ 37 - - 6, 70 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Actual ROM File Size Remarks - Enter any other related information - - tabSubmitInfo + + 5 4, 24 @@ -4755,6 +4863,9 @@ 3 + + 64, 15 + gboxAccess @@ -4764,6 +4875,9 @@ labProductNameForeign + + 102, 293 + cboxIsSD @@ -4782,14 +4896,17 @@ True - - 100 + + 98, 15 7 - - Game Card Access + + 421, 188 + + + tabErrorInfo 1 @@ -4809,9 +4926,6 @@ labKeyTableRomOffset - - gboxNandSize - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -4827,11 +4941,14 @@ 322, 97 + + rPurposeCardProduction + 0 - - colErrorBegin + + True tboxCaptionEx @@ -4851,27 +4968,30 @@ gboxCRC - - toolStripSeparator2 + + gboxForeign System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + gboxPerson2 - - 102, 293 + + True tboxGuideSubmitInfo - - 40 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 77, 15 + + 10 + 2 @@ -4890,8 +5010,8 @@ 5 - - 18, 55 + + 0 13, 44 @@ -4905,14 +5025,11 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gboxOtherSpec + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 labProductCode @@ -4920,12 +5037,15 @@ 9 - - labIsGameCardOn + + 9 14, 15 + + Right + 86, 15 @@ -4941,30 +5061,24 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 155, 87 - 36 gboxPurposeNetwork - - Right + + 293, 127 + + + gboxOtherSpec 10 - - True - Right - - 44 - 792, 24 @@ -4974,6 +5088,9 @@ labMail1 + + gboxNandSize + 37, 15 @@ -4989,9 +5106,6 @@ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxReleaseForeign - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5001,29 +5115,35 @@ gboxNandSize + + Name + 1 + + gboxParental + 2 - - 171, 130 - - - 123, 47 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tboxMail2 + + rPurposeDSStation + Submission Ver. stripItemOpenRom - - labPEGI_BBFC + + 120, 140 Right @@ -5049,8 +5169,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SD Card + + TEL Dept. @@ -5061,14 +5181,11 @@ Company - - labPublicSize - 105, 17 - - 406, 331 + + 5 1 @@ -5079,11 +5196,8 @@ 52, 166 - - tabErrorInfo - - - 6 + + 40 24 @@ -5091,6 +5205,9 @@ Right + + 7 + tboxShared2Size0 @@ -5100,8 +5217,8 @@ 89, 21 - - 421, 188 + + Right System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5109,8 +5226,8 @@ 9 - - gboxSrl + + 55, 21 78, 15 @@ -5136,29 +5253,20 @@ 16 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gboxCRC 12 - - gboxForeign - stripLang - - tabSubmitInfo - 126, 15 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 42, 21 + + True 16, 18 @@ -5175,8 +5283,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40, 15 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 gboxAccess @@ -5184,20 +5292,20 @@ tboxSDAccessRight - - 10 + + 4 gboxParental - - 2 + + 10 6, 20 - - 3 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 True @@ -5205,14 +5313,14 @@ 32 - - 158, 21 - 4, 24 - - True + + combOFLC + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 100 @@ -5235,8 +5343,14 @@ 103, 21 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49, 15 + + + 0 + + + 94, 21 NoControl @@ -5250,20 +5364,17 @@ Others - - How To Submit - gboxAccess System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - DS Card Application + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tboxShared2Size1 + + True True @@ -5271,8 +5382,11 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labSumSize + + + Submission Date 0 @@ -5289,23 +5403,20 @@ 94, 21 - - 12 - 39, 100 - - 9 + + 18, 20 18 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + 1 3 @@ -5319,32 +5430,29 @@ 16, 172 - - TWL MasterEditor + + 3 gboxPerson1 - - 5 - 155, 174 188, 19 - - 16 + + 56, 20 tboxFurigana2 - - 94, 21 + + 8 - - 12, 82 + + 78, 106 13 @@ -5352,6 +5460,9 @@ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tboxPurposeOther + 287, 6 @@ -5361,20 +5472,23 @@ 0 - - 503, 6 + + NoControl + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 201, 189 - - 19 + + 12 tboxAccessOther - - tboxSumSizeMB + + gboxTWLExInfo NoControl @@ -5388,14 +5502,11 @@ ROM Type - - 96, 21 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 + + gboxForeign 124, 163 @@ -5403,8 +5514,8 @@ tboxConnectIcon - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tboxMail1 gboxNandSize @@ -5415,8 +5526,8 @@ stripItemSepMaster1 - - 94, 21 + + tboxProductName 37, 15 @@ -5439,53 +5550,44 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - United States Only - 2 - - 3 - - - gboxForeign + + True Dept. - - aged 12 or older - MS UI Gothic, 12pt - - True - - - (Arbitrary) + + 11 31, 166 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - + + gboxPerson1 + + 0 - - 114, 26 - Access Control Information - - gboxCRC + + True tboxFile @@ -5502,20 +5604,20 @@ 53, 15 - - rPurposeOther + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 156, 205 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 495, 195 + + cboxIsNormalJump Library Name - - 5 + + labPublicSize gboxNandSize @@ -5523,8 +5625,8 @@ 21, 113 - - labError + + A (All ages) 268, 21 @@ -5541,14 +5643,17 @@ tboxProductCode1 + + dataSDKVer + TWL - 0 - - E(Pre-Check) + + tabMain 18 @@ -5562,16 +5667,16 @@ 13 - - Right + + True - - 0 + + 60 True - + gboxNandSize @@ -5610,9 +5715,6 @@ 8 - - 74, 15 - gboxParental @@ -5625,18 +5727,12 @@ 55, 21 - - User ID - 100 tabTWLInfo - - 3 - 6, 194 @@ -5652,9 +5748,6 @@ 4 - - Submission Date - 737, 24 @@ -5664,26 +5757,20 @@ tboxGuideTWLInfo - - 5 - gridWarn - - 98, 24 - 181, 71 System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - => + + 3 - - 8 + + 43 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -5694,23 +5781,20 @@ labCapSubmitVer - - 100 + + labNormalRomOffset 10 - - Rating Pending - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 12, 82 - - stripItemSheet + + tabMain PEGI(General) and BBFC @@ -5718,8 +5802,8 @@ 39 - - True + + Arial, 8.25pt tabErrorInfo @@ -5727,8 +5811,8 @@ stripFile - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26, 315 True @@ -5739,20 +5823,17 @@ 8 - - Arial, 8.25pt - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 18 - - Total Size + + 7, 137 TopRight @@ -5778,8 +5859,8 @@ 2 - - 1 + + combPEGI_BBFC 1 @@ -5799,18 +5880,18 @@ 322, 70 - - 9, 156 + + labMail2 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ROM CRC - - gboxAccess - 240, 76 @@ -5829,23 +5910,23 @@ 1 - - tboxTmdSize + + 0 colLibName - - 10 + + 9 - - 6, 45 + + 0 labNandSize - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 16 @@ -5859,8 +5940,8 @@ 7 - - 11 + + True gboxPerson1 @@ -5868,6 +5949,9 @@ 7 + + Other Application Info + 3, 3, 3, 3 @@ -5877,9 +5961,6 @@ menuStripAbove - - All ages - 16 @@ -5892,9 +5973,6 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 - gboxAccess @@ -5904,14 +5982,14 @@ 3 - - labProductCode1 + + tboxNormalRomOffset gboxAccess - - 11, 15 + + gboxPerson2 True @@ -5934,17 +6012,14 @@ True - - aged 16 or older + + 360, 45 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gboxLaunch - - - 0 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Right @@ -5970,21 +6045,21 @@ tboxProductCode2 - - 1 + + tboxSrlSize - - labBracketR + + 12, 113 - + + tboxWholeCRC + + + gboxNandSize + + gboxForeign - - True - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - labLib @@ -6000,14 +6075,14 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - rPurposeCardDistribution + + 11 cboxIsUGC - - gboxPurpose + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 12 @@ -6048,8 +6123,8 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - * Reset to 0 when a new master ROM is created. + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 tabErrorInfo @@ -6072,9 +6147,6 @@ 256, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - True @@ -6096,8 +6168,8 @@ 476, 287 - - 2 + + (Total NAND memory used) tabNandSizeInfo @@ -6111,8 +6183,8 @@ aged 6 or older - - tboxProductName + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 6, 18 @@ -6126,35 +6198,35 @@ Sub-Banner File Size - - TEL + + 7 - - tabSubmitInfo + + 7 - - 293, 127 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 37, 15 - - True + + False + + + 2 True - - 772, 420 + + 183, 43 tabNandSizeInfo - - (Furigana) + + True System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6177,6 +6249,9 @@ True + + 161, 19 + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6186,23 +6261,17 @@ 2 - - labShared2Size5 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Make a middleware list only(XML format) - - 8 + + cboxReleaseForeign - - 3 + + 2 - - 0 + + gboxExFlags NTSC @@ -6225,8 +6294,8 @@ labArrow2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + labSubmiteDate True @@ -6240,8 +6309,8 @@ 268, 21 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 31 tabErrorInfo @@ -6249,11 +6318,11 @@ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - gboxParental + + 120, 52 - - NoControl + + 16 44, 15 @@ -6261,6 +6330,9 @@ 158, 15 + + 33, 15 + Maker Code @@ -6270,11 +6342,11 @@ 30 - - 15, 207 + + 31, 54 - - tabRomEditInfo + + 12 tboxMakerCode @@ -6282,29 +6354,26 @@ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 7 - - True + + 155, 87 TopRight - - 3 - stripItemSepFile1 5 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + aged 3 or older 4 @@ -6312,11 +6381,8 @@ In China, any rating organizations have not been established yet. In case such organization is established, select a "Rating Not Required (Tool Only)" if rating doesn't have to be displayed. - - False - - - tboxAppType + + combRegion 28, 15 @@ -6324,15 +6390,12 @@ True - - True + + 26 gboxTitleID - - CODEC Mode - TitleID Low @@ -6342,20 +6405,17 @@ Media - - tboxTitleName - - - True + + gboxForeign System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 13, 169 - - 5 + + NTSC cboxIsNAND @@ -6372,14 +6432,14 @@ True - - 16 + + 114, 15 NAND Area Size Used by the DSi Ware - - labFile + + True True @@ -6390,11 +6450,11 @@ 37 - - 24, 11 + + 200 - - tabCompanyInfo + + 1 14, 58 @@ -6402,8 +6462,8 @@ 506, 22 - - True + + 12 File @@ -6423,14 +6483,17 @@ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Market and Rating *** + + 26 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 9 - - gboxNandSize + + 9 0 @@ -6438,26 +6501,26 @@ True - - labMail2 + + 1 - - tabMain + + tboxShared2Size4 + + + 223, 68 System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 772, 420 - - - combPEGI_PRT + + 25 True - - 7 + + 9, 156 Rating Pending @@ -6465,20 +6528,14 @@ 1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 28 - - True - - - 9, 25 + + labTel2 12 @@ -6486,26 +6543,17 @@ colWarnEnd - - 200 - - - 8 - Open a ROM data file - - 40 - - - gboxPerson2 + + 171, 130 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 95, 19 labArbit4 @@ -6525,26 +6573,26 @@ 1 - - 4 - 39 - - True + + Other ROM Spec. - - tboxPurposeOther + + 259, 183 - - 11 + + 18, 55 + + + gboxParental 506, 22 - - tboxKeyTableRomOffset + + 0 4, 24 @@ -6558,8 +6606,8 @@ Warning (Although modification is not required, check this information for possible errors.) - - 5 + + labProductNameLimit 7 @@ -6573,20 +6621,23 @@ tabMain + + True + 55, 19 - - tboxMail1 + + 532, 188 - - 0 + + PG 82, 15 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 506, 22 24 @@ -6600,11 +6651,11 @@ 35 - - gboxLaunch + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + 5 True @@ -6621,11 +6672,8 @@ 7 - - labProductNameLimit - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 43, 15 @@ -6639,8 +6687,8 @@ 0 - - 30, 15 + + 46, 21 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6648,8 +6696,8 @@ 80, 15 - - 33, 15 + + gboxForeign 3 @@ -6663,11 +6711,11 @@ tabRomEditInfo - - tabRomInfo + + tboxProductCode2Foreign2 - - 9 + + 3 True @@ -6675,8 +6723,8 @@ 11 - - 151, 19 + + Photo Exchange Support True @@ -6690,12 +6738,15 @@ 13, 16 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + gboxCRC Market + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + (Only release multi ver.) @@ -6711,14 +6762,11 @@ 17 - - 11 - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tboxMedia gboxPurposeCard @@ -6726,9 +6774,6 @@ Other - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - True @@ -6741,9 +6786,6 @@ PEGI Portugal - - 64Kbit EEPROM - tabSubmitInfo @@ -6753,17 +6795,20 @@ 73, 19 + + labIsGameCardOn + 20 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 204, 23 Information on this tab cannot be edited. If data errors exist, review the ROM's build settings. - - 26 + + 127, 14 System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6780,8 +6825,8 @@ 40, 54 - - 8 + + 9, 109 6 @@ -6789,20 +6834,20 @@ 78, 106 - - 0 - - - 24, 11 + + 7 124, 191 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + E-mail - - 4, 24 + + gboxPerson1 + + + toolStripSeparator2 MiddleRight @@ -6822,29 +6867,29 @@ gboxNandSize + + tabSubmitInfo + 9, 20 + + 261, 21 + 15 - - 4, 24 + + 185, 23 - - Unnecessary Rating (Available Only Tool App) - - - gboxPerson2 - - - 31 + + (Furigana) 1 - - 223, 133 + + True 89, 21 @@ -6852,8 +6897,8 @@ 4 - - tboxProductCode2Foreign2 + + 11 colErrorCause @@ -6864,29 +6909,20 @@ Rating Pending - - M - - - 5 - - - 78, 214 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 True - - True + + gboxNandSize tboxRomLatency - - tabCompanyInfo + + True stripItemMasterRom @@ -6894,14 +6930,17 @@ DSiWare + + tboxProductNameForeign + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + M - - Name + + False 31, 110 @@ -6927,9 +6966,6 @@ True - - 30 - 550, 71 @@ -6939,26 +6975,20 @@ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + True 204, 23 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Export 1 - - 161, 19 - - - gboxCRC + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 3 @@ -6975,8 +7005,8 @@ TitleID High - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 21 System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -6984,14 +7014,11 @@ True - - E-mail - Game Title - - Other Application Info + + labArbit2 Set Back to Initial Settings @@ -7002,8 +7029,8 @@ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 128, 19 + + 74, 15 gboxNandSize @@ -7014,8 +7041,8 @@ Submission Info *** - - tabSubmitInfo + + 5 labTitleIDHi @@ -7023,14 +7050,11 @@ 5 - - gboxPurposeCard + + tboxSumSize - - 24, 11 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tabSubmitInfo ( @@ -7041,11 +7065,11 @@ 100, 21 - - Launch Control On DSi Menu + + aged 4 or older - - 200 + + True gridSDK @@ -7056,17 +7080,14 @@ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 - - - 43 + + File 4 Rating Pending - - 39, 15 + + 3 12 @@ -7080,20 +7101,20 @@ tboxTitleIDLo - + + tboxCompany2 + + 2 - - Information on this tab cannot be edited. If data errors exist, review the ROM's build settings. + + All ages - - 366, 161 + + Right - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 26, 315 + + User ID All ages @@ -7113,11 +7134,8 @@ gboxForeign - - True - - - 120, 140 + + 74, 19 labCaptionEx @@ -7125,8 +7143,8 @@ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - labSumSize + + gboxAccess System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7134,8 +7152,8 @@ True - - rPurposeDSiWare + + 3 colWarnCause @@ -7146,18 +7164,15 @@ USK - - tabCompanyInfo + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6, 20 + + Japanese True - - 9 - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -7173,29 +7188,29 @@ Purpose - - Production Game Card + + gboxParental Right - - Right + + 23, 163 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 22, 55 + + ESRB True - - 12 + + rPurposeDSiWare - - 3 + + 136, 15 False @@ -7215,56 +7230,44 @@ 14 - - $this - - - True + + gboxCRC 1 - - gboxExFlags + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - 4Kbit EEPROM + + 8 tabRomInfo - - tboxShared2Size4 - - - Size in NAND Memory + + tabSubmitInfo 100 - - 120, 52 - - - True + + labRomSize tboxFax2 - - gboxForeign + + Export error info to HTML file (Info applied current input) - - 4 + + 0 - - cboxIsInputPerson2 + + tboxTitleName - - 244, 14 + + labBracketL 36 @@ -7275,9 +7278,15 @@ True + + True + True + + True + True @@ -7290,9 +7299,6 @@ True - - True - 0, 0 @@ -7308,7 +7314,7 @@ True - - True + + Japanese \ No newline at end of file diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_deliv.cpp b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_deliv.cpp index f5ef7fe..0352b14 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_deliv.cpp +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_deliv.cpp @@ -93,22 +93,26 @@ void Form1::setDeliverableProperties(void) } // 用途 - //if( this->rUsageSale->Checked == true ) - //{ - // this->hDeliv->hUsage = this->rUsageSale->Text; - //} - //else if( this->rUsageSample->Checked == true ) - //{ - // this->hDeliv->hUsage = this->rUsageSample->Text; - //} - //else if( this->rUsageDst->Checked == true ) - //{ - // this->hDeliv->hUsage = this->rUsageDst->Text; - //} - //else if( this->rUsageOther->Checked == true ) - //{ - // this->hDeliv->hUsage = this->tboxUsageOther->Text; - //} + cli::array ^rbuts = gcnew cli::array + { + this->rPurposeCardProduction, + this->rPurposeCardDistribution, + this->rPurposeCardKiosk, + this->rPurposeDSiWare, + this->rPurposeDSStation, + this->rPurposeZone + }; + for each( System::Windows::Forms::RadioButton ^r in rbuts ) + { + if( r->Checked ) + { + this->hDeliv->hUsage = r->Text; + } + } + if( this->rPurposeOther->Checked ) + { + this->hDeliv->hUsage = this->rPurposeOther->Text + "(" + this->tboxPurposeOther->Text + ")"; + } // 会社情報 this->hDeliv->hCompany1 = this->tboxCompany1->Text + " " + this->tboxDepart1->Text; @@ -318,10 +322,10 @@ System::Boolean Form1::checkDeliverableForms(void) this->checkTextForm( this->tboxProductCode1Foreign->Text, "LabelProductCodeForeign" ); this->checkTextForm( this->tboxProductCode2Foreign1->Text,"LabelProductCodeForeign" ); } - //if( this->rUsageOther->Checked == true ) - //{ - // this->checkTextForm( this->tboxUsageOther->Text, "LabelUsage" ); - //} + if( this->rPurposeOther->Checked ) + { + this->checkTextForm( this->tboxPurposeOther->Text, "LabelUsage" ); + } // 会社情報 this->checkTextForm( this->tboxPerson1->Text, "LabelPerson1" ); diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_lang.cpp b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_lang.cpp index 107b1fa..8bf76e6 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_lang.cpp +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_lang.cpp @@ -467,6 +467,16 @@ void MasterEditorTWL::Form1::changeLanguage( System::String ^langname ) resources->ApplyResources(this->colWarnBegin, L"colWarnBegin"); resources->ApplyResources(this->colWarnEnd, L"colWarnEnd"); resources->ApplyResources(this->colWarnCause, L"colWarnCause"); + resources->ApplyResources(this->rPurposeCardProduction, L"rPurposeCardProduction"); + resources->ApplyResources(this->rPurposeCardDistribution, L"rPurposeCardDistribution"); + resources->ApplyResources(this->rPurposeCardKiosk, L"rPurposeCardKiosk"); + resources->ApplyResources(this->rPurposeDSiWare, L"rPurposeDSiWare"); + resources->ApplyResources(this->rPurposeDSStation, L"rPurposeDSStation"); + resources->ApplyResources(this->rPurposeZone, L"rPurposeZone"); + resources->ApplyResources(this->rPurposeOther, L"rPurposeOther"); + resources->ApplyResources(this->gboxPurposeCard, L"gboxPurposeCard"); + resources->ApplyResources(this->gboxPurposeNetwork, L"gboxPurposeNetwork"); + resources->ApplyResources(this->gboxPurpose, L"gboxPurpose"); resources->ApplyResources(this, L"$this"); // テキストボックスの表記を変更 diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_srl.cpp b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_srl.cpp index 595622c..99535a9 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_srl.cpp +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_srl.cpp @@ -277,6 +277,8 @@ void Form1::setSrlForms(void) this->maskBackupMemoryForms(); //// カードアプリのときにDSi Wareの販売カテゴリを自動的に「なし」にしておく //this->maskDLCategoryForms(); + // "用途"を絞る + this->maskPurposeForms(); } // setSrlForms() // ---------------------------------------------- diff --git a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_tmp.cpp b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_tmp.cpp index 8c615da..08fe563 100644 --- a/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_tmp.cpp +++ b/build/tools/MasterEditor/MasterEditorTWL/MasterEditorTWL/Form_tmp.cpp @@ -70,17 +70,38 @@ System::Void Form1::saveTmp( System::String ^filename ) MasterEditorTWL::appendXmlTag( doc, form, "SubmitWay", "Mail" ); } - //if( this->rUsageSale->Checked ) - // MasterEditorTWL::appendXmlTag( doc, form, "Purpose", "Sale" ); - //else if( this->rUsageSample->Checked ) - // MasterEditorTWL::appendXmlTag( doc, form, "Purpose", "Sample" ); - //else if( this->rUsageDst->Checked ) - // MasterEditorTWL::appendXmlTag( doc, form, "Purpose", "Dst" ); - //else if( this->rUsageOther->Checked ) - // MasterEditorTWL::appendXmlTag( doc, form, "Purpose", "Other" ); - //MasterEditorTWL::appendXmlTag( doc, form, "PurposeOther", this->tboxUsageOther->Text ); - //MasterEditorTWL::appendXmlTag( doc, form, "ReleaseDate", this->dateRelease->Value.ToString() ); - //MasterEditorTWL::appendXmlTag( doc, form, "SubmitDate", this->dateSubmit->Value.ToString() ); + // 用途 + cli::array ^rbuts = gcnew cli::array + { + this->rPurposeCardProduction, + this->rPurposeCardDistribution, + this->rPurposeCardKiosk, + this->rPurposeDSiWare, + this->rPurposeDSStation, + this->rPurposeZone, + this->rPurposeOther + }; + cli::array ^strs = gcnew cli::array + { + "CardProduction", + "CardDistribution", + "CardKiosk", + "DSiWare", + "DSStation", + "Zone", + "Other" + }; + int i; + for(i=0; i < rbuts->Length; i++ ) + { + if( rbuts[i]->Checked ) + { + MasterEditorTWL::appendXmlTag( doc, form, "Purpose", strs[i] ); + } + } + MasterEditorTWL::appendXmlTag( doc, form, "PurposeOther", this->tboxPurposeOther->Text ); + MasterEditorTWL::appendXmlTag( doc, form, "ReleaseDate", this->dateRelease->Value.ToString() ); + MasterEditorTWL::appendXmlTag( doc, form, "SubmitDate", this->dateSubmit->Value.ToString() ); //MasterEditorTWL::appendXmlTag( doc, form, "DLCategory", this->combDLCategory->SelectedIndex.ToString() ); //MasterEditorTWL::appendXmlTag( doc, form, "DLCategoryOther", this->tboxDLCategoryOther->Text ); @@ -194,16 +215,33 @@ void Form1::loadTmp( System::String ^filename ) strs = gcnew cli::array{"Hand","Mail","Internet"}; this->parseTmp( root, "/MasterEditorTWL/Form/SubmitWay", rbuts, strs ); - //rbuts = gcnew cli::array{this->rUsageSale, this->rUsageSample, this->rUsageDst, this->rUsageOther}; - //strs = gcnew cli::array{"Sale","Sample","Dst","Other"}; - //this->parseTmp( root, "/MasterEditorTWL/Form/Purpose", rbuts, strs ); - //this->tboxUsageOther->Enabled = false; - //this->tboxUsageOther->Clear(); - //if( this->rUsageOther->Checked ) - //{ - // this->tboxUsageOther->Enabled = true; - // this->parseTmp( root, "/MasterEditorTWL/Form/PurposeOther", this->tboxUsageOther ); - //} + // 用途 + rbuts = gcnew cli::array + { + this->rPurposeCardProduction, + this->rPurposeCardDistribution, + this->rPurposeCardKiosk, + this->rPurposeDSiWare, + this->rPurposeDSStation, + this->rPurposeZone, + this->rPurposeOther + }; + strs = gcnew cli::array + { + "CardProduction", + "CardDistribution", + "CardKiosk", + "DSiWare", + "DSStation", + "Zone", + "Other" + }; + this->parseTmp( root, "/MasterEditorTWL/Form/Purpose", rbuts, strs ); + if( this->rPurposeOther->Checked ) + { + this->tboxPurposeOther->Enabled = true; + this->parseTmp( root, "/MasterEditorTWL/Form/PurposeOther", this->tboxPurposeOther ); + } this->parseTmp( root, "/MasterEditorTWL/Form/ReleaseForeign", this->cboxReleaseForeign ); this->tboxProductNameForeign->Enabled = false;