Recent content by hri

  1. H

    how to add values to the textbox using command button

    Thanks for the reply Jdraw But that is not the one iam looking for. I am a bit more clear about wat i would like to do. I have a main form called products form where i have values like product id, product description,cost and pdt type. I have a command button which opens the products form. I...
  2. H

    how to add values to the textbox using command button

    Hi, I am a new access programmer. I am developing a software for my academic project. I am using a continuous form to display product id and product name and other product related details and on the other form i have called this form using a command button. now i want to add the values i.e to...
  3. H

    How can I assign values back to the form from another form

    Hi I Have created a form which contains customer Id and all othe relating fields such as customer name etc. I have created a command button next to the customer id and When I click the button it opens another form which opens the customer table. When I click the column in the customer form i...
  4. H

    How to search multiple values in the database using a command button

    Yes Thats working now. Thank you genius. I am happy now
  5. H

    How to search multiple values in the database using a command button

    Hi I have added the codes to the vba If Len(strfilter) > 0 Then strfilter = Left(strfilter, Len(strfilter) - 5) Me.Filter = strfilter Me.FilterOn = True Me.Refresh End If But it is not showing the filtered results its just showing me the general results. Thanks
  6. H

    How to search multiple values in the database using a command button

    Thanks for the reply Actually I have designed all the search fields in the header tab and i want to display the search results in the detail tab.I have created the text boxes to display the search results and bound the controls to the database. The click fuction I have designed is Private...
  7. H

    How to search multiple values in the database using a command button

    Hi I am a new programmer in ms access. I have developed a search form that takes users first name, last name, postcode and phone number and when i click a command button it should have to search the database and retrive the records. Can anyone help me to do this. Thank you
Back
Top Bottom