00001 namespace Mcs.Epm.MicrosoftProject.mpFx.WinForms
00002 {
00003 partial class EditNewCustomFieldForm
00004 {
00005
00006
00007
00008 private System.ComponentModel.IContainer components = null;
00009
00010
00011
00012
00013
00014 protected override void Dispose(bool disposing)
00015 {
00016 if (disposing && (components != null))
00017 {
00018 components.Dispose();
00019 }
00020 base.Dispose(disposing);
00021 }
00022
00023 #region Windows Form Designer generated code
00024
00025
00026
00027
00028
00029 private void InitializeComponent()
00030 {
00031 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditNewCustomFieldForm));
00032 this.fieldNameLabel = new System.Windows.Forms.Label();
00033 this.nameTextBox = new System.Windows.Forms.TextBox();
00034 this.entityLabel = new System.Windows.Forms.Label();
00035 this.entityList = new System.Windows.Forms.ComboBox();
00036 this.typeLabel = new System.Windows.Forms.Label();
00037 this.typeList = new System.Windows.Forms.ComboBox();
00038 this.customAttributesGroupBox = new System.Windows.Forms.GroupBox();
00039 this.editCustomAttributesButton = new System.Windows.Forms.Button();
00040 this.formulaOption = new System.Windows.Forms.RadioButton();
00041 this.lookupTableOption = new System.Windows.Forms.RadioButton();
00042 this.noneOption = new System.Windows.Forms.RadioButton();
00043 this.valuesGroupBox = new System.Windows.Forms.GroupBox();
00044 this.editGraphicalIndicators = new System.Windows.Forms.Button();
00045 this.grapicalIndicatorsOption = new System.Windows.Forms.RadioButton();
00046 this.dataOption = new System.Windows.Forms.RadioButton();
00047 this.requiredCheckBox = new System.Windows.Forms.CheckBox();
00048 this.okButton = new System.Windows.Forms.Button();
00049 this.cancelButton = new System.Windows.Forms.Button();
00050 this.calculationForSummaryRowsGroupBox = new System.Windows.Forms.GroupBox();
00051 this.summaryRowsCalcRollupOption = new System.Windows.Forms.RadioButton();
00052 this.summaryRowsCalcNoneOption = new System.Windows.Forms.RadioButton();
00053 this.summaryRowsCalcFormulaOption = new System.Windows.Forms.RadioButton();
00054 this.calculationForAssignmentRowsGroupBox = new System.Windows.Forms.GroupBox();
00055 this.assignmentRowsCalcRollDownOption = new System.Windows.Forms.RadioButton();
00056 this.assignmentRowsCalcNoneOption = new System.Windows.Forms.RadioButton();
00057 this.customAttributesGroupBox.SuspendLayout();
00058 this.valuesGroupBox.SuspendLayout();
00059 this.calculationForSummaryRowsGroupBox.SuspendLayout();
00060 this.calculationForAssignmentRowsGroupBox.SuspendLayout();
00061 this.SuspendLayout();
00062
00063
00064
00065 this.fieldNameLabel.AutoSize = true;
00066 this.fieldNameLabel.Location = new System.Drawing.Point(13, 13);
00067 this.fieldNameLabel.Name = "fieldNameLabel";
00068 this.fieldNameLabel.Size = new System.Drawing.Size(35, 13);
00069 this.fieldNameLabel.TabIndex = 0;
00070 this.fieldNameLabel.Text = "Name";
00071
00072
00073
00074 this.nameTextBox.Location = new System.Drawing.Point(16, 30);
00075 this.nameTextBox.Name = "nameTextBox";
00076 this.nameTextBox.Size = new System.Drawing.Size(318, 20);
00077 this.nameTextBox.TabIndex = 1;
00078 this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
00079
00080
00081
00082 this.entityLabel.AutoSize = true;
00083 this.entityLabel.Location = new System.Drawing.Point(13, 57);
00084 this.entityLabel.Name = "entityLabel";
00085 this.entityLabel.Size = new System.Drawing.Size(33, 13);
00086 this.entityLabel.TabIndex = 2;
00087 this.entityLabel.Text = "Entity";
00088
00089
00090
00091 this.entityList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
00092 this.entityList.FormattingEnabled = true;
00093 this.entityList.Location = new System.Drawing.Point(16, 74);
00094 this.entityList.Name = "entityList";
00095 this.entityList.Size = new System.Drawing.Size(318, 21);
00096 this.entityList.TabIndex = 3;
00097 this.entityList.SelectedIndexChanged += new System.EventHandler(this.entityList_SelectedIndexChanged);
00098
00099
00100
00101 this.typeLabel.AutoSize = true;
00102 this.typeLabel.Location = new System.Drawing.Point(13, 102);
00103 this.typeLabel.Name = "typeLabel";
00104 this.typeLabel.Size = new System.Drawing.Size(31, 13);
00105 this.typeLabel.TabIndex = 4;
00106 this.typeLabel.Text = "Type";
00107
00108
00109
00110 this.typeList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
00111 this.typeList.FormattingEnabled = true;
00112 this.typeList.Location = new System.Drawing.Point(16, 118);
00113 this.typeList.Name = "typeList";
00114 this.typeList.Size = new System.Drawing.Size(318, 21);
00115 this.typeList.TabIndex = 5;
00116 this.typeList.SelectedIndexChanged += new System.EventHandler(this.typeList_SelectedIndexChanged);
00117
00118
00119
00120 this.customAttributesGroupBox.Controls.Add(this.editCustomAttributesButton);
00121 this.customAttributesGroupBox.Controls.Add(this.formulaOption);
00122 this.customAttributesGroupBox.Controls.Add(this.lookupTableOption);
00123 this.customAttributesGroupBox.Controls.Add(this.noneOption);
00124 this.customAttributesGroupBox.Location = new System.Drawing.Point(16, 168);
00125 this.customAttributesGroupBox.Name = "customAttributesGroupBox";
00126 this.customAttributesGroupBox.Size = new System.Drawing.Size(318, 91);
00127 this.customAttributesGroupBox.TabIndex = 6;
00128 this.customAttributesGroupBox.TabStop = false;
00129 this.customAttributesGroupBox.Text = " Custom Attributes ";
00130
00131
00132
00133 this.editCustomAttributesButton.Enabled = false;
00134 this.editCustomAttributesButton.Location = new System.Drawing.Point(194, 59);
00135 this.editCustomAttributesButton.Name = "editCustomAttributesButton";
00136 this.editCustomAttributesButton.Size = new System.Drawing.Size(118, 23);
00137 this.editCustomAttributesButton.TabIndex = 3;
00138 this.editCustomAttributesButton.Text = "&Edit Custom Attributes";
00139 this.editCustomAttributesButton.UseVisualStyleBackColor = true;
00140 this.editCustomAttributesButton.Click += new System.EventHandler(this.editCustomAttributesButton_Click);
00141
00142
00143
00144 this.formulaOption.AutoSize = true;
00145 this.formulaOption.Location = new System.Drawing.Point(17, 65);
00146 this.formulaOption.Name = "formulaOption";
00147 this.formulaOption.Size = new System.Drawing.Size(62, 17);
00148 this.formulaOption.TabIndex = 2;
00149 this.formulaOption.Text = "&Formula";
00150 this.formulaOption.UseVisualStyleBackColor = true;
00151 this.formulaOption.CheckedChanged += new System.EventHandler(this.formulaOption_CheckedChanged);
00152
00153
00154
00155 this.lookupTableOption.AutoSize = true;
00156 this.lookupTableOption.Location = new System.Drawing.Point(17, 42);
00157 this.lookupTableOption.Name = "lookupTableOption";
00158 this.lookupTableOption.Size = new System.Drawing.Size(91, 17);
00159 this.lookupTableOption.TabIndex = 1;
00160 this.lookupTableOption.Text = "&Lookup Table";
00161 this.lookupTableOption.UseVisualStyleBackColor = true;
00162 this.lookupTableOption.CheckedChanged += new System.EventHandler(this.lookupTableOption_CheckedChanged);
00163
00164
00165
00166 this.noneOption.AutoSize = true;
00167 this.noneOption.Checked = true;
00168 this.noneOption.Location = new System.Drawing.Point(17, 19);
00169 this.noneOption.Name = "noneOption";
00170 this.noneOption.Size = new System.Drawing.Size(51, 17);
00171 this.noneOption.TabIndex = 0;
00172 this.noneOption.TabStop = true;
00173 this.noneOption.Text = "&None";
00174 this.noneOption.UseVisualStyleBackColor = true;
00175 this.noneOption.CheckedChanged += new System.EventHandler(this.noneOption_CheckedChanged);
00176
00177
00178
00179 this.valuesGroupBox.Controls.Add(this.editGraphicalIndicators);
00180 this.valuesGroupBox.Controls.Add(this.grapicalIndicatorsOption);
00181 this.valuesGroupBox.Controls.Add(this.dataOption);
00182 this.valuesGroupBox.Location = new System.Drawing.Point(16, 439);
00183 this.valuesGroupBox.Name = "valuesGroupBox";
00184 this.valuesGroupBox.Size = new System.Drawing.Size(318, 70);
00185 this.valuesGroupBox.TabIndex = 7;
00186 this.valuesGroupBox.TabStop = false;
00187 this.valuesGroupBox.Text = "Vales to Display ";
00188
00189
00190
00191 this.editGraphicalIndicators.Enabled = false;
00192 this.editGraphicalIndicators.Location = new System.Drawing.Point(167, 36);
00193 this.editGraphicalIndicators.Name = "editGraphicalIndicators";
00194 this.editGraphicalIndicators.Size = new System.Drawing.Size(145, 23);
00195 this.editGraphicalIndicators.TabIndex = 3;
00196 this.editGraphicalIndicators.Text = "Edit &Graphical Indicators";
00197 this.editGraphicalIndicators.UseVisualStyleBackColor = true;
00198 this.editGraphicalIndicators.Click += new System.EventHandler(this.editGraphicalIndicators_Click);
00199
00200
00201
00202 this.grapicalIndicatorsOption.AutoSize = true;
00203 this.grapicalIndicatorsOption.Location = new System.Drawing.Point(17, 42);
00204 this.grapicalIndicatorsOption.Name = "grapicalIndicatorsOption";
00205 this.grapicalIndicatorsOption.Size = new System.Drawing.Size(119, 17);
00206 this.grapicalIndicatorsOption.TabIndex = 2;
00207 this.grapicalIndicatorsOption.Text = "Graphical Indicators";
00208 this.grapicalIndicatorsOption.UseVisualStyleBackColor = true;
00209 this.grapicalIndicatorsOption.CheckedChanged += new System.EventHandler(this.grapicalIndicatorsOption_CheckedChanged);
00210
00211
00212
00213 this.dataOption.AutoSize = true;
00214 this.dataOption.Checked = true;
00215 this.dataOption.Location = new System.Drawing.Point(17, 19);
00216 this.dataOption.Name = "dataOption";
00217 this.dataOption.Size = new System.Drawing.Size(48, 17);
00218 this.dataOption.TabIndex = 0;
00219 this.dataOption.TabStop = true;
00220 this.dataOption.Text = "&Data";
00221 this.dataOption.UseVisualStyleBackColor = true;
00222 this.dataOption.CheckedChanged += new System.EventHandler(this.dataOption_CheckedChanged);
00223
00224
00225
00226 this.requiredCheckBox.AutoSize = true;
00227 this.requiredCheckBox.Location = new System.Drawing.Point(16, 145);
00228 this.requiredCheckBox.Name = "requiredCheckBox";
00229 this.requiredCheckBox.Size = new System.Drawing.Size(167, 17);
00230 this.requiredCheckBox.TabIndex = 8;
00231 this.requiredCheckBox.Text = "&A value is required for this feld";
00232 this.requiredCheckBox.UseVisualStyleBackColor = true;
00233 this.requiredCheckBox.CheckedChanged += new System.EventHandler(this.requiredCheckBox_CheckedChanged);
00234
00235
00236
00237 this.okButton.Location = new System.Drawing.Point(178, 520);
00238 this.okButton.Name = "okButton";
00239 this.okButton.Size = new System.Drawing.Size(75, 23);
00240 this.okButton.TabIndex = 9;
00241 this.okButton.Text = "&OK";
00242 this.okButton.UseVisualStyleBackColor = true;
00243 this.okButton.Click += new System.EventHandler(this.okButton_Click);
00244
00245
00246
00247 this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
00248 this.cancelButton.Location = new System.Drawing.Point(259, 520);
00249 this.cancelButton.Name = "cancelButton";
00250 this.cancelButton.Size = new System.Drawing.Size(75, 23);
00251 this.cancelButton.TabIndex = 10;
00252 this.cancelButton.Text = "&Cancel";
00253 this.cancelButton.UseVisualStyleBackColor = true;
00254 this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
00255
00256
00257
00258 this.calculationForSummaryRowsGroupBox.Controls.Add(this.summaryRowsCalcFormulaOption);
00259 this.calculationForSummaryRowsGroupBox.Controls.Add(this.summaryRowsCalcRollupOption);
00260 this.calculationForSummaryRowsGroupBox.Controls.Add(this.summaryRowsCalcNoneOption);
00261 this.calculationForSummaryRowsGroupBox.Location = new System.Drawing.Point(16, 265);
00262 this.calculationForSummaryRowsGroupBox.Name = "calculationForSummaryRowsGroupBox";
00263 this.calculationForSummaryRowsGroupBox.Size = new System.Drawing.Size(318, 92);
00264 this.calculationForSummaryRowsGroupBox.TabIndex = 8;
00265 this.calculationForSummaryRowsGroupBox.TabStop = false;
00266 this.calculationForSummaryRowsGroupBox.Text = "Calculation for Summary Rows";
00267
00268
00269
00270 this.summaryRowsCalcRollupOption.AutoSize = true;
00271 this.summaryRowsCalcRollupOption.Location = new System.Drawing.Point(17, 42);
00272 this.summaryRowsCalcRollupOption.Name = "summaryRowsCalcRollupOption";
00273 this.summaryRowsCalcRollupOption.Size = new System.Drawing.Size(55, 17);
00274 this.summaryRowsCalcRollupOption.TabIndex = 2;
00275 this.summaryRowsCalcRollupOption.Text = "&Rollup";
00276 this.summaryRowsCalcRollupOption.UseVisualStyleBackColor = true;
00277
00278
00279
00280 this.summaryRowsCalcNoneOption.AutoSize = true;
00281 this.summaryRowsCalcNoneOption.Checked = true;
00282 this.summaryRowsCalcNoneOption.Location = new System.Drawing.Point(17, 19);
00283 this.summaryRowsCalcNoneOption.Name = "summaryRowsCalcNoneOption";
00284 this.summaryRowsCalcNoneOption.Size = new System.Drawing.Size(51, 17);
00285 this.summaryRowsCalcNoneOption.TabIndex = 0;
00286 this.summaryRowsCalcNoneOption.TabStop = true;
00287 this.summaryRowsCalcNoneOption.Text = "N&one";
00288 this.summaryRowsCalcNoneOption.UseVisualStyleBackColor = true;
00289
00290
00291
00292 this.summaryRowsCalcFormulaOption.AutoSize = true;
00293 this.summaryRowsCalcFormulaOption.Location = new System.Drawing.Point(17, 67);
00294 this.summaryRowsCalcFormulaOption.Name = "summaryRowsCalcFormulaOption";
00295 this.summaryRowsCalcFormulaOption.Size = new System.Drawing.Size(84, 17);
00296 this.summaryRowsCalcFormulaOption.TabIndex = 3;
00297 this.summaryRowsCalcFormulaOption.Text = "&Use Formula";
00298 this.summaryRowsCalcFormulaOption.UseVisualStyleBackColor = true;
00299
00300
00301
00302 this.calculationForAssignmentRowsGroupBox.Controls.Add(this.assignmentRowsCalcRollDownOption);
00303 this.calculationForAssignmentRowsGroupBox.Controls.Add(this.assignmentRowsCalcNoneOption);
00304 this.calculationForAssignmentRowsGroupBox.Location = new System.Drawing.Point(16, 363);
00305 this.calculationForAssignmentRowsGroupBox.Name = "calculationForAssignmentRowsGroupBox";
00306 this.calculationForAssignmentRowsGroupBox.Size = new System.Drawing.Size(318, 70);
00307 this.calculationForAssignmentRowsGroupBox.TabIndex = 8;
00308 this.calculationForAssignmentRowsGroupBox.TabStop = false;
00309 this.calculationForAssignmentRowsGroupBox.Text = "Calculation for Assignment Rows";
00310
00311
00312
00313 this.assignmentRowsCalcRollDownOption.AutoSize = true;
00314 this.assignmentRowsCalcRollDownOption.Location = new System.Drawing.Point(17, 42);
00315 this.assignmentRowsCalcRollDownOption.Name = "assignmentRowsCalcRollDownOption";
00316 this.assignmentRowsCalcRollDownOption.Size = new System.Drawing.Size(197, 17);
00317 this.assignmentRowsCalcRollDownOption.TabIndex = 2;
00318 this.assignmentRowsCalcRollDownOption.Text = "&Roll down, unless manually specified";
00319 this.assignmentRowsCalcRollDownOption.UseVisualStyleBackColor = true;
00320
00321
00322
00323 this.assignmentRowsCalcNoneOption.AutoSize = true;
00324 this.assignmentRowsCalcNoneOption.Checked = true;
00325 this.assignmentRowsCalcNoneOption.Location = new System.Drawing.Point(17, 19);
00326 this.assignmentRowsCalcNoneOption.Name = "assignmentRowsCalcNoneOption";
00327 this.assignmentRowsCalcNoneOption.Size = new System.Drawing.Size(51, 17);
00328 this.assignmentRowsCalcNoneOption.TabIndex = 0;
00329 this.assignmentRowsCalcNoneOption.TabStop = true;
00330 this.assignmentRowsCalcNoneOption.Text = "No&ne";
00331 this.assignmentRowsCalcNoneOption.UseVisualStyleBackColor = true;
00332
00333
00334
00335 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00336 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00337 this.CancelButton = this.cancelButton;
00338 this.ClientSize = new System.Drawing.Size(350, 557);
00339 this.Controls.Add(this.calculationForAssignmentRowsGroupBox);
00340 this.Controls.Add(this.calculationForSummaryRowsGroupBox);
00341 this.Controls.Add(this.cancelButton);
00342 this.Controls.Add(this.okButton);
00343 this.Controls.Add(this.requiredCheckBox);
00344 this.Controls.Add(this.valuesGroupBox);
00345 this.Controls.Add(this.customAttributesGroupBox);
00346 this.Controls.Add(this.typeList);
00347 this.Controls.Add(this.typeLabel);
00348 this.Controls.Add(this.entityList);
00349 this.Controls.Add(this.entityLabel);
00350 this.Controls.Add(this.nameTextBox);
00351 this.Controls.Add(this.fieldNameLabel);
00352 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
00353 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
00354 this.MaximizeBox = false;
00355 this.MinimizeBox = false;
00356 this.Name = "EditNewCustomFieldForm";
00357 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
00358 this.Text = "Custom Field";
00359 this.customAttributesGroupBox.ResumeLayout(false);
00360 this.customAttributesGroupBox.PerformLayout();
00361 this.valuesGroupBox.ResumeLayout(false);
00362 this.valuesGroupBox.PerformLayout();
00363 this.calculationForSummaryRowsGroupBox.ResumeLayout(false);
00364 this.calculationForSummaryRowsGroupBox.PerformLayout();
00365 this.calculationForAssignmentRowsGroupBox.ResumeLayout(false);
00366 this.calculationForAssignmentRowsGroupBox.PerformLayout();
00367 this.ResumeLayout(false);
00368 this.PerformLayout();
00369
00370 }
00371
00372 #endregion
00373
00374 private System.Windows.Forms.Label fieldNameLabel;
00375 private System.Windows.Forms.TextBox nameTextBox;
00376 private System.Windows.Forms.Label entityLabel;
00377 private System.Windows.Forms.ComboBox entityList;
00378 private System.Windows.Forms.Label typeLabel;
00379 private System.Windows.Forms.ComboBox typeList;
00380 private System.Windows.Forms.GroupBox customAttributesGroupBox;
00381 private System.Windows.Forms.Button editCustomAttributesButton;
00382 private System.Windows.Forms.RadioButton formulaOption;
00383 private System.Windows.Forms.RadioButton lookupTableOption;
00384 private System.Windows.Forms.RadioButton noneOption;
00385 private System.Windows.Forms.GroupBox valuesGroupBox;
00386 private System.Windows.Forms.Button editGraphicalIndicators;
00387 private System.Windows.Forms.RadioButton grapicalIndicatorsOption;
00388 private System.Windows.Forms.RadioButton dataOption;
00389 private System.Windows.Forms.CheckBox requiredCheckBox;
00390 private System.Windows.Forms.Button okButton;
00391 private System.Windows.Forms.Button cancelButton;
00392 private System.Windows.Forms.GroupBox calculationForSummaryRowsGroupBox;
00393 private System.Windows.Forms.RadioButton summaryRowsCalcFormulaOption;
00394 private System.Windows.Forms.RadioButton summaryRowsCalcRollupOption;
00395 private System.Windows.Forms.RadioButton summaryRowsCalcNoneOption;
00396 private System.Windows.Forms.GroupBox calculationForAssignmentRowsGroupBox;
00397 private System.Windows.Forms.RadioButton assignmentRowsCalcRollDownOption;
00398 private System.Windows.Forms.RadioButton assignmentRowsCalcNoneOption;
00399 }
00400 }