private void tsmiДневникИВРWord_Click(object sender, EventArgs e) { if (((DataView)dgListPerson.DataSource).Count == 0) { return; } int RowIndex = 0; RowIndex = dgListPerson.CurrentRow.Index; DataRow row = ((DataView)dgListPerson.DataSource)[RowIndex].Row; ReportsWordClass rw = new ReportsWordClass(); rw.IVRJournal(row); }
private void произвольныеДокументывсеToolStripMenuItem_Click(object sender, EventArgs e) { if (((DataView)dgListPerson.DataSource).Count == 0) { return; } int RowIndex = 0; RowIndex = dgListPerson.CurrentRow.Index; DataRow row = ((DataView)dgListPerson.DataSource)[RowIndex].Row; ReportsWordClass rw = new ReportsWordClass(); rw.IVRDoc(row); }
private void tsmiСправкаОПоощренияхИВзысканияхВWord_Click(object sender, EventArgs e) { if (((DataView)dgListPerson.DataSource).Count == 0) { return; } int RowIndex = 0; RowIndex = dgListPerson.CurrentRow.Index; DataRow row = ((DataView)dgListPerson.DataSource)[RowIndex].Row; ReportsWordClass rw = new ReportsWordClass(); rw.BonusAndPenalty(row); }
private void справкаѕо«аполнениюToolStripMenuItem_Click(object sender, EventArgs e) { ReportsWordClass repFilling = new ReportsWordClass(); repFilling.ReportFilling(); }