My application was running on a Windows 98 network and response times were really fast. After upgrading to Windows XP, all data-related operations are taking a lot longer. A simple
, which would be instananeous in 98, takes a couple seconds in XP.
I would say that the difference was that I now have to issue a
before printing and a
after printing, but printing is not the only thing that's slower.
Once a day, all the tables are reindexed and a daily summary report is printed. The reindexing takes much longer now. This makes me think it's the data access that's slower.
Any ideas? Upgrade to VFP 7? Wait for XP SP1?
Code:
LABEL FORM MyForm NEXT 1 TO PRINTER NOCONSOLE
I would say that the difference was that I now have to issue a
Code:
SET PRINTER TO NAME //server/printer
Code:
SET PRINTER TO DEFAULT
Once a day, all the tables are reindexed and a daily summary report is printed. The reindexing takes much longer now. This makes me think it's the data access that's slower.
Any ideas? Upgrade to VFP 7? Wait for XP SP1?