D
DS
Any dangers or suggestions on using Dim on a Network where several
users will be access the same form?
Thanks
DS
users will be access the same form?
Thanks
DS
DS said:Any dangers or suggestions on using Dim on a Network where several
users will be access the same form?
Thanks
DS
Its an order input screen where multiple users will inputing records atRick said:Variables are in memory on each PC. You shouldn't be having multiple people
opening the same front end file for LOTS of reasons, but variable scope is
not one of them.
DS said:Its an order input screen where multiple users will inputing records
at the same time. Each user will have their own PC. The database
will be split as well. Is this a can of worms?
Thanks
DS
DS said:Its an order input screen where multiple users will inputing records at
the same time. Each user will have their own PC. The database will be
split as well. Is this a can of worms?
Great Thanks, So do I have to run this batch file everytime, or can theKeith said:Not at all, provided that you give each user their own FE. There are simple
ways to ensure that this happens automatically, I use simple batch files to
copy the FE from the server to the PC and then open it. This ensures that
the users always get a compacted and latest version of the file.
HTH - Keith.
www.keithwilby.com
Thanks Rick, I thought I was heading for a disaster!Rick said:If the database is split (good idea) then each PC should have its own
(local) copy of the front end file. Sharing a common front end often leads
to corruption problems.
DS said:Great Thanks, So do I have to run this batch file everytime, or can the
front end just reside on that PC.
ways to ensure that this happens automatically, I use simple batch files to
copy the FE from the server to the PC and then open it. This ensures that
the users always get a compacted and latest version of the file.
HTH - Keith.
www.keithwilby.com