Hi I am creating an invoice database.
In its simplist form I have three forms, which are tied to tables customers and invoices
and as such form:
1) Contains Basic client information
2) Contains info on invoices.
3) contains info of invoices.
the table are linked by a record id called [who]
and the invoices by one called [invocenum]
I have two forms for invoces because for the first invoce I do not need to show information about previous invoices whereas for any invoce creater than 2 I need to showinfo from the previous invoice.
The problem I have is that I want to beable to open my invoices to the last invoice created.This works fine for invoice 1,2 and 3. However for some reason my form always opens to invoice number 3 when the value goes above
3. and the record controls at the bottom of the form show that invoce 3 is infact the last record where invoice 4 is at record location 3.
i use the command
DoCmd.GoToRecord , , acLast
Any Ideas to this?
Thanks in advance
Paul
In its simplist form I have three forms, which are tied to tables customers and invoices
and as such form:
1) Contains Basic client information
2) Contains info on invoices.
3) contains info of invoices.
the table are linked by a record id called [who]
and the invoices by one called [invocenum]
I have two forms for invoces because for the first invoce I do not need to show information about previous invoices whereas for any invoce creater than 2 I need to showinfo from the previous invoice.
The problem I have is that I want to beable to open my invoices to the last invoice created.This works fine for invoice 1,2 and 3. However for some reason my form always opens to invoice number 3 when the value goes above
3. and the record controls at the bottom of the form show that invoce 3 is infact the last record where invoice 4 is at record location 3.
i use the command
DoCmd.GoToRecord , , acLast
Any Ideas to this?
Thanks in advance
Paul