M
markmarko
One of our forms, frmInstallOrders, has about 30 fields, and about 7
subforms. The combo field [JobStatus] on the main form sometimes takes 5-10
seconds to function. For example, user clicks dropdown to choose status, and
it will hang for 5-10 seconds.
The combo control uses a Lookup, with this sql as the row source:
SELECT [List_InstallJobStatuses].[ID],
[List_InstallJobStatuses].[InstallStatus] FROM [List_InstallJobStatuses]
ORDER BY [InstallStatus];
The table [List_InstallJobStatuses] has approx. 25 records, and servers only
as a list for the combo.
Any ideas?
subforms. The combo field [JobStatus] on the main form sometimes takes 5-10
seconds to function. For example, user clicks dropdown to choose status, and
it will hang for 5-10 seconds.
The combo control uses a Lookup, with this sql as the row source:
SELECT [List_InstallJobStatuses].[ID],
[List_InstallJobStatuses].[InstallStatus] FROM [List_InstallJobStatuses]
ORDER BY [InstallStatus];
The table [List_InstallJobStatuses] has approx. 25 records, and servers only
as a list for the combo.
Any ideas?