Example #1
0
File: Stage2.cs Project: kkoka/T_I
        private void btn_Validation1_Click(object sender, EventArgs e)
        {
            SQLFunction sqlfunc = new SQLFunction();

            if (sqlfunc.DisplayTitleCount_Val1(str_Company) > 0)
            {
                ProgressNotification frm2 = new ProgressNotification(str_Company, "Validation1");
                frm2.Show();

                RefreshPage();
            }
            else
            {
                MessageBox.Show("No Titles Found in the reports to Validate.");
            }


            //    bool result = true;
            //SQLFunction sqlfnction = new SQLFunction();
            //result = sqlfnction.Execute_ValidationProc(str_Company, "01");
        }
Example #2
0
File: Stage2.cs Project: kkoka/T_I
        private void DisplayTitleCount_Val1()
        {
            SQLFunction sqlfnction = new SQLFunction();

            sqlfnction.DisplayTitleCount_Val1(str_Company, lbl_Val1, lbl_Message);
        }