Beispiel #1
0
        public override void execute(MK52_Host components, string command)
        {
            SD_Manager sd = components.getSD();

            sd.deleteEntity(sd.getItemFromListing());
            int tmp = sd.listingPosition;

            sd.readFolderItems();
            sd.setListingPosition(tmp);
        }
        public void stepIn()
        {
            string filename = _sd.getItemFromListing();

            if (!_sd.stepIn(filename))
            {
                return;
            }
            if (UniversalValue._endsWith_P(filename, ".DAT"))
            {
                loadData(filename);
            }
            else
            {
                loadProgram(filename);
            }
        }