Пример #1
0
        protected override void completeEntry(string value)
        {
            RPN_Functions _rpnf   = _parent.getFunctions();
            string        tmpName = _rpnf.formFileName(value);

            if (!UniversalValue._endsWith_P(value, _Ext))
            {
                tmpName += _Ext;
            }
            if (_rpnf.fileExists(tmpName))
            {
                _mode = _Overwrite;
                updateDisplay(toString());
                return;
            }
            _rpnf.saveData(tmpName);
            _parent.getFunctions().requestNextReceiver(_return_to);
            return;
        }