Search Result

Collapse
10 results in 0.0040 seconds.
Keywords
Members
Tags
attachment
  •  

  • Outlook locking file from being edited after saving attachment

    One of my users is having a problem when saving attachments from her email. If she right clicks on the attachment, chooses Save As... and then picks a location to save the file, when she goes to edit that file name or make changes and save it or move it, she receives a message saying that the file is locked and currently in use even though she has closed the email that she got the attachment from. She has to close out of outlook completely in order...
    See more | Go to post

  • Outlook locks file after attaching to an email

    One of my users sent me an email with an attachment. Once she sent the email, she tried to move/rename the file and it said it was locked or currently in use. She didn't have it open or anything and the email she attached it to was successfully sent but when she closed Outlook completely, the file was unlocked and she was able to move/rename it.

    Why is Outlook locking files that are attached to emails and is there a way to stop this?...
    See more | Go to post

  • The Human Tangent
    started a topic Response.WriteFile & Response.Redirect
    in .NET

    Response.WriteFile & Response.Redirect

    I'm publishing a page URL
    eg mysite.com/disclaimer/someinfo
    this page shows an agreement, and if the user clicks the agree button then a PDF file is streamed as an attachment.

    The purpose of this is the user can then share this URL but anyone else following the link must also read the agreement before downloading the file. The actual file does not have a URL but is held elsewhere on the server so the only way to download...
    See more | Go to post

  • Catalyst159
    started a topic Add Attachment to form

    Add Attachment to form

    I have a linked table called "dbo_proble ms", and a form called "Problem Records Details". I have created a table called "Attachment s". The "Attachment s" table contains the following fields: ID, Problem_ID, and Attachment.

    ID is Primary Key (DataType=AutoN umber)
    Problem_ID is (DataType=Numbe r) (Indexed Yes No Duplicates)
    Attachment is (DataType=Attac hment) (Required = No)
    ...
    See more | Go to post

  • MFrederickson
    started a topic File Attachment error with smtpop

    File Attachment error with smtpop

    Hello! I'm using smtpop to try and download an e-mail from the server. I haven't been able to get past the part in the code where it attempts to get the filename from the attachment (attach.FileNam e) This comes back as "". I was wondering what the issue was as I have *not* modified the source in any way.

    Here is my code:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    ...
    See more | Go to post

  • $_FILES [var]['size'] returns 0 for small (30KB) file - why?

    I've got a php form handler which takes data from an html page and creates and sends an email with one or more attachments.
    I wanted to be smart and make sure a file had a size GREATER THAN 0. So I set
    $attachment1_si ze = $_FILES['attachment1']['size'];
    if ($attachment1_s ize > 0) {
    And my 30KB file size comes up 0.
    And the error codes showed no error.
    When I took out the test for size and assumed (oh, bad)...
    See more | Go to post

  • Can I add an Attachment to my Mail to Javascript Function?

    I'm trying to create an open mailto javascript function. Basically when a user clicks on the "email" hypertext an outlook email will open up with pre-populated TO field, SUBJECT field, and BODY field. But the next step is to attach a spreadsheet that is saved in a network drive that all users have access too.

    This is what i have so far:

    Code:
    function emailForm(){ 
    
    var email = "example@example.com";
    ...
    See more | Go to post

  • VB6 ADO retrieve image file stored in the Access 2007 attachment data type

    Dear all,

    I use VB6 ADO connect to Access 2007 accdb database, everything is fine except I cannot retrieve image file stored in the Access 2007 attachment data type.

    Can anyone show me some vb code on how to do that?

    Thanks.

    Patrick
    See more | Go to post

  • jptelthorst
    started a topic CDOSYS HTML e-mail with attachment

    CDOSYS HTML e-mail with attachment

    I want to e-mail a website, and include a .pdf attachment. I am able to e-mail the website using the code below (i only changed the url of the attachment for privacy), however, the attachment arrives with no file extension and the name "mime" If I rename this file with a .pdf extension, the file displays as normal. If I use this same code below, only with a basic textbox, the attachment retains it's file extension, however, the name of...
    See more | Go to post

  • CDO.Message.1 error '80070005' Access is denied. /emailtest.asp, line 9

    I am trying to use CDO to send email with attachments using the following code:
    Code:
    Dim myMail
    	    Dim mFile1
    	    mFile1="c:\images\a.gif" 'valid file path, file actually exists
                Set myMail=CreateObject("CDO.Message")
                myMail.Subject="some subject"
                myMail.From=mUserEmail      'valid email address
                myMail.to= mRecipientEmail
    ...
    See more | Go to post
    Last edited by Frinavale; Aug 4 '09, 03:35 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.
Working...