Dynamic listbox with value range

Asked

Viewed 126 times

0

My problem is that I can treat my listbox where I am doing a "value range" in my system.

I need it not to let codebehind add a value that is contained in the value range.. Ex: 0-10 has been added, now I can’t let it add 9-20 as 9 is contained in track 0-10..

How can I proceed? See attached images of the system and its lines of code.

inserir a descrição da imagem aqui

protected void btnAdicionarGastos_Click(object sender, EventArgs e)
                {
                    if (Tratar.Int(txtGastosDe.Value) <= Tratar.Int(txtGastosAte.Value))
                    {
                        string gasto = txtGastosDe.Value + " - " + txtGastosAte.Value;
                        if (!string.IsNullOrEmpty(gasto))
                        {
                            DataTable dt = new DataTable("dxlstGastos");
                            if (lstGastos.Visible == false)
                            {
                                lstGastos.Visible = true;
                                btnRemoverGastos.Visible = true;
                            }
                            if (!string.IsNullOrEmpty(txtGastosDe.Value) && !string.IsNullOrEmpty(txtGastosAte.Value))
                            {
                                if (!lstGastos.Items.Contains(lstGastos.Items.FindByText(gasto)))
                                {
                                    dt.Columns.Add("GASTOS");
                                    foreach (ListItem item in lstGastos.Items)
                                    {
                                        DataRow dr;
                                        dr = dt.NewRow();
                                        dr["GASTOS"] = item.Value;
                                        dt.Rows.Add(dr);
                                    }
                                    DataRow row = dt.NewRow();
                                    row.BeginEdit();
                                    row["GASTOS"] = gasto;
                                    row.EndEdit();
                                    dt.Rows.InsertAt(row, 0);
                                    dt.AcceptChanges();

                                    lstGastos.DataSource = dt;
                                    lstGastos.DataTextField = "GASTOS";
                                    lstGastos.DataBind();
                                }
                            }
                        }
                        else
                        {
                            Alerta("Não insira valores em branco.");
                        }
                    }
                    else
                    {
                        Alerta("Por favor, insira valores finais maiores que os iniciais.");
                    }
                }

1 answer

0


I replied as follows:

protected void btnAdicionarGastos_Click(object sender, EventArgs e)
        {
            if (Tratar.Int(txtGastosDe.Value) <= Tratar.Int(txtGastosAte.Value))
            {
                string gasto = txtGastosDe.Value + " - " + txtGastosAte.Value;
                if (!string.IsNullOrEmpty(gasto))
                {
                    foreach (ListItem item in lstGastos.Items)
                    {
                        string[] itm = Tratar.String(item.Value.Replace("-", ",")).Split(new char[] { ',' });
                        int valorinicial = Tratar.Int(itm[0], 0);
                        int valorfinal = Tratar.Int(itm[1], 0);
                        int gastode = Tratar.Int(txtGastosDe.Value, 0);
                        int gastoate = Tratar.Int(txtGastosAte.Value, 0);
                        if ((gastode <= valorinicial && gastoate >= valorfinal) || (gastoate >= valorinicial && gastoate <= valorfinal))
                        {
                            Alerta("Valores foram encontrados no intervalo entre as faixas");
                            return;
                        }
                        else if ((gastode >= valorinicial && gastode <= valorfinal) || (gastoate >= valorinicial && gastoate <= valorfinal))
                        {
                            Alerta("Valores foram encontrados no intervalo entre as faixas");
                            return;
                        }
                    }
                    lstGastos.Items.Add(gasto);
                }
                else
                {
                    Alerta("Não insira valores em branco.");
                }
            }
            else
            {
                Alerta("Por favor, insira valores finais maiores que os iniciais.");
            }

        }

Browser other questions tagged

You are not signed in. Login or sign up in order to post.