Good Morning all!
I am using access 97 and I am having some serious performance problems using an unbound combo box to find a customer. I was hoping someone could offer some advice as to how I could speed up the process. It is so terribly slow on some computers on the network that they can go get a cup of coffee and come back before the record is found.Here is what I've currently got set up.
On my main form called Customers the Unbound combo box named Combo40-(Lable name "Find Customer"
has this:
Row Source:SELECT DISTINCTROW Customers.CustomerID,Customers.[Fac#]From Customers;
Sub Combo40_After_Update
Me.RecordsetClone.FindFirst " [CustomerID]=&
Me![Combo40]
Me!Bookmark=Me!RecordsetClone.Bookmark
End Sub
My database is split and in an attempt to slow down the traffic over the network I moved the Customers table to the Front End. This did not really help the situation at all. The really sad part is that the database rarely has more than 2 users at a time and I doubt I should be having such serious performance issues.
RookieDev
I am using access 97 and I am having some serious performance problems using an unbound combo box to find a customer. I was hoping someone could offer some advice as to how I could speed up the process. It is so terribly slow on some computers on the network that they can go get a cup of coffee and come back before the record is found.Here is what I've currently got set up.
On my main form called Customers the Unbound combo box named Combo40-(Lable name "Find Customer"
Row Source:SELECT DISTINCTROW Customers.CustomerID,Customers.[Fac#]From Customers;
Sub Combo40_After_Update
Me.RecordsetClone.FindFirst " [CustomerID]=&
Me![Combo40]
Me!Bookmark=Me!RecordsetClone.Bookmark
End Sub
My database is split and in an attempt to slow down the traffic over the network I moved the Customers table to the Front End. This did not really help the situation at all. The really sad part is that the database rarely has more than 2 users at a time and I doubt I should be having such serious performance issues.
RookieDev