Escape sequences are now a problem of the past

This commit is contained in:
2021-11-29 20:41:24 +01:00
parent 151fc22069
commit b58a289561
3 changed files with 22 additions and 51 deletions

View File

@@ -1,10 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace BMGEditor
@@ -99,15 +94,6 @@ namespace BMGEditor
private void sortBtn_Click(object sender, EventArgs e)
{
//foreach (DataGridViewCell cell in dgvBcsv.Columns[0]) { }
/*for (int i = 0; i < dgvBcsv.RowCount; i++)
{
DataGridViewCell curCell = dgvBcsv.Rows[i].Cells[0];
DataGridViewCell nextCell = dgvBcsv.Rows[i+1].Cells[0];
}*/
dgvBcsv.Sort(new RowCompare(SortOrder.Ascending));
}

View File

@@ -55,7 +55,7 @@ namespace BMGEditor
return;
}
openBcsvEditorBtn.Enabled = true;
//openBcsvEditorBtn.Enabled = true;
openTextEditorBtn.Enabled = true;
closeFileBtn.Enabled = true;
arcOpen = true;