Search results

  1. D

    Thank you!

    Maybe this isn't the correct board to post this on but I cannot express the gratitude I have for everyone that helped me with my project. boblarson your patience is unending thank you for walking a noob thru the paces. Your guidence and breakdown of the vb syntax was amazing. pbaldy I could...
  2. D

    Rich Text Character Limit in Outlook Email

    Is there a character limit for sending an rich text email through outlook using VB? If there is, is there another format that would allow me to add more characters?
  3. D

    Switch from XP to Vista now Command Button not working.

    I have the following code working on my XP machine. Private Sub Command25_Click() Dim appOutLook As Outlook.Application Dim MailOutLook As Outlook.MailItem Set appOutLook = CreateObject("Outlook.Application") Set MailOutLook = appOutLook.CreateItem(olMailItem) Set appOutLook =...
  4. D

    Pull .To email address from database field.

    Back again... I have managed to get my form working and formatted quite well. I am stuck on one part. The following is the code I am using... Private Sub Command25_Click() Dim appOutLook As Outlook.Application Dim MailOutLook As Outlook.MailItem Set appOutLook =...
  5. D

    Open New Outlook email with Command button

    Access 2007 Outlook 2007 I am totally new to VB and Access. I would like to create a command button that would open a new Outlook email with the Subject and body already filled in. I tried the wizard already but to no avail. Could someone please help me with this. Eventually I want to be able...
Back
Top Bottom