메일 전송 폼 추가완료

This commit is contained in:
Chikyun
2019-03-03 22:17:19 +09:00
parent 78456a7462
commit 671491636f
14 changed files with 2301 additions and 144 deletions

View File

@@ -448,6 +448,10 @@ namespace FPJ0000
}
private void btEdit_Click(object sender, EventArgs e)
{
DataEdit();
}
void DataEdit()
{
var drv = this.bs.Current as DataRowView;
if (drv == null) return;
@@ -455,5 +459,10 @@ namespace FPJ0000
var f = new fProjectData(dr);
f.ShowDialog();
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
DataEdit();
}
}
}