E extreme Registered User. Local time Today, 13:28 Joined Sep 27, 2004 Messages 51 Jan 13, 2008 #1 Please help Can this be Done I have a form that gives you a list of clients I want to click on their box to open their projects. If this can be done How I have uploaded a pic so you can see what I mean Thanks Attachments pic3.JPG 29.7 KB · Views: 105
Please help Can this be Done I have a form that gives you a list of clients I want to click on their box to open their projects. If this can be done How I have uploaded a pic so you can see what I mean Thanks
D David Eagar Registered User. Local time Tomorrow, 00:28 Joined Jul 2, 2007 Messages 922 Jan 13, 2008 #2 Yes, you can have a continuous form (with id visible = no) and add a command button that opens project form with link of id to project fk and open specific records
Yes, you can have a continuous form (with id visible = no) and add a command button that opens project form with link of id to project fk and open specific records
KeithG AWF VIP Local time Today, 05:28 Joined Mar 23, 2006 Messages 2,591 Jan 13, 2008 #3 Yes use the double click event of the form. Once the user double clicks the record it become the current record.
Yes use the double click event of the form. Once the user double clicks the record it become the current record.
E extreme Registered User. Local time Today, 13:28 Joined Sep 27, 2004 Messages 51 Jan 13, 2008 #4 Thanks for the replys I have figured this out I used his Code Private Sub Form_Click() DoCmd.OpenForm "Client", acNormal, , "ClientID = " & Me.ClientID End Sub Works Perfect Thanks For your help
Thanks for the replys I have figured this out I used his Code Private Sub Form_Click() DoCmd.OpenForm "Client", acNormal, , "ClientID = " & Me.ClientID End Sub Works Perfect Thanks For your help