1. My programs in graphic mode (DOS) operate alone once
- Posted by Marcelo Molina <engayola at yahoo.com.ar> Mar 29, 2005
- 473 views
Hi, My programs in graphic mode (DOS) operate alone once. Then the screen remains black, and the eup-editor is seen only in a window. I have to restart the computer to use any application DOS (for example THE DOOM). Investigating the properties of the windows DOS have found that the equipment is not configured to use expanded memory, and I have not achieved to activate it (emm386 says " expanded memory services not available”). This has relationship to my problems with graphic? Regards to the friends of euphoria, and thank you very much. Marcelo Molina
2. Re: My programs in graphic mode (DOS) operate alone once
- Posted by don cole <doncole at pacbell.net> Mar 29, 2005
- 436 views
Marcelo Molina wrote: > > Hi, > My programs in graphic mode (DOS) operate alone once. Then the screen > remains black, and the eup-editor is seen only in a window. I have to > restart the computer to use any application DOS (for example THE DOOM). > Investigating the properties of the windows DOS have found that the > equipment is not configured to use expanded memory, and I have not achieved > to activate it (emm386 says " expanded memory services not available”). This > has relationship to my problems with graphic? > Regards to the friends of euphoria, and thank you very much. > Marcelo Molina > \ Are you saying that after you run a program such as:
for x= 1 to 10 do ?x end for
Then your screen goes blank and you have to restart your computer? What kind of computer and operating system? don cole SF
3. Re: My programs in graphic mode (DOS) operate alone once
- Posted by Marcelo Molina <engayola at yahoo.com.ar> Mar 30, 2005
- 464 views
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
4. 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