Recent content by Yecats131

  1. Y

    Form Search Question

    I've hit a road block in doing it the way that the document says. I've written the following code: Option Compare Database Public StartDate As Date Public EndDate As Date Public Function SearchStartDate() As Date SearchStartDate = StartDate End Function Public Function SearchEndDate() As...
  2. Y

    Form Search Question

    I hate to tag onto your original post but I followed the video that you referenced earlier and I seem to be stuck. I've setup my text boxes so that they default to null values and written the following statement for my Run Query Button: Private Sub btnRunQuery_Click() DoCmd.OpenQuery...
  3. Y

    Data type mismatch in criteria expression

    Okay.. So I figured out my own problem. :) For those who are interested my problem was because the columns were lookup columns. So, I was typing "pending" which is what is displayed, but the actual value is "1".
  4. Y

    Data type mismatch in criteria expression

    Actually, I've officalled decided that my problem is not related to item #1 on my list above. I've removed the calculated fields and I am still recieving the error.
  5. Y

    Data type mismatch in criteria expression

    Hello, I'm trying to write a query that does a few things. They are: 1. Holds two calculated fields. One calculates the 15th day from the effective date and the other calculates the 21st day after the effective date. 2. Displays records that fill in the following criteria: A. LifeForm =...
  6. Y

    DateSerial Problem

    Ahh I see! Thank you everyone. :)
  7. Y

    DateSerial Problem

    Oh interesting. So i take it I could modify: =DateAdd("d", 15, [EffectiveDate]) to say =DateAdd("y", 15, [EffectiveDate]) to update the year? or "m" to update the month? Does anyone have a good site for these functions? I'd love to find a place to read about them all.
  8. Y

    DateSerial Problem

    Hehe! :) What is the difference between DateSerial and DateAdd?
  9. Y

    DateSerial Problem

    Oh, it seemed to work when I removed the table information. :) Thanks!
  10. Y

    DateSerial Problem

    Oh, I have a Hire form and this is on a sub form (BenefitHires)
  11. Y

    DateSerial Problem

    Hello, I’m not sure if this belongs in the general section.. so I apologize ahead of time if it does not. I am trying to calculate a date field based on an EffectiveDate in another table. This is the expression that I have...
  12. Y

    Attachment View

    Nope :( I still have not figured it out.
  13. Y

    Need to copy Text from one form to another

    Okay first let me explain what I am trying to accomplish: I have two forms: Requisitions Applicants I need to copy text over from the requisitions table to the applicants table. This is done based on when the user types the Req# in on the applicant form. Basically, the requisition is...
  14. Y

    Attachment View

    That is exactly what I want to do. :0)
  15. Y

    Attachment View

    Hello! I would like to accomplish two things. (I"ll be happy if I can at least figure out one of them!) ;) 1. I would like to change the view of the built in attachment to display the list of documents instead of a picture. 2. I would like to build a 'preview' screen of the items attached...
Back
Top Bottom