View Full Version : List Box in a Form / Not Updating


dmccs
11-06-2001, 06:28 AM
I have a list box in a form on 1 record. I am trying to find out how to show the most recent update to the record without exiting the database and coming back in. This database is on the network and shared. Again the 1 record is shared among many different users. Thank you in advance for your help.
Dino

jwindon
11-06-2001, 07:14 AM
Try putting this on the OnTimer Event for the form.
Set your Time Interval for the number of (milliseconds) between each refresh.

DoCmd.RunCommand acCmdRefresh

I don't know how many users on the same form at the same time will affect this, but its worth a try.

dmccs
11-06-2001, 08:21 AM
Thank you very much for your expdient reply. I will try that.

Dino