Beispiel #1
0
        private void txtCauta_KeyUpPersonalizat(object sender, KeyEventArgs e)
        {
            this.btnValidare.Visible = false;
            if (!string.IsNullOrEmpty(txtCauta.Text))
            {
                this.btnInainte.Visible  = true;
                this.btnInapoi.Visible   = true;
                this.lblRezultat.Visible = true;

                this.lRezultateCautare = lMembriComuni.Cauta(txtCauta.Text);
                if (lRezultateCautare.Count == 0)
                {
                    this.lblRezultat.Text = IHMUtile.getText(1290);// "Textul cautat nu a fost gasit";
                }
                else
                {
                    this.lblRezultat.Text = string.Format(IHMUtile.getText(1291), 1, lRezultateCautare.Count); // "1 din {0}"
                    this.lPozitieActualaListaRezultate = 0;
                    GenereazaEvenimentSchimbarePozitie(0);
                    this.btnValidare.Visible = this.lMembriComuni.AcceptaActiunea(EnumTipActiuneControl.ValidareCautare);
                }
            }
            else
            {
                this.btnInainte.Visible  = false;
                this.btnInapoi.Visible   = false;
                this.lblRezultat.Visible = false;
            }
        }