Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to creat a job history

Status
Not open for further replies.

RyDan46

MIS
Mar 28, 2005
24
GB
Iv creating a customer database and ive created a forum with the customers info, but at the bottom of each customers page i would like a list box where u can click on a date and it will come up with enough form, with info on the job done at that date.

Has anyone got any advice on how i can do his

many thanks in advace

RyDan
 
Hi
How about something like this:
Code:
DoCmd.OpenForm "NewForm", , , "CustomerNo = " _
    & Me!CustomerNo & " And Date=#" & Me!ListBox & "#"
It takes advantage of the Where property of the OpenForm method.

You might prefer to use a subform on your Customer form, listing all jobs?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top