Search results

  1. K

    multiple attachments in one email

    Im still waiting. Please someone guide me.
  2. K

    multiple attachments in one email

    Hi Minty Thanks for the response. How Can I create a loop and send them. Can you please guide me doing this.
  3. K

    multiple attachments in one email

    Hi Stopher I went thru your code. It attaches two different reports. Whereas I want to attach multiple records of one report. Each record consists of one page and clicking the send button only sends the currently opened record. Sometimes I need to send more than one record of the same report.
  4. K

    multiple attachments in one email

    Hi thr I have a report showing one record at a time and a send button on the same report/record. Clicking the button sends a pdf version of the active report/record via outlook. Till here everything works well. The issue arises when there are more than one records to be sent. If we have to...
  5. K

    Primary key as subject

    oh great it worked. Thanks alot
  6. K

    Primary key as subject

    Yes, the button is on the report with the primary key on it and report is based on a query. This code is working perfect except I want the primary key e.g 001 to be displayed as the subject of the email so that the recipient knows the record from the subject and can easily differentiate and...
  7. K

    Primary key as subject

    I have a button that send a report in email. The code behind the button is DoCmd.SendObject acSendReport, "", acFormatPDF, _ "email", "ccemail", , _ "Subject", , True I want the subject to take the the primary key of the opened record. How to change the coding so that it takes it...
  8. K

    send form as an attachment

    Ok got it and done successfully. Thanks
  9. K

    send form as an attachment

    Is there a way to create a report that mimics the form to the tee?? If yes, how to do that? So thr is no way to send a current active form as an attachment?
  10. K

    send form as an attachment

    Someone please help me out in doing this. I can't achieve
  11. K

    send form as an attachment

    Can u plz guide me how to do that.
  12. K

    send form as an attachment

    I have this code but this send all the 3000 plus forms. DoCmd.SendObject acSendForm, "", "(*.pdf)", mailList, " emailaddress ", , subText, message, False just want the active form to be sent as attachment. Plz help me out.
  13. K

    send form as an attachment

    Hi friends I have form where data in entered by data entry operators. For some reasons I need the current opened form to be send as an attachment in email. How to achieve this. Plz help me.
  14. K

    display field based on condition

    Thanks for the help
  15. K

    display field based on condition

    Thanks alot I put it in Query and it worked perfectly. Thanks once again
  16. K

    display field based on condition

    Sorry for being naive but do I have to write this in Query or Coding? If in coding, which event?
  17. K

    display field based on condition

    Hi friends I have three delivery dates in my form. Customer DD(Given by customer), Our DD(agreed by the us, the company) and Revised DD (in case the DD has been revised). But have one field in the report to show the DD. Now the logic behind is that the field should display the Revised DD but...
  18. K

    Record Locked error

    How can I get rid of "Could not update, record locked" error? My DB is split into be and fe and record lock is set to No and shared is set to yes. Please help, I tried to find solution online and in the previous posts but in vain.
  19. K

    Not to change the record

    Thanks Working
  20. K

    Not to change the record

    Hi friends I have a form where a particular field is required not to be edited once data is entered into it. It means user can enter the data for the first time but after that, he cannot edit/change it. I know about record lock property but that locks the field to enter the data even for the...
Back
Top Bottom