dbTalk Databases Forums  

foxplus running under windows XP

comp.databases.xbase.fox comp.databases.xbase.fox


Discuss foxplus running under windows XP in the comp.databases.xbase.fox forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
kristof
 
Posts: n/a

Default foxplus running under windows XP - 07-18-2004 , 06:16 AM






hey,

I have a fantastic program under foxplus, made in the eighties, BUT it
doesn't work anymore under windows XP, every time I run the pgrogram I get
"Error 2009: Not enough space for environment".

It's really anoying because I'm stuck to windows 98

I have already tried a few things:
- SHELL=%SystemRoot%\System32\Cmd.com /P /E:512 at config.nt, then I tried
it with other numbers;
- making a batchfile:
@echo off PATH=C:\Foxbase; foxplus myprog, with "myprog" the name of my
program
- then I tried to put DOSMEM=512 in config.nt.
- I already tried to adjust the "compability" with right click and then the
tab "compability",...
but it didn't work

many thanks already
greetings
kristof



Reply With Quote
  #2  
Old   
Rick Bean
 
Posts: n/a

Default Re: foxplus running under windows XP - 07-19-2004 , 12:31 PM






kristof,
Have you considered updating to VFP? Some DOS programs work better under XP/2003 using the TameDOS product. (http://www.tamedos.com)

Rick

"kristof" <rookyk (AT) hotmail (DOT) com> wrote

Quote:
hey,

I have a fantastic program under foxplus, made in the eighties, BUT it
doesn't work anymore under windows XP, every time I run the pgrogram I get
"Error 2009: Not enough space for environment".

It's really anoying because I'm stuck to windows 98

I have already tried a few things:
- SHELL=%SystemRoot%\System32\Cmd.com /P /E:512 at config.nt, then I tried
it with other numbers;
- making a batchfile:
@echo off PATH=C:\Foxbase; foxplus myprog, with "myprog" the name of my
program
- then I tried to put DOSMEM=512 in config.nt.
- I already tried to adjust the "compability" with right click and then the
tab "compability",...
but it didn't work

many thanks already
greetings
kristof



Reply With Quote
  #3  
Old   
Techo Guy
 
Posts: n/a

Default Re: foxplus running under windows XP - 07-19-2004 , 02:48 PM



Create a shortcut on the desktop.

In the target put this
%SystemRoot%\system32\cmd.exe /c /E:1024 "c:\prog-to-run"

Also, you may need to add
Files=127
in the Config.NT file

On Sun, 18 Jul 2004 11:16:15 GMT, "kristof" <rookyk (AT) hotmail (DOT) com>
wrote:

Quote:
hey,

I have a fantastic program under foxplus, made in the eighties, BUT it
doesn't work anymore under windows XP, every time I run the pgrogram I get
"Error 2009: Not enough space for environment".

It's really anoying because I'm stuck to windows 98

I have already tried a few things:
- SHELL=%SystemRoot%\System32\Cmd.com /P /E:512 at config.nt, then I tried
it with other numbers;
- making a batchfile:
@echo off PATH=C:\Foxbase; foxplus myprog, with "myprog" the name of my
program
- then I tried to put DOSMEM=512 in config.nt.
- I already tried to adjust the "compability" with right click and then the
tab "compability",...
but it didn't work

many thanks already
greetings
kristof



Reply With Quote
  #4  
Old   
kristof
 
Posts: n/a

Default Re: foxplus running under windows XP - 07-22-2004 , 05:57 AM



no, it didn't work, neither with tamedos neither with the shortcut,...

thanks for the help
greetings kristof
"kristof" <rookyk (AT) hotmail (DOT) com> schreef in bericht
news:3_sKc.188261$Y_5.9163872 (AT) phobos (DOT) telenet-ops.be...
Quote:
hey,

I have a fantastic program under foxplus, made in the eighties, BUT it
doesn't work anymore under windows XP, every time I run the pgrogram I get
"Error 2009: Not enough space for environment".

It's really anoying because I'm stuck to windows 98

I have already tried a few things:
- SHELL=%SystemRoot%\System32\Cmd.com /P /E:512 at config.nt, then I
tried
it with other numbers;
- making a batchfile:
@echo off PATH=C:\Foxbase; foxplus myprog, with "myprog" the name of my
program
- then I tried to put DOSMEM=512 in config.nt.
- I already tried to adjust the "compability" with right click and then
the
tab "compability",...
but it didn't work

many thanks already
greetings
kristof





Reply With Quote
  #5  
Old   
Jan Bucek
 
Posts: n/a

Default Re: foxplus running under windows XP - 07-27-2004 , 05:28 AM



Hi,
start your FoxBase app with shortcut and batchfile, in which you
delete all system variables you don't need. This way you can free
environment memory for you. The system variables will be deleted only
in your program session. Example of my batchfile I use to start old
Clipper program under Win2K:
@ECHO OFF
REM free environment space
set PROCESSOR_ARCHITECTURE=
set PROCESSOR_IDENTIFIER=
set PROCESSOR_LEVEL=
set PROCESSOR_REVISION=
set ALLUSERSPROFILE=
set APPDATA=
set COMMONPROGRAMFILES=
set COMPUTERNAME=
set FILE_SERVER=
set HOMEDRIVE=
set HOMEPATH=
set LOGONSERVER=
set NUMBER_OF_PROCESSORS=

REM set my own variables
set PATH=..\std;c:\dos\bin
set STD=..\std
set CHB_ROK=%1
set CHB_DATA=%2
set DDF=ver_801.ddf
....

To see all availabel system variables you can delete use command: set
Quote:
set.txt in Dos box and see the file set.txt with notepad.
HTH

"kristof" <kristof.ghys (AT) pandora (DOT) be> wrote

Quote:
no, it didn't work, neither with tamedos neither with the shortcut,...

thanks for the help
greetings kristof
"kristof" <rookyk (AT) hotmail (DOT) com> schreef in bericht
news:3_sKc.188261$Y_5.9163872 (AT) phobos (DOT) telenet-ops.be...
hey,

I have a fantastic program under foxplus, made in the eighties, BUT it
doesn't work anymore under windows XP, every time I run the pgrogram I get
"Error 2009: Not enough space for environment".

It's really anoying because I'm stuck to windows 98

I have already tried a few things:
- SHELL=%SystemRoot%\System32\Cmd.com /P /E:512 at config.nt, then I
tried
it with other numbers;
- making a batchfile:
@echo off PATH=C:\Foxbase; foxplus myprog, with "myprog" the name of my
program
- then I tried to put DOSMEM=512 in config.nt.
- I already tried to adjust the "compability" with right click and then
the
tab "compability",...
but it didn't work

many thanks already
greetings
kristof



Reply With Quote
  #6  
Old   
phantomcyt
 
Posts: n/a

Default Re: foxplus running under windows XP - 10-14-2004 , 08:37 PM



speak spanish?? ... pudiste resolver el problema de foxplus sobre winxp? yo
tengo igual drama... necesito ayuda.

you could solve the problem of foxplus on winxp? I have equal drama... I
need aid. HELPMEEE¿¡¡¡

esotoi (AT) gmail (DOT) com


Reply With Quote
  #7  
Old   
phantomcyt
 
Posts: n/a

Default Re: foxplus running under windows XP - 10-14-2004 , 08:37 PM



speak spanish?? ... pudiste resolver el problema de foxplus sobre winxp? yo
tengo igual drama... necesito ayuda.

you could solve the problem of foxplus on winxp? I have equal drama... I
need aid. HELPMEEE¿¡¡¡

esotoi (AT) gmail (DOT) com


Reply With Quote
  #8  
Old   
phantomcyt
 
Posts: n/a

Default Re: foxplus running under windows XP - 10-14-2004 , 08:40 PM



you could solve the problem of foxplus on winxp? I have equal drama... I
need aid. Helpme..

i speak spanish.. but equal speakme (talkme??) please¡¡

esotoi (AT) gmail (DOT) com


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.