Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
        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);
        }
Exemplo n.º 3
0
        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);
        }
Exemplo n.º 4
0
        private void справкаѕо«аполнениюToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportsWordClass repFilling = new ReportsWordClass();

            repFilling.ReportFilling();
        }