by tim_witort@[EMAIL PROTECTED]
(Tim Witort)
Aug 10, 2007 at 03:40 PM
Mike seemed to utter in news:1186706516.276436.70900
@[EMAIL PROTECTED]
> Hi,
>
> I am trying to create a form for intake process. This involves
> capturing info on family members. Depending on the number of family
> members, the Pageframe1.pagecount is changed so on the fly I have as
> many pages as number of members in family.
>
> How can I manage to 'bind' controls on each page with a unique blank
> record in the table so that informaiton on each unique family member
> goes as a separate record.
>
> I have as many append blank as number of members in family. But looks
> like the controls on each page point to the SAME record. A name added
> on page1, appears on page2. I need to be able to add unique values
> from each page.
Simple. In the activate of each page, just move the
record pointer to the corresponding record for that
page, then refresh the page:
SELECT myTable
LOCATE FOR rec_id = IDForThisPage
This.Refresh()
-- TRW
_______________________________________
t i m . w i t o r t
_______________________________________