Results 1 to 4 of 4
  1. #1
    Mohammadsharif is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Oct 2014
    Posts
    8

    search and edit members

    I have registered members and groups in my access database and i want to create a search form that enable me find and edit registered members of groups.but i dont know how to do this please help me

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    Make a form (tabbed multi record) with a box to enter the search name. Rename it txtName

    make a query to do the find...it will be like:
    select * from table where [name] like *" & forms!frmFind!txtName & "*"
    Call it qsFind
    In the AFTERUPDATE event of the txtName box, assign the qsFind to the form. Me.recordsource = "qsFind"

    another button to EDIT on the selected record:
    docmd.openform "frmEdit",,"[id]=" & me.ID

  3. #3
    Mohammadsharif is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Oct 2014
    Posts
    8
    Click image for larger version. 

Name:	Capture.PNG 
Views:	7 
Size:	12.8 KB 
ID:	20283 thanks for reply i want to have some thing like this format ..what u sayed is too complicated

  4. #4
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    Then you dont need the box, just put the cursor in the name box and press CTRL-F

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Search form with a Edit Button
    By gebmiller1984 in forum Forms
    Replies: 5
    Last Post: 02-14-2015, 11:54 AM
  2. Search/Edit form creation
    By Hagridore in forum Forms
    Replies: 11
    Last Post: 01-21-2015, 11:17 PM
  3. All family members with one address
    By Grams in forum Access
    Replies: 5
    Last Post: 08-25-2014, 05:51 PM
  4. Replies: 24
    Last Post: 02-04-2014, 07:26 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums