I have an application I'm building where there will be a local front end, and an MS SQL Server back end, hosted in the cloud.
In this application, I have one continuous form that has a high definition picture for each record, there are 30 records total. When I had the back end on my local server, it was very fast. I just migrated the back end to my hosted account, and now it's very slow.
I've changed the record source to a pass through query, but it appears it's looking for a username and password for each individual record. I'm wondering if I can do some VBA on the "On_Load" event of the form to populate the recordset with the password, so the user isn't prompted for a password I don't want them to have?
Also, would a pass through be any faster in this instance? I'm sure it's the pictures that are causing an issue, but I really don't want to lose the picture quality.
As a last resort, the pictures will be the same everytime, and this is a "static" table (the user will not add records), so as an absolute last resort, I could somehow make the images local....but I hate to do that because of the maintenance nightmares (all users are outside of my office, and are my clients, not co-workers)
Thanks for any insight!
Ps...WebAdmin, feel free to move this to any forum you see fit. I had a hard time deciding where this topic should be.
In this application, I have one continuous form that has a high definition picture for each record, there are 30 records total. When I had the back end on my local server, it was very fast. I just migrated the back end to my hosted account, and now it's very slow.
I've changed the record source to a pass through query, but it appears it's looking for a username and password for each individual record. I'm wondering if I can do some VBA on the "On_Load" event of the form to populate the recordset with the password, so the user isn't prompted for a password I don't want them to have?
Also, would a pass through be any faster in this instance? I'm sure it's the pictures that are causing an issue, but I really don't want to lose the picture quality.
As a last resort, the pictures will be the same everytime, and this is a "static" table (the user will not add records), so as an absolute last resort, I could somehow make the images local....but I hate to do that because of the maintenance nightmares (all users are outside of my office, and are my clients, not co-workers)
Thanks for any insight!
Ps...WebAdmin, feel free to move this to any forum you see fit. I had a hard time deciding where this topic should be.