Re: My programs in graphic mode (DOS) operate alone once
- Posted by "Igor Kachan" <kinz at peterlink.ru> Mar 30, 2005
- 444 views
Hi Marcelo, You wrote: ---------- > From: Marcelo Molina <guest at RapidEuphoria.com> > To: EUforum at topica.com > Subject: Re: My programs in graphic mode (DOS) operate alone once > Sent: 30 mar 2005 y. 4:26 > > Don: > thanks for answering to my question. > I say that after of running a program as this: > > if graphics_mode(18) then > end if > ellipse(MAGENTA, 0, {10, 10}, {20, 20}) > > the computer remains disqualified to run any program DOS, though windows is > shown normal. > I use windows 98, AMD Athlon(tm) XP 2000+ > Video: SiS 661FX_760_741_M661FX_M760_M741 (on board) > Sound: C-Media AC97 (on board) > capture of TV FlyVideo 2000. > > I request excuses by my English poor. > Regards > > Marcelo Try please:
if graphics_mode(18) then end if ellipse(MAGENTA, 0, {10, 10}, {20, 20}) if graphics_mode(-1) then end if -- this will return you -- to pure Windows text mode console -- to run another DOS program
Regards, Igor Kachan kinz at peterlink.ru