Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Application is slow on user's machine
Message
From
12/08/2005 02:56:09
Thomas Ganss (Online)
Main Trend
Frankfurt, Germany
 
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01040199
Message ID:
01040488
Views:
22
>My colleague told me, that they replaced the Network card and the performance became much better.
Bottlenecks are wonderful when eliminated <g>
>
>That's a trick, actually. Give the user the worst performance possible at first, then fix it and the users will appreciate the software very much < g >

Yeah: upgrade to vfp9, where you can:
if version(2)=0
  set coverage to "C:\SlowDown.Tmp"
  goTmrPurge = createobject("LogPurge")
endif

define class LogPurge as Timer
   intervall = 60000
   enabled = .t.
   function timer
      set coverage to
      DoEvents
      delete "C:\SlowDown.Tmp"
      set coverage to "C:\SlowDown.Tmp"
enddefine
But seriously, I have a special testing pc where I can test any apps performance with combinations of:
different the cpu frequencies
different ram size
different bus speeds
different harddisk speeds (including laptop disks)
different network speeds
different OS

In case of xCopy deployment I usually can get a matrix of perf differences pinpointing the worst current bottleneck quite fast. It also helps finding the best hardware upgrade for deployment pc's.

regards

thomas
Previous
Reply
Map
View

Click here to load this message in the networking platform