Ejemplo n.º 1
0
        public DataTable loadInfoOld(string ID)
        {
            DataTable dt = new DataTable();

            dt = mem.getMemberbyID(ID);
            return(dt);
        }
Ejemplo n.º 2
0
        public void disPlayCusName(TextBox txt, string cusID)
        {
            txt.Text = null;
            DataTable dt = new DataTable();

            dt       = mem.getMemberbyID(cusID);
            txt.Text = dt.Rows[0][1].ToString() + " " + dt.Rows[0][2].ToString();
        }