Exemplo n.º 1
0
        private void Button2_Click(object sender, EventArgs e)
        {
            FStep5Dialog st6 = new FStep5Dialog();

            this.Hide();
            st6.ShowDialog();
        }
Exemplo n.º 2
0
        private void Button3_Click(object sender, EventArgs e)
        {
            String month = comboBox1.SelectedItem.ToString();
            String year  = comboBox2.SelectedItem.ToString();

            this.mData = year + "-" + month + '-' + "01";
            AppUtilities.CreateOrUpdateDict("step4", this.mData);
            FStep5Dialog st5 = new FStep5Dialog();

            this.Hide();
            st5.ShowDialog();
        }