Thanks for all the answers I've found here over the years. Now I have one that I can't seem to resolve just from information already posted in the forums.
I have calculated textboxes in the footer of a form to sum the data in the detail section. The data is stored on SQL Server. Over the LAN, the form populates quickly and the calculated textboxes display their values. However, when working remotely over the VPN, which is notoriously slow, the form takes 5-10 seconds to populate and the calculated textboxes are all blank. I've tried the Requery method on the form as well as the textbox to no avail.
Looking at the .value and .text of the calculated textbox in the debugger, they show the number from the first record in the detail section but display nothing.
The control source is similar for each textbox, but one example is:
=Sum([LaborHours])
Any ideas are greatly appreciated.
I have calculated textboxes in the footer of a form to sum the data in the detail section. The data is stored on SQL Server. Over the LAN, the form populates quickly and the calculated textboxes display their values. However, when working remotely over the VPN, which is notoriously slow, the form takes 5-10 seconds to populate and the calculated textboxes are all blank. I've tried the Requery method on the form as well as the textbox to no avail.
Looking at the .value and .text of the calculated textbox in the debugger, they show the number from the first record in the detail section but display nothing.
The control source is similar for each textbox, but one example is:
=Sum([LaborHours])
Any ideas are greatly appreciated.