protected void select_guard_bank_details_mapping_search()
        {
            DataTable dt = Salary_scales.select_guard_bank_details_mapping_search("select_guard_bank_details_mapping_search", this.cbo_branch_search.Text, this.txt_guard_number_search.Text);

            if (dt.Rows.Count != 0)
            {
                this.gdv_guards.DataSource = dt;
                this.gdv_guards.DefaultCellStyle.SelectionBackColor       = Color.White;
                this.gdv_guards.DefaultCellStyle.SelectionForeColor       = Color.Black;
                this.gdv_guards.RowsDefaultCellStyle.BackColor            = Color.LightGray;
                this.gdv_guards.AlternatingRowsDefaultCellStyle.BackColor = Color.Beige;
                this.gdv_guards.ColumnHeadersDefaultCellStyle.ForeColor   = Color.White;
                this.gdv_guards.ColumnHeadersDefaultCellStyle.BackColor   = Color.Black;
                this.gdv_guards.RowHeadersDefaultCellStyle.BackColor      = Color.Black;
                this.gdv_guards.DefaultCellStyle.SelectionBackColor       = Color.White;
                this.gdv_guards.DefaultCellStyle.SelectionForeColor       = Color.Black;
            }
        }