Ejemplo n.º 1
0
        public static void UpdateList(object toupdate)
        {
            frmListBuilder fb = new frmListBuilder(toupdate.GetType(), toupdate);

            fb.ShowDialog();
            return;
        }
Ejemplo n.º 2
0
        public static object CreateList(Type listtype)
        {
            frmListBuilder fb = new frmListBuilder(listtype, null);

            fb.ShowDialog();
            return(fb.m_Object);
        }