Exemplo n.º 1
0
        private void RangeTagSelection()
        {
            TagRangeForm f = new TagRangeForm();

            f.Setup();
            if (f.SelectionCount > 0)
            {
                f.ShowDialog(General.Interface);
            }
            else
            {
                General.Interface.DisplayStatus(StatusType.Warning, "This action requires a selection!");                 //mxd
            }
            f.Dispose();
        }
Exemplo n.º 2
0
        private void RangeTagSelection()
        {
            TagRangeForm f = new TagRangeForm();

            f.Setup();
            if (f.SelectionCount > 0)
            {
                f.ShowDialog(Form.ActiveForm);
            }
            else
            {
                General.Interface.MessageBeep(MessageBeepType.Default);
            }
            f.Dispose();
        }