dbTalk Databases Forums  

help wanted

comp.databases.ms-access comp.databases.ms-access


Discuss help wanted in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
newbie
 
Posts: n/a

Default help wanted - 11-10-2004 , 06:46 PM






hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna

Reply With Quote
  #2  
Old   
Allen Browne
 
Posts: n/a

Default Re: help wanted - 11-10-2004 , 08:40 PM






Hi Donna

The simplest approach is to use a form with subforms. The main form is bound
to your master table. The 3 related tables go in 3 subforms. If there's not
enough room, you can put the 3 subforms on different pages of a Tab control.

If you do need to base the form on a query containing multiple tables, it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote

Quote:
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna



Reply With Quote
  #3  
Old   
newbie
 
Posts: n/a

Default Re: help wanted - 11-11-2004 , 11:31 AM



Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna



"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote

Quote:
Hi Donna

The simplest approach is to use a form with subforms. The main form is bound
to your master table. The 3 related tables go in 3 subforms. If there's not
enough room, you can put the 3 subforms on different pages of a Tab control.

If you do need to base the form on a query containing multiple tables, it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411101646.ffb9830 (AT) posting (DOT) google.com...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna

Reply With Quote
  #4  
Old   
Allen Browne
 
Posts: n/a

Default Re: help wanted - 11-11-2004 , 07:28 PM



When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3 field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the 3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as Required
in your related table if you want to block this.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote

Quote:
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<4192d127$0$6564$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411101646.ffb9830 (AT) posting (DOT) google.com...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna



Reply With Quote
  #5  
Old   
newbie
 
Posts: n/a

Default Autonumber is disabled - 11-22-2004 , 07:47 PM



Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna


"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote

Quote:
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3 field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the 3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as Required
in your related table if you want to block this.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411110931.32e45392 (AT) posting (DOT) google.com...
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<4192d127$0$6564$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411101646.ffb9830 (AT) posting (DOT) google.com...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this? I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any help
will be highly appreciated.

Donna

Reply With Quote
  #6  
Old   
Allen Browne
 
Posts: n/a

Default Re: Autonumber is disabled - 11-22-2004 , 07:54 PM



Sounds like you have set the AllowEdits property of the subform to No.

Either that or changed the Recordset to a non-updatable query.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote

Quote:
Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna


"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<419411b3$0$6550$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3
field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the
3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in
the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as
Required
in your related table if you want to block this.


"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411110931.32e45392 (AT) posting (DOT) google.com...
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<4192d127$0$6564$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If
there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on
the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values
in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411101646.ffb9830 (AT) posting (DOT) google.com...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this?
I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any
help
will be highly appreciated.

Donna



Reply With Quote
  #7  
Old   
newbie
 
Posts: n/a

Default Re: Autonumber is disabled - 11-24-2004 , 01:07 PM



Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna

"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote

Quote:
Sounds like you have set the AllowEdits property of the subform to No.

Either that or changed the Recordset to a non-updatable query.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411221747.60897934 (AT) posting (DOT) google.com...
Hi, Allen
Thanks for your reply. It works. However, after I deleted some
inconsistant records in a subtable, the primary key field of an
autonumber type is not active in the subform any more. In another
word, I can not add in any new record to the subtable through the
master interface which is to copy some linked data fields to the
subform. What happened? The only change I made is I deleted some
records in the subtable which has R.I relationship to the master
table. Any idea how I can fix the problem? I still can add record to
the master table though through the same master interface.
Any tips will be highly appreciated.

Regards

Donna


"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<419411b3$0$6550$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
When you put a subform control on a form, it has properties called
MasterLinkFields and ChildLinkFields. In MasterLinkFields, enter the 3
field
names from the main form that match the subform fields, separated by
semicolons. Then enter the matching field names from the subform into the
ChildLinkFields. The subform will only show the records that match on the
3
fields, and when you enter a new field in the subform it will inherit the
values from the fields in the main form.

Where you have a relationship with R.I enforced, the data must exist in
the
"one" side before you can create the entry in the "many" side. With the
form/subform, that means you have to enter the main form record first,
before entering the matching values in the subform.

Access does permit nulls in the foreign key fields, so mark them as
Required
in your related table if you want to block this.


"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411110931.32e45392 (AT) posting (DOT) google.com...
Hi Allen
Thanks for the reply.
However, I have a few questions here.
In the first approach you mentioned here, using subforms, besides the
key column they are connected to each other, I would like to have
other fields having bound to the master table since the master table
shares 2 or 3 fields with any one of other tables. I prefer not to let
the person who enter data to the master table enter mutlitple times to
other tables for the same data. Is it possible to bind fields accross
main forms and subforms?

By the way, I aslo wonder when the form submit the data to update, if
there is one to many referencial enforcement relationship, how the
databse update works? Does it update the "one side" first, then the
related tables in a one "save record" submition? Or it's necessary to
save the "one side" table first in a "save record" submit, then submit
data in another action to update the "many side" tables?

Thanks for the answer again and I appreciate greatly. I'll try to
check and see if there is a default value causing the problems.

Regards

Donna

"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote in message
news:<4192d127$0$6564$5a62ac22 (AT) per-qv1-newsreader-01 (DOT) iinet.net.au>...
Hi Donna

The simplest approach is to use a form with subforms. The main form is
bound
to your master table. The 3 related tables go in 3 subforms. If
there's
not
enough room, you can put the 3 subforms on different pages of a Tab
control.

If you do need to base the form on a query containing multiple tables,
it's
not too difficult to get something that is read-only. In general, the
multi-table query is useful where you are adding/editing records on
the
"many" side of the relationship. If you are doing that, there is a
cryptic
message something like the one you mentioned, caused by default values
in
the fields in the 'one' side of the relationship.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411101646.ffb9830 (AT) posting (DOT) google.com...
hello
How can I update more than one tables on the same form? The
relationship is one to many from a master table to 3 other related
tables. on the form, I have to setvalue for a few fields(colums) in
the related tables based on the value I enter in the field from the
master table. I kept getting "you have to save the record before you
update..." kind of message. Do you have any idea how to handle this?
I
feel I have to set the master table first before setup the related
tables. I did many attempt but somehow couldn't get it right. Any
help
will be highly appreciated.

Donna

Reply With Quote
  #8  
Old   
Allen Browne
 
Posts: n/a

Default Re: Autonumber is disabled - 11-24-2004 , 08:10 PM



That could be the subject fora new thread, perhaps?

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote

Quote:
Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna



Reply With Quote
  #9  
Old   
newbie
 
Posts: n/a

Default Re: Autonumber is disabled - 12-01-2004 , 11:58 AM



Allen,
it is a good idea It deserve a new thread.
However, I've resolved the problem by runing a requery macro. Thank
you for the idea.

Regards

Donna
"Allen Browne" <AllenBrowne (AT) SeeSig (DOT) Invalid> wrote

Quote:
That could be the subject fora new thread, perhaps?

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"newbie" <technewbie88 (AT) yahoo (DOT) com> wrote in message
news:5af77d07.0411241107.450f09e2 (AT) posting (DOT) google.com...
Allen,
You are exactly right. I fixed the problem by reset the property.
By the way, when I fill out a field on a form which I setup as a combo
box, I run a select query to get the data based on the value in
another textbox on the same form. But it seems it always remember the
value from last record and I have to refresh the record(under menu
records) to get the current value. How can I fix it? Is there any
setting I can set to make it auto refresh?

Thank you very much and have a wonderful Thanksgiving

Donna

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.