Ejemplo n.º 1
0
/// <summary>
/// Show the form
/// </summary>

        public static new void Show()
        {
            if (Instance == null)
            {
                Instance = new ListLogic();
            }
            Instance.Setup();

            CidListCommand.WriteCurrentList();             // be sure current is on the server
            DialogResult dr = Instance.ShowDialog(SessionManager.ActiveForm);

            return;
        }
Ejemplo n.º 2
0
/// <summary>
/// Combine lists
/// </summary>
/// <param name="command"></param>
/// <returns></returns>

        static string LogicallyCombineLists(
            string command)
        {
            ListLogic.Show();
            return("");
        }