Search results

  1. rainman89

    Story

    one too many
  2. rainman89

    Story

    it sounded like
  3. rainman89

    Error when trying to update a query

    Check out this post and see if it helps you http://www.access-programmers.co.uk/forums/showthread.php?t=95696
  4. rainman89

    Criteria for Non-Negative Numbers

    It's Friday... have one!
  5. rainman89

    Criteria for Non-Negative Numbers

    ok, so its not an actual field in the table then. Try DaysLate: iif(([DateRented] +5)-[DateReturned] <0, 0, ([DateRented] +5)-[DateReturned] ) if duedate is the name of a field on your form, the previous entry I had would work... Are you sure the name of the field is dueDate?
  6. rainman89

    Criteria for Non-Negative Numbers

    is duedate a field in your table?
  7. rainman89

    Criteria for Non-Negative Numbers

    use an iif statement DaysLate: iif([DueDate]-[DateReturned] <0, 0, [DueDate]-[DateReturned] )
  8. rainman89

    Webcam OCX

    Ah Laptop.... hmmm.... no way i know of besides turning the laptop on its side... :eek:
  9. rainman89

    Webcam OCX

    I know you probably thought of this, but instead of looking for a new ocx, What if you turn the camera on its side? Is the picture too long then?
  10. rainman89

    Story

    y-front wearing masked
  11. rainman89

    Conditional Visibility Based on Value of Another Field

    im sorry, i didnt see you wanted it on a report.. you can do it in the on format event of the report
  12. rainman89

    Conditional Visibility Based on Value of Another Field

    You can do this with an if statement in vb using the .visible property of the textboxes Something like if status="green" then textbox1.visible=false textbox2.visible=false else textbox1.visible=true textbox2.visible=true end if Oh and you can put it in the oncurrent event of the form
  13. rainman89

    open form from another form

    You can do this using the button wizard.. no need for macros
  14. rainman89

    Story

    he was confused
  15. rainman89

    Story

    full and happy
  16. rainman89

    Running a Macro that runs a query

    Same here, not to the 97 part, but ive steered away from them. I am starting to see the light when using them for certain things though... ie make table queries on startup etc...
  17. rainman89

    Running a Macro that runs a query

    do setwarnings = No before running the queries and setwarnings = yes afterwards
  18. rainman89

    Sending Forms to multiple persons to fill out

    There are many articles out there about splitting your database Heres one http://www.databasedev.co.uk/split_a_database.html
  19. rainman89

    Sending Forms to multiple persons to fill out

    if you all have access to the shared drive, look into splitting your database and giving each user their own front end. This should allow all users to enter data into the database directly
  20. rainman89

    AfterUpdate() calculation

    Can you post up a sample database? Id like to see some data and give it a try
Back
Top Bottom