Exemplo n.º 1
0
        private void toolStripTextBox1_TextChanged(object sender, EventArgs e)
        {
            string txt = TBCustomerIDSearch.Text.Trim();

            if ((!String.IsNullOrEmpty(txt)) && (txt.Length >= 3))
            {
                List <HistoryModel> lm = CustomerHistoryDA.SeachCustomerHistoryByCustomerId(Config.VBR4000Connection, txt);
                BindList(lm);
            }
        }