Recent content by alexriverajr

  1. A

    run event as a user types (ie: not on change)

    Thanks for the help. I saw what you did and that helped me learn.
  2. A

    run event as a user types (ie: not on change)

    Thanks. I appreciate you help!
  3. A

    run event as a user types (ie: not on change)

    The field is indeed called SearchName, below is the DB. The form in question is frmMainFormSearchGuest. In included is the file, warning this is work in progress as i'm just learning. Thanks
  4. A

    run event as a user types (ie: not on change)

    This is what I have now and I removed the filter from the query but nothing works now: Private Sub SearchName_Change() If Len(Me.SearchName & "") >= 3 Then Me.Filter = "" Me.FilterOn = False Me.Filter = "[SearchName] Like *" & Chr(34) & Me.SearchName.Text & Chr(34) & "*" Me.FilterOn...
  5. A

    run event as a user types (ie: not on change)

    Whats the end if as the bottom. Do I need to put in some type of parameter or argument? Thanks
  6. A

    run event as a user types (ie: not on change)

    I used the re-query command and it updates only when i'm out of the field. I would like to able to remain in the field. For example, with re-query I have to click on the tab key and then it updates vice when I was using refresh it would filter the items containing the type letter but it wouldn't...
  7. A

    run event as a user types (ie: not on change)

    This what I have in the OnChange event pro: Private Sub SearchName_Change() Me.Refresh End Sub And this what I have in the query which the text box filters: Like "*" & [Forms]![frmMainFormSearchGuest]![SearchName] & "*" I'm just trying to do a filter as you type textbox. Thanks in advance.
  8. A

    run event as a user types (ie: not on change)

    I'm trying to do the same but where would I be able to change these features. So far I have the OnChange but it only allow me to type in one letter and no more.
  9. A

    Filtering

    I have tried this: =DLookup("[FirstName] & ' ' & [LastName]", "Guest", "GuestNo = '" & [Reservations.GuestNo] & "'") But I get a mismatch error. Is there something glaringly wrong with this. Thanks
  10. A

    Filtering

    I'm trying to create an expression that filters out records based upon a selection in another column. Im kind of lost on where to start. Just an example of what thinking: Selection from row a filters a number of records that meet that selection. Hope this illustrates what I'm trying to...
Back
Top Bottom