CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 1999
    Location
    Vietnam
    Posts
    71

    How to create a Outlook.Application object by VBScript within message content (HTML format)

    Thanks

    Do Quyet Tien

  2. #2
    Join Date
    Mar 2001
    Location
    Israel
    Posts
    116

    Re: How to create a Outlook.Application object by VBScript within message content (HTML format)

    Sub cmdAcount_Click()

    Dim MyItem ,myApp
    Set myApp =CreateObject("Outlook.Application")
    Set MyItem = myApp.CreateItem(0)

    MyItem.To = "Me"

    Set MyItem = Nothing
    Set myApp = Nothing
    end sub


  3. #3
    Join Date
    Jun 1999
    Location
    Vietnam
    Posts
    71

    Re: How to create a Outlook.Application object by VBScript within message content (HTML format)

    Thanks for your reply

    But my problem not in coding, I think it is security restricted problem. More clearly, How can I enable script executing in HTML mail message with access permission to objects ?

    Do Quyet Tien

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured