RegName
/trunk/RegName/AboutForm.Designer.cs |
@@ -77,7 +77,7 @@ |
this.MinimizeBox = false; |
this.MinimumSize = new System.Drawing.Size(442, 218); |
this.Name = "AboutForm"; |
this.Text = "About"; |
this.Text = "RegName: About"; |
this.Shown += new System.EventHandler(this.AboutForm_Shown); |
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); |
this.ResumeLayout(false); |
/trunk/RegName/MainForm.cs |
@@ -389,7 +389,6 @@ |
dataGridView2.Rows.Clear(); |
|
var sequence = textBox3.Text; |
var sequenceLength = sequence.Length; |
foreach (DataGridViewRow replaceRow in dataGridView1.Rows) |
{ |
var fileName = (string) replaceRow.Cells[0].Value; |
@@ -417,7 +416,7 @@ |
fileName = _expression.Replace((string) modifyRow.Cells[0].Value, textBox1.Text); |
} |
|
if (sequenceLength != 0) |
if (sequence.Length != 0) |
{ |
fileName = fileName.Replace("{seq}", sequence); |
|