Re: DOS vs WIN
- Posted by Graeme <graemeburke at CROSSWINDS.NET> Dec 28, 2000
- 426 views
>I've noticed this before but never gave it much thought until I just started >tinkering with Euphoria. Has anyone noticed that a "DOS WINDOW" appears to >run faster than full screen? Just guessing, but I'd say screen access is the culprit. Windows only updates a windowed DOS screen whenever it feels like it. In full screen mode DOS is forcing a screen update (+scrolling in this case) every time you write to it. Try this: --***UNTESTED*** for x=1 to 100000 do if (x/1000)=floor(x/1000) then position(1,1) ?x end if end for Havn't tried it myself, but I think reducing the display overhead will make a diference. Graeme. ----------------------------------------------------