Guys,
Clipper version : 5.2e
Blinker 4
I have been doing development on Win 2000 from last 3 years without any trouble.
Last week my company gave me new one with "XP" on it and all of a sudden my clipper Prgs will not compile.
I spent last 5 hrs looking through past post about this subject without any luck.
I use this Batch file to set path etc :
"SetEnv.bat"
@echo off
set include=c:\clip52\include;c:\software\include
set LIB=C:\CLIP52\LIB;C:\BLINKER4\LIB;C:\SOFTWARE\LIB
set OBJ=C:\CLIP52\OBJ;C:\BLINKER4\OBJ;C:\SOFTWARE\OBJ
set PLL=C:\CLIP52\PLL
set CLIPPERCMD=/w/b/a/v/n/m
PATH C:\PD;C:\ME;C:\CLIP52\BIN;C:\BLINKER4
--------------------------------------------------
Batch File 2
-------------------------
echo off
rmake shock
if not errorlevel 1 blinker @shock
goto end
:end
--------------------------------
Lnk File
--------------------------------
blinker incremental off
BLINKER EXECUTABLE CLIPPER F75;
fi sh001
out shock
beginarea
fi sh000,sh011,sh021,sh031,sh032,sh041,sh051,sh061,dosidle
lib extend,flex52,esc40
endarea
---------------------------------
Rmake File
--------------------------------
sh001.obj: sh001.prg
clipper sh001
sh000.obj: sh000.prg
clipper sh000
sh011.obj: sh011.prg
clipper sh011
sh021.obj: sh021.prg
clipper sh021
sh031.obj: sh031.prg
clipper sh031
sh032.obj: sh032.prg
clipper sh032
sh041.obj: sh041.prg
clipper sh041
sh051.obj: sh051.prg
clipper sh051
sh061.obj: sh061.prg
clipper sh061
----------------------
Above Steps works in WIndows 2000 But will not work in XP
The Error i get is "Blinker : 1109 unable to open obj file"
which i think as it cannot create Object files , SO i tried to create one By one using "Clipper Sh001" Then it creates
the object file but Gives me Errors about all the Static & Private Variable i have defined?
Thanks in advance
Laadi
Clipper version : 5.2e
Blinker 4
I have been doing development on Win 2000 from last 3 years without any trouble.
Last week my company gave me new one with "XP" on it and all of a sudden my clipper Prgs will not compile.
I spent last 5 hrs looking through past post about this subject without any luck.
I use this Batch file to set path etc :
"SetEnv.bat"
@echo off
set include=c:\clip52\include;c:\software\include
set LIB=C:\CLIP52\LIB;C:\BLINKER4\LIB;C:\SOFTWARE\LIB
set OBJ=C:\CLIP52\OBJ;C:\BLINKER4\OBJ;C:\SOFTWARE\OBJ
set PLL=C:\CLIP52\PLL
set CLIPPERCMD=/w/b/a/v/n/m
PATH C:\PD;C:\ME;C:\CLIP52\BIN;C:\BLINKER4
--------------------------------------------------
Batch File 2
-------------------------
echo off
rmake shock
if not errorlevel 1 blinker @shock
goto end
:end
--------------------------------
Lnk File
--------------------------------
blinker incremental off
BLINKER EXECUTABLE CLIPPER F75;
fi sh001
out shock
beginarea
fi sh000,sh011,sh021,sh031,sh032,sh041,sh051,sh061,dosidle
lib extend,flex52,esc40
endarea
---------------------------------
Rmake File
--------------------------------
sh001.obj: sh001.prg
clipper sh001
sh000.obj: sh000.prg
clipper sh000
sh011.obj: sh011.prg
clipper sh011
sh021.obj: sh021.prg
clipper sh021
sh031.obj: sh031.prg
clipper sh031
sh032.obj: sh032.prg
clipper sh032
sh041.obj: sh041.prg
clipper sh041
sh051.obj: sh051.prg
clipper sh051
sh061.obj: sh061.prg
clipper sh061
----------------------
Above Steps works in WIndows 2000 But will not work in XP
The Error i get is "Blinker : 1109 unable to open obj file"
which i think as it cannot create Object files , SO i tried to create one By one using "Clipper Sh001" Then it creates
the object file but Gives me Errors about all the Static & Private Variable i have defined?
Thanks in advance
Laadi