Ejemplo n.º 1
0
        private void btnHowManyPool_Click(object sender, EventArgs e)
        {
            ListViewItem lvi = lviAllWords.FocusedItem;

            if (lvi != null)
            {
                int count = _dictionaryBLL.CountWordByPoolID((int)lvi.Tag, firstDate, lastDate);
                MessageBox.Show(count.ToString());
            }
        }