Search for records

  • Thread starter Thread starter zoe81uk
  • Start date Start date
Z

zoe81uk

Guest
Hello there,
please help me. I am trying to build a database for a company who have many clients. I woudl like a form which has a text area where you could enter the client reference number, then press on an option button which would find the details of that client and present a form with all their details on. How do I do this?
Please reply.
Thanks for your time
Zoe
 
Have a look at this example, it should get you on the right track. Let me know if you need the 97 version

IMO
 

Attachments

Thankyou for your example thats great it will definately help.
Where did you get your animated picture from. I thought it was great. WHere can I access more.
 
Hi IMO Ive just tried the search but its telling me that the macro isnt working so I am unable to use it. Woudl you be able to send me another one? Have you any worksheets on this search?
Thanks
Zoe:)
 
Do you mean my example isn't working or have you tried to duplicate it in your DB and it's not working?

IMO
 
IMO,

I tried to recreate the same type of search list, the problem I am having is when I double click th ename to open the form, it does not open to that person, the form will open but it displays nothing.
 
I fixed the above problem, now when I have the form pop up from double clicking in the list box, I want to make that form disappear just like in yours. How do I accomplish that?
 
In the OnOpen event of the form which is opened from the Double Click add....
Code:
Private Sub Form_Open(Cancel As Integer)
DoCmd.Close acForm, "NameOfYourSearchForm"
End Sub
Hope this helps

IMO
 

Users who are viewing this thread

Back
Top Bottom