Search results

  1. John Big Booty

    DMax() auto increment number

    Welcome to the forum. The following Code in the Form's On Current Event Should do the trick; If Me.NewRecord = True Then Me.YourCounterField = Nz(DMax("YourCounterField", "YourTableName"), X) + 1 End If Note; Replace X with your seed number (the number you wish your series...
  2. John Big Booty

    Instant Search Box In Access Form (Search Function in Navigation Bar)

    The search is not case sensitive :confused: Have a look at the Double Click event of the List box.
  3. John Big Booty

    Overseas aid money, is it a waste?

    That would certainly be an argument for letting NGO's do the job of distributing the money.
  4. John Big Booty

    Auto age calculate from birth date to seleted entry date

    The code here should do what you are looking for.
  5. John Big Booty

    Sub options in a form

    Welcome to the forum. What you are looking for is a cascading Combo Box set.
  6. John Big Booty

    Overseas aid money, is it a waste?

    You can either try and help people where they live, or wait for them to arrive on your doorstep as refugees looking for help.
  7. John Big Booty

    Can I have a count down of remaining chars of 255?

    Sorry the Form's On Current would need; Me.TextBox2 = 255 - NZ(Len(Me.TextBox1),0)
  8. John Big Booty

    Can I have a count down of remaining chars of 255?

    You could use the following in TextBox1 On Change event; Me.TextBox2 = 255 - NZ(Len(Me.TextBox1.Text),0) You would also need it in the form's On Current event
  9. John Big Booty

    Cascading Combo Boxes

    Your DB only has one table :eek: I think the first thing you are going to need to do is normalise your table structure, a tutorial may be helpful in this task. As it's stands I have no idea what the relationship between your three combos is or how you would filter them down :confused:
  10. John Big Booty

    Need to Create Multi Search Form

    Welcome to the forum. Perhaps the sample here is doing the sort of thing you are looking for.
  11. John Big Booty

    Weird LIKE issue

    The field Last Name has no space in it :banghead: try; SELECT CustomerID, FirstName, LastName, Phone FROM [Customer Information] WHERE LastName LIKE 'x*'
  12. John Big Booty

    Weird LIKE issue

    Try; SELECT CustomerID, FirstName, LastName, Phone FROM [Customer Information] WHERE [Last Name] LIKE 'x*'
  13. John Big Booty

    Weird LIKE issue

    Welcome to the forum. Have you tried using the * wild-card character in place of the %
  14. John Big Booty

    Invoice Query Problem

    Perhaps one of the video tutorials here will help.
  15. John Big Booty

    Randomise a selected group of rows

    Welcome to the forum. I think you should find that this article explains how to do what you are after.
  16. John Big Booty

    How to add to Combo Box with VBA

    Sorry I'm a little confused about exactly what you are trying to do :confused: Could you step us through what it is you are trying to achieve.
  17. John Big Booty

    Need help on Between query using Forms

    Try; Between Nz([Forms]![F Searchall]![StartNo], 0) And Nz([Forms]![F Searchall]![EndNumber], 100000000)
  18. John Big Booty

    Search Multiple Fields

    Perhaps the sample here is doing the sort of thing you are after.
  19. John Big Booty

    ComboBox populated by Query not showing values

    What you are looking for is a Cascading Combo Box set. The criteria you would use would be; Forms!YourFormName!YourComboName You would need to Requery the Cascaded Combo in the After Update event of the Master Combo and also in the Form's On Current event.
  20. John Big Booty

    Conditional Rolling Sum

    Perhaps the discussion in this thread is headed in the direction you want. You will need to read through the whole thread.
Back
Top Bottom