
Signature
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.
> O.K.
>
[quoted text clipped - 18 lines]
>>>>> of
>>>>> the subform after it has loaded?
Nope. Data Entry is No. No filters are set. The RecordSource of the form
is shown as being equal to the SQL statement in my first post.
I put the Me.RecordSource statement for the subform in the load event of the
subform. Still nothing is populated. So out of frustration. I put a
listbox on the subform and, in the Form Load event of the subform, set it's
RowSource property to the SQL statement listed above.
The listbox is populated with the exact records I want! But I really wanted
to use a subform because I wanted to allow for easy "cell like" editing and
deleting.
Thanks for being patient with me. I still don't have a clue. It looks like
for some reason, the RecordSource of the form is not being set even though
there is clearly an SQL statement assigned to it.
>If the LinkMasterFields and LinkChildFields are not limiting the subform's
>records, I guess it is somethig else.
[quoted text clipped - 17 lines]
>>>>>> of
>>>>>> the subform after it has loaded?
robert d - 19 Jan 2006 04:03 GMT
Okay, I found my mistake and a stupid one it is at that.
The ControlSource of the textboxes on the subform (to be displayed in
continuous mode) was not set. Hence no data was displayed. Once set, data
is displayed as expected.
Thanks for your patience, Allen.
>Nope. Data Entry is No. No filters are set. The RecordSource of the form
>is shown as being equal to the SQL statement in my first post.
[quoted text clipped - 17 lines]
>>>>>>> of
>>>>>>> the subform after it has loaded?
Allen Browne - 19 Jan 2006 04:31 GMT
Okay: that's solved. Good.
Thanks for posting the solution, in case someone else hits the same issue.

Signature
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.
> Okay, I found my mistake and a stupid one it is at that.
>
> The ControlSource of the textboxes on the subform (to be displayed in
> continuous mode) was not set. Hence no data was displayed. Once set,
> data
> is displayed as expected.
Allen Browne - 19 Jan 2006 04:04 GMT
You could try moving the assignment of the RecordSource into the Open event
of the subform instead of its Load event. (The Requery is superfluous, so
you can drop that line.)
Your first paragraph implies that you verified the RecordSource property is
being correctly set, but I was not sure about that after your last
paragraph.
If the query statement really is that simple, then I fail to see why you are
assigning the property in the first place. Why not just save the form with
TEMP_PROJECT_TABLE as its RecordSource?
As always, you will want to uncheck the Name AutoCorrect boxes under:
Tools | Options | General
and then compact the database. That's one source of huge confusion to
Access.

Signature
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.
> Nope. Data Entry is No. No filters are set. The RecordSource of the
> form
[quoted text clipped - 39 lines]
>>>>>>> of
>>>>>>> the subform after it has loaded?