Search results

  1. K

    Use Query search in Navigation form

    Now I got a new problem....:banghead: I've made a from with two combo boxes to find something easier. The problem is, if I added the form (name is: TestComboBox1) to the navigation form it doesn't work anymore. I get an error like: enter parameter value "Forms!TestComboBox1!cbosuppliertest How...
  2. K

    Use Query search in Navigation form

    Sorry, still don't understand what to do first....:banghead: Sorry that i'm not understanding very well Maybe you can help me by step by step? Or show me in the access file what i've attached?
  3. K

    Use Query search in Navigation form

    Now I have another question. Don't know if i should make a new thread.... Everything is now search as you type and it's filters very detailed. That's very nice for me and others who knows what to search. I was thinking about to creating a multiple "combo boxes" that are connected to each...
  4. K

    Use Query search in Navigation form

    Thanks it's works:D
  5. K

    Use Query search in Navigation form

    Yes i've changed "OR" to "AND" And it works perfect:D
  6. K

    Use Query search in Navigation form

    Thanks it works!! :D :D One more question, if I search under category and type only the word "Holder" gives me 8 hits But it should be 9 hits because one of the cell contains "Electronic / Holder" How can i fix this? Thanks a lot I've attached the file again with a small update in the first...
  7. K

    Use Query search in Navigation form

    Oke I will do it. So if you form Test Result then you get to see 5 different search bars. What I want is for example: --Product Name: Dev --Category : Elektronic --Color : White Should give result: 1 only (DevBg2, elektronic, White) that's good.... But I can't get it done like this. If I type...
  8. K

    Use Query search in Navigation form

    Anyone who can help me with the problem what we've talked about?? Please help me I'm stuk:banghead::confused:
  9. K

    Use Query search in Navigation form

    Oke now i think i've correct them like this Code: Private Sub Opentheform_Click() Dim sFilter As String sFilter = "" If Trim([txtproductname]) <> "" Then If sFilter <> "" Then sFilter = sFilter & " or " sFilter = sFilter & "( [productname] Like '" & [txtproductname] & "*' )" End...
  10. K

    Use Query search in Navigation form

    No I don't have a separate "open the form" button But I've create one and named "opentheform in property sheet Then I've copied your code like this: And I get a error: block if without end if I only want users to search in this case... I made a form with 5 search bars to search specific item...
  11. K

    Use Query search in Navigation form

    Doesn't give any error. But it doesn't work either:(
  12. K

    Use Query search in Navigation form

    For two search bars it works great!! But what code do i need t use if i want use like six search bars...? code like this??: DoCmd.OpenForm "Product_DS", acNormal, , "[productname] Like '" & Me.txtproductname & "*' Or [category] Like '" & Me.txtcategory & "*' or [test3] Like '" & Me.txttest3 &...
  13. K

    Use Query search in Navigation form

    Thanks a lot!! I can continue :)
  14. K

    Use Query search in Navigation form

    Hello i'm using an query based search form in a navigation form. But i'm getting stuck with searching with multiple keywords. like i have 3 different search bars, where you can search very specific. Product name:........ category:....... compound:........ Code i'm using for only 1 keyword...
  15. K

    New to Access 2016 and programming from Netherlands

    Hello everyone, I'm new to Access, never work with it before. Just started working with Access a week ago by searching and watching youtube videos. Also i've zero experience in programming. I'm a beginner so please be patient with me and i'm sure i have a lot of question coming up soon. I'm...
Back
Top Bottom