Exemplo n.º 1
0
        private void PreviousInfoButton_Click(object sender, EventArgs e)
        {
            DetailsChangeTitleForm DFTF = new DetailsChangeTitleForm(PreviousID, CurrentID, false, this.ReadOnly);

            DFTF.ShowDialog();

            LoadCurrent(CurrentID);
        }
Exemplo n.º 2
0
        private void NextInfoButton_Click(object sender, EventArgs e)
        {
            DetailsChangeTitleForm DFTF = new DetailsChangeTitleForm(CurrentID, NextID, true, this.ReadOnly);

            DFTF.ShowDialog();

            LoadCurrent(CurrentID);
        }