save file or download

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • faiz03l
    New Member
    • Nov 2007
    • 4

    save file or download

    My program can catch the attachment of email but I don't know how to save the attachment(down load attachment) ?

    Can use the CommonDialog? or other?

    I need solution...
    Thank's
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Yes you can use CommonDialog Control.

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      Yes, you can use CommonDialog To Save the Path of the Attachment.

      What Objects you are using to access the Emails.." OutLook or CDO...?

      [code=vb]
      Dim strFName As String
      CommonDialog1.S howSave
      strFName = CommonDialog1.F ileName
      If Trim(strFName) <> "" Then
      ' Write Code to Save Attachment at path : strFName
      End If
      [/code]

      Regards
      Veena

      Comment

      Working...