If it's not code execution, what else could be slowing down the
display of data on the form? I'm well aware of things that commonly
slow down form display performance -- domain aggregate expressions in
the record source, the number of subforms, etc. But the only
difference here is the version of Access I use to open the database. I
won't attempt to test this on a network until it performs adequately
on a workstation.
By the way, I'm testing on a workstation that has never had Office
installed on it before, so there should be no complications from
multiple versions of Office.
On Feb 27, 12:10 pm, "Albert D. Kallal"
<PleaseNOOOsPAMmkal...@msn.comwrote:
Quote:
I not experianced a code slow down. You can test your code speed, and likey
ms-access can execute about 50 million instrucions in one second.
>
Public Sub test4444()
>
Dim lngMax As Long
Dim i As Long
Dim t As Double
>
lngMax = 80000000
>
t = Timer
For i = 1 To 80000000
Next i
t = Timer - t
>
MsgBox "time = " & t & vbCrLf & _
"loops per second = " & lngMax / t
>
End Sub
>
Try the above. I not really noticed a code speed change. The above loops to
80 million..and most pc's today will do that in less then 2 seconds.
>
Is a network involved? Have you tried using a mde...does that help?
>
--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKal...@msn.com
>
>