Search results

  1. rainman89

    ACL Surgery- What to expect

    Update on this... Well I blew my knee again the first soccer game back after rehab... couldn't believe it.... If anyone is reading this and going through the same thing.. TAKE YOUR TIME and rehab the hell out of your knee. Surgery again tomorrow and I'll be taking my time with this one!
  2. rainman89

    Question Display UserName on the main form after log on

    you can do this using a dlookup and using the value from the combobox on the main form..
  3. rainman89

    Story

    one too many
  4. rainman89

    Story

    it sounded like
  5. 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
  6. rainman89

    Criteria for Non-Negative Numbers

    It's Friday... have one!
  7. 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?
  8. rainman89

    Criteria for Non-Negative Numbers

    is duedate a field in your table?
  9. rainman89

    Criteria for Non-Negative Numbers

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

    Webcam OCX

    Ah Laptop.... hmmm.... no way i know of besides turning the laptop on its side... :eek:
  11. 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?
  12. rainman89

    Story

    y-front wearing masked
  13. 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
  14. 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
  15. rainman89

    open form from another form

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

    Story

    he was confused
  17. rainman89

    Story

    full and happy
  18. 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...
  19. rainman89

    Running a Macro that runs a query

    do setwarnings = No before running the queries and setwarnings = yes afterwards
  20. 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
Back
Top Bottom