Enhanced: rename a method name for clarification

Enhanced: convert 16-32 bit link data at procedure level
Enhanced: convert 16-32 bit link data at procedure level.
This commit is contained in:
2016-05-12 12:48:34 +00:00
parent 1934a6b5e9
commit 15f3b2ce09
5 changed files with 90 additions and 25 deletions

View File

@@ -30,7 +30,7 @@
{
this.rbCreateNew = new System.Windows.Forms.RadioButton();
this.rbLinkToExisting = new System.Windows.Forms.RadioButton();
this.cbUnlinkEnhancedItems = new System.Windows.Forms.ComboBox();
this.cbUnlinkedEnhancedItems = new System.Windows.Forms.ComboBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
@@ -59,14 +59,14 @@
this.rbLinkToExisting.UseVisualStyleBackColor = true;
this.rbLinkToExisting.CheckedChanged += new System.EventHandler(this.rbLinkToExisting_CheckedChanged);
//
// cbUnlinkEnhancedItems
// cbUnlinkedEnhancedItems
//
this.cbUnlinkEnhancedItems.FormattingEnabled = true;
this.cbUnlinkEnhancedItems.Location = new System.Drawing.Point(57, 102);
this.cbUnlinkEnhancedItems.Name = "cbUnlinkEnhancedItems";
this.cbUnlinkEnhancedItems.Size = new System.Drawing.Size(506, 24);
this.cbUnlinkEnhancedItems.TabIndex = 2;
this.cbUnlinkEnhancedItems.SelectedIndexChanged += new System.EventHandler(this.cbUnlinkEnhancedItems_SelectedIndexChanged);
this.cbUnlinkedEnhancedItems.FormattingEnabled = true;
this.cbUnlinkedEnhancedItems.Location = new System.Drawing.Point(57, 102);
this.cbUnlinkedEnhancedItems.Name = "cbUnlinkedEnhancedItems";
this.cbUnlinkedEnhancedItems.Size = new System.Drawing.Size(506, 24);
this.cbUnlinkedEnhancedItems.TabIndex = 2;
this.cbUnlinkedEnhancedItems.SelectedIndexChanged += new System.EventHandler(this.cbUnlinkedEnhancedItems_SelectedIndexChanged);
//
// btnOK
//
@@ -96,7 +96,7 @@
this.ClientSize = new System.Drawing.Size(612, 242);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.cbUnlinkEnhancedItems);
this.Controls.Add(this.cbUnlinkedEnhancedItems);
this.Controls.Add(this.rbLinkToExisting);
this.Controls.Add(this.rbCreateNew);
this.Name = "dlgEnhMissingItem";
@@ -110,7 +110,7 @@
private System.Windows.Forms.RadioButton rbCreateNew;
private System.Windows.Forms.RadioButton rbLinkToExisting;
private System.Windows.Forms.ComboBox cbUnlinkEnhancedItems;
private System.Windows.Forms.ComboBox cbUnlinkedEnhancedItems;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
}