public CommandDlg(MainScreen form)
        {
            InitializeComponent();

            m_form       = form;
            s_dlg        = this;
            m_formActive = true;
        }
Example #2
0
        private void showCommandDlg()
        {
            CommandDlg dlg = new CommandDlg(this);

            dlg.ShowDialog();
        }