A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

one to many in continuous forms



 
 
Thread Tools Display Modes
  #1  
Old July 2nd, 2009, 05:21 PM posted to microsoft.public.access.forms
seeker
external usenet poster
 
Posts: 133
Default one to many in continuous forms

i have a form that is based on following:

select * from los_service right join los_service_entry on los_service.id =
los_service_entry.los_service_id

I want to show continuous and give the user the ability to change records in
los_service_entry table and add records to same table. A subform will not
work because user wants all records to show. thanks.
  #2  
Old July 2nd, 2009, 06:44 PM posted to microsoft.public.access.forms
Gina Whipp
external usenet poster
 
Posts: 3,500
Default one to many in continuous forms

Seeker,

Try...

SELECT los_service_entry.*
FROM los_service RIGHT JOIN los_service_entry ON los_service.id =
los_service_entry.los_service_id;

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"seeker" wrote in message
...
i have a form that is based on following:

select * from los_service right join los_service_entry on los_service.id =
los_service_entry.los_service_id

I want to show continuous and give the user the ability to change records
in
los_service_entry table and add records to same table. A subform will not
work because user wants all records to show. thanks.



  #3  
Old July 2nd, 2009, 06:56 PM posted to microsoft.public.access.forms
seeker
external usenet poster
 
Posts: 133
Default one to many in continuous forms

Thanks. I need data from the other table to show on the form.

"Gina Whipp" wrote:

Seeker,

Try...

SELECT los_service_entry.*
FROM los_service RIGHT JOIN los_service_entry ON los_service.id =
los_service_entry.los_service_id;

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"seeker" wrote in message
...
i have a form that is based on following:

select * from los_service right join los_service_entry on los_service.id =
los_service_entry.los_service_id

I want to show continuous and give the user the ability to change records
in
los_service_entry table and add records to same table. A subform will not
work because user wants all records to show. thanks.




  #4  
Old July 2nd, 2009, 08:12 PM posted to microsoft.public.access.forms
BruceM[_4_]
external usenet poster
 
Posts: 558
Default one to many in continuous forms

If you are trying to put a subform into a continuous form, it cannot be done
directly, at least not in Access 2003 and earlier (I assume Access 2007 is
ths same, but I don't know for sure). However, there are ways to achieve an
approximation of that effect. Several options are shown he
http://www.members.shaw.ca/AlbertKal...icles/Grid.htm

"seeker" wrote in message
...
Thanks. I need data from the other table to show on the form.

"Gina Whipp" wrote:

Seeker,

Try...

SELECT los_service_entry.*
FROM los_service RIGHT JOIN los_service_entry ON los_service.id =
los_service_entry.los_service_id;

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" -
Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"seeker" wrote in message
...
i have a form that is based on following:

select * from los_service right join los_service_entry on
los_service.id =
los_service_entry.los_service_id

I want to show continuous and give the user the ability to change
records
in
los_service_entry table and add records to same table. A subform will
not
work because user wants all records to show. thanks.






  #5  
Old July 2nd, 2009, 09:15 PM posted to microsoft.public.access.forms
Gina Whipp
external usenet poster
 
Posts: 3,500
Default one to many in continuous forms

I don't know what the OTHER table is then. I only see two table in the
example you provided. Perhaps Bruce's answer is more what you need???

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"seeker" wrote in message
...
Thanks. I need data from the other table to show on the form.

"Gina Whipp" wrote:

Seeker,

Try...

SELECT los_service_entry.*
FROM los_service RIGHT JOIN los_service_entry ON los_service.id =
los_service_entry.los_service_id;

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" -
Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"seeker" wrote in message
...
i have a form that is based on following:

select * from los_service right join los_service_entry on
los_service.id =
los_service_entry.los_service_id

I want to show continuous and give the user the ability to change
records
in
los_service_entry table and add records to same table. A subform will
not
work because user wants all records to show. thanks.






 




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 Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:43 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.