Help with a form/query

C

CY

I am working on a database that somebody else created. This person used a
LOT of VB that I am not very familiar with but I am hoping I can solve this
problem without having to resort to hiring a VB person.

There is a form that is using a query to populate a subform, and the query
grabs the primary key from the customer that is selected in the main form,
if you get what I mean. So the query criteria is:

[forms]![frm_find_cust]![cid]

They experienced a problem last week where two people had the same form open
on two networked computers and on the save, both records contained the ID
grabbed from only one computer, when they actually were working on two
different customers. I think its probably because there is no specification
anywhere to use the current computer. Can you do that anywhere on a query
or do you have to specify that in VB?

I hope that this makes sense, I am grabbing in the dark a bit here.

Any ideas?
 
C

CY

Oh good - this has already been done, but the problem occured after the
split. But everyone is accessing the same front end, so I assume I just
need to create copies of the front end for each computer and this will solve
the problem?

Thank you SOOO much...

CY

Allen Browne said:
Split the database, so each user has a separate front end.

Details:
http://allenbrowne.com/ser-01.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.

CY said:
I am working on a database that somebody else created. This person used a
LOT of VB that I am not very familiar with but I am hoping I can solve
this
problem without having to resort to hiring a VB person.

There is a form that is using a query to populate a subform, and the
query
grabs the primary key from the customer that is selected in the main
form,
if you get what I mean. So the query criteria is:

[forms]![frm_find_cust]![cid]

They experienced a problem last week where two people had the same form
open
on two networked computers and on the save, both records contained the ID
grabbed from only one computer, when they actually were working on two
different customers. I think its probably because there is no
specification
anywhere to use the current computer. Can you do that anywhere on a
query
or do you have to specify that in VB?

I hope that this makes sense, I am grabbing in the dark a bit here.
 
A

Allen Browne

Yes: each user needs their own copy of tre front end.
(That's the point of splitting.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top