Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Validate on email field in Outlook Contacts form

Status
Not open for further replies.

andy98

Programmer
Jul 7, 2000
120
GB
Hi

Is it possible to validate the email field in an Outlook contacts form with possibly a regular expression or something?
 

I dont know mate but i ahve a reminder adder which my help you

Code:
     Function AddOutLookTask()
         Dim appOutLook As Outlook.Application
         Dim taskOutLook As Outlook.TaskItem
         Set appOutLook = CreateObject("Outlook.Application")
         Set taskOutLook = appOutLook.CreateItem(olTaskItem)
      With taskOutLook
          .Subject = "This is the subject of my task"
          .Body = "This is the body of my task."
          .ReminderSet = True
          .ReminderTime = DateAdd("n", 10, Now) ' Set to remind us 2
                                                ' minutes from now.
          .DueDate = Sheet1.[L4]       ' Set the due date to
                                                ' 5 minutes from now.
          .ReminderPlaySound = True
           'add the path to a .wav file on your computer.
          .ReminderSoundFile = "C:\Win95\media\ding.wav"
          .Save
      End With
     End Function
 
Hi, thanks for that

Although I am not too sure of the relevance of it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top