Recent content by james_IT

  1. J

    Open accdb without MS Access

    thank you both for your responses. I will try runtime on their PC's - looks like it might do the trick. Might have to do some more error checking! cheers
  2. J

    Open accdb without MS Access

    Hi - I have MS Access on my PC however wish to move the accdb file to a network location to allow other network users to have access to it. Unfortunately a few of the other users do not have MS Access. Is it possible for them to still open the database without any admin or background - I would...
  3. J

    If dates are null then return all records

    once again...you sir are THE MAN. thank you and have a nice weekend
  4. J

    If dates are null then return all records

    thanks - trying Between ([Forms]![FilteringForm]![txtStartDate]) And ([Forms]![FilteringForm]![txtEndDate]) Or Between DMin("BookingDate","Bookings") And DMax("bookingdate","bookings") but i've gone wrong...?
  5. J

    If dates are null then return all records

    hiya - just input some more test data. If date fields are left blank, it only displays records up to today's date?? I.e. it doesn't show ALL records, past and future?
  6. J

    If dates are null then return all records

    thanks very much - the db will not include historic data - only data from go-live onwards so i dont think ill have an issue. thanks anyway
  7. J

    If dates are null then return all records

    you're a star!! Thank you so much
  8. J

    If dates are null then return all records

    Hi - i have a query with the following code which searches the 'BookingDate' field for records between two dates: Between [Forms]![FilteringForm]![txtStartDate] And [Forms]![FilteringForm]![txtEndDate] this works fine however if the user doesnt put any dates in either box how can i return all...
  9. J

    Filter sub form between two dates in text fields

    can anyone help? im at a dead end - tried a few things to no avail
  10. J

    Filter sub form between two dates in text fields

    please see attached example db. really would appreciate any guidance. thanks
  11. J

    Filter sub form between two dates in text fields

    thanks for the response. i've had a look but still struggling... :confused:
  12. J

    Filter sub form between two dates in text fields

    My subform filters fine with combo boxes. One of the fields in the subform is a date which I would like to be able to filter from a txtStartDate and txtEndDate. I'm using the following code but I cant get it working (getting an error code 3075) Public Sub SetFilter() On Error GoTo...
  13. J

    Filter listbox by combo box where some text matches

    Hi, I have a listbox which is filtered by combo boxes which works fine - the list box filters when the content of the combo boxes exactly matches data in a column of the list box. I use the following code to filter the listbox: If Not IsNull(Me.ArtworkSource) Then strFilter = strFilter &...
  14. J

    Outlook has stopped selecting the first email in a folder

    ok figured it out. just took of reading pane and restarted outlook and turned reading pane back on and now its working again! weird. thanks for your help anyway
  15. J

    Outlook has stopped selecting the first email in a folder

    ye looked at those settings and cant see anything wrong. any other ideas? it happens when i switch between folders. normally it highlights the top message but it just greys out now...
Top Bottom