Hi
Method1:
********
Find and list all files modified on or after a particular date. This can be modified to take care of time as well. But I have not done that here for simplicity.
***********************************************************
** PRG - ExpPjx.PRG - Explore Project
** Author.. Subramanian.G
** HowTo.. DO ExpPjx WITH ProjectName, dateSinceModified
** Browse window displays the files modified.
***********************************************************
PARAMETERS myProject,myDate
getTstamp = timeStamp(myDate) && If today is the modiied date
SELECT ALLTRIM(NAME) AS FilesModified From myProject+".pjx" INTO DBF mFiles WHERE timestamp > getTstamp
BROWSE && list of modified files
USE
***********************************************************
FUNCTION timeStamp
PARAMETERS dDate && Probable Date of current project revision - may be today
nTimeStamp = (((((YEAR(dDate)-1980)*16)+MONTH(dDate))*32)+DAY(dDate))*32*64*32
RETURN INT(nTimeStamp)
***********************************************************
** EOF
***********************************************************
Method2:
******** Compare two project files...
SELECT a.* FROM Path1Project.pjx a, Path2Project.pjx b ;
INTO DBF fileNew WHERE ;
a.timestamp > b.timestamp
BROWSE
This will give Path1 project having newer files than Path2 project. Beware of correction made in path2 afterwards and then compared.
Hope he idea helps

ramani :-9
(Subramanian.G),FoxAcc, ramani_g@yahoo.com