Recent content by MayaMana

  1. M

    Data Type Mismatch in Criteria Expression

    RECV_TPT1 is set as a text field at the moment. The data in it is a date format of DD/MON/YY. plog - I am going to try that now and see what shows up, thank you. I am rusty at this and am trying to help out someone else with a database they inherited. update: they all seem to work on their...
  2. M

    Data Type Mismatch in Criteria Expression

    I am working on a database that someone else created and the following expression is being used in a query: TPT1Date: IIf(Mid([RECV_TPT1],3,1)="-",DateValue([RECV_TPT1]),IIf([RECV_TPT1]="null",Null,IIf(Mid([RECV_TPT1],5,1)="-",DateValue(Mid([RECV_TPT1],6,2) & "/" & Mid([RECV_TPT1],9,2) & "/" &...
  3. M

    "Object variable or with block not set"

    Well I haven't had any issues with it without using them. So thank you for making me wish I never bothered putting anything up on here.
  4. M

    "Object variable or with block not set"

    It would only need the [] if there was a space or / or in the name. Also I made those a bit generic they aren't labeled the same in my actual form. BigHappyDaddy, you are right that was my issue. I was just getting back on to say I'm an idiot lol. I went through and fixed it so that the "End...
  5. M

    "Object variable or with block not set"

    Yes I changed, Dim db As Database to Dim db As DAO.Database I am not sure how to add a break in the code. I forget how to force the debug to show something, when it doesn't automatically do it. It seems that the vba code no longer likes my IF code If Not IsNull(Me.dp1) Or Me.dp1 <> "" Then...
  6. M

    "Object variable or with block not set"

    I added DAO. before the database and record set and changed everywhere I had sn to rst. I still get an error stating that After reading through those sites that was the only difference I could find in terms of what they are talking about. I am still relatively new to all of this, so I may be...
  7. M

    "Object variable or with block not set"

    Hey, I recently switched over to using SQL for the backend of my Access databases. The codes I have use to work, all I have just modified them a little to be able to use the SSRS easier. However since I made the changes I keep getting an error message stating: My code is basically the following...
  8. M

    Editable E-mail attachment

    I hadn't thought of that. I will check it out and get back you. Thanks :) ::edit:: I can't find a way to format that, to look like a professional document that can be filed. Right now it is being edited in word and sent out that way. I am creating a database to make this process more streamline.
  9. M

    Editable E-mail attachment

    Hey I have been searching the forms and other places online for the past few weeks and I am still stumped. :confused: I am trying to find a way to: 1) Send an e-mail of the current record displayed on the form/report. 2) Have the recipient of the e-mail be able to edit/add to the document and...
  10. M

    hyperlink to (non-network file) to email

    I would suggest attaching the file to the database. Then sending it as an attachment through the database. Unless there is a reason you need the files to be pulled from other locations.
  11. M

    Label Visibility VBA

    Hey try: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Me.lblUPSINVNAFTASTMT.Visible = Nz(Me.FUELTYPE, "Diesel") End Sub It will still show up in report view, but it will not print it.
  12. M

    Email in Body

    Thank you so much! I knew it had to be something little.
  13. M

    Email in Body

    I am trying to send a report in the body of an e-mail rather then by attachment. Reason being too many complaints about the attachments; extra steps to view, looking distorted when viewed on small screens, etc..) The following are two codes I have modified to use however I get errors on both of...
  14. M

    Unique Record (Multiple Tables)

    I think it had to do with there not being an unique identifier in one of the views I was given to use. I am not sure for certain though. The guy made another view for me and it now seems to be working fine, I had him add in a few more fields including an identifier field.
  15. M

    txtDate Sequencing/record check

    Well thank you for your lovely help.
Top Bottom