Example #1
0
    public bool RunStep()
    {
        if (_p >= _cmdList.Count)
        {
            return(false);
        }

        var cmd = _cmdList[_p];

        _p++;
        CommandExec.Execute(this, cmd);
        return(true);
    }
Example #2
0
 private void EditQueryBut_Click(object sender, EventArgs e)
 {
     CommandExec.Execute("EditQuery");
 }