Search Result

Collapse
27 results in 0.0043 seconds.
Keywords
Members
Tags
outlook
  •  

  • Exchange disconnected WIndows 7 over VPN Server 2003

    Really strange problem here.

    I have a server SBS 2003 and exchange 2003. I have several laptops working over vpn and recently have a few acer travelmate laptops with win7 64bit (same as the others).

    The problem is when I try connect over vpn these laptops get access to shared folders etc. but ms outlook 2010 shows disconnected. If I log in with domain admin account outlook connects fine over the same vpn connection....
    See more | Go to post

  • 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

  • Passing Values from Silverlight Application to Outlook Add-in

    Hi,

    I have created an Outlook addin and added Ribbon designer to add buttons, from there I have created an instance for Internet Explorer and from that IE instance I navigated to my Silverlight aspx page .

    Code:

    Code:
    public  SHDocVw.InternetExplorer IE1 ; 
          public void IEInstanceCls() 
          { 
              IE1 = new SHDocVw.InternetExplorer(); 
              object Empty
    ...
    See more | Go to post

  • sandy armstrong
    started a topic Email using Outlook from Excel

    Email using Outlook from Excel

    First off let me start by saying that i love this site... Because of this site and especially the help of an expert programmer Guido i am able to provide the programing help to a new company that is being built from nothing, i am thankful.
    I have been asked if there is a way to send out emails from excel. I know there is but what i would like to accomplish is every time data is entered into excel no matter what time it is it sends in email...
    See more | Go to post

  • NeoPa
    started a topic How do I Reference an Item in a Collection by Name

    How do I Reference an Item in a Collection by Name

    This may be more complicated than indicated by the title as the collection I'm referring to is a CommandBars collection found in a Microsoft.Offic e.Interop.Outlo ok.Inspector from VSTO 2005 SE.

    In Outlook VBA I might typically have an Inspector object (equivalent to Microsoft.Offic e.Interop.Outlo ok.Inspector in C#) named VBAInspector and within that Inspector I could refer to :
    Code:
    VBAInspector.CommandBars("View")
    ...
    See more | Go to post

  • Sync outlook contacts linked table with universal table

    Hi Everyone:

    I hope someone can figure out what I am missing as this is not working properly for me.

    Background: I was tasked with creating a database to store contact information in, which would be utilized by our sales team to track leads. Until this point, all contacts were either manually entered or imported and all has been working well. A new request was made to basically sync that table with outlook. For...
    See more | Go to post

  • How do I Set or Clear the Visibility of the BCC Field in a MailItem using Outlook VBA

    I have developed some code to add an address to the BCC field in an Outlook MailItem :

    Code:
    Private Sub VBAInspectors_NewInspector(ByVal Inspector As Inspector)
        With Inspector.CurrentItem
            If .Class = olMail Then
                ' Note the current visibility of the BCC field
                With .Recipients.Add(conBCC)
                    .Type = olBCC
                    Call .Resolve
                End
    ...
    See more | Go to post
    Last edited by NeoPa; Sep 5 '11, 11:48 PM. Reason: Got a line # wrong (Doh!)

  • send MIME email with HTML and javascript to Outlook

    Hi All,

    I use html to dump some statistics I collect from different servers, and them email this file via SMTP email.

    Basically I email html pages with mime type

    Code:
    Content-Type: text/ html
    No I wish to add javascript to these html pages, to make them dynamic and more useful.

    I have tried changing mime to
    Code:
    Content-Type: text/ javascript
    Content-Type:
    ...
    See more | Go to post

  • Nigel Wallace
    started a topic Access 2003 opening a IPM.NOTE from outlook

    Access 2003 opening a IPM.NOTE from outlook

    Hi,

    Currently I have access 2003 opening a pre-formatted email for the user to make final amendments to or just send.
    Can any one tell me how I would go about getting access to open a custom form from the organisational library say IPM.NOTE.FORM1

    thanks

    Nigel
    See more | Go to post

  • How to open outlook to run behind my application?

    Hi
    I have designed a button that sends a mail “automated” by the system. But it doesn’t work if outlook is closed. And I have a string of code that opens outlook but then it opens on top of my app.
    Is there a way to open outlook to run behind the app.
    this is the coding so far.

    Code:
    Private Sub Command131_Click()
    
    MyAppID = Shell("C:\Program Files\Microsoft Office\OFFICE12\Outlook.exe",
    ...
    See more | Go to post

  • How to create a MS Outlook Provider using SQL Server?

    I have read various articles over and over again, including http://www.outlookcode .com/article.aspx?ID =25 and I cannot understand how to create a MS Outlook Contacts Provider in VB.NET

    I have a whole lot of Contact information that is stored and maintained in a SQL Server database. I want to be be able to mirror / replicate this information in MS Outlook.

    I acn write MS AddIn to copy the data from SQL Server to MS Outlook...
    See more | Go to post

  • Saving attachment location to Access table - filepath code?

    I have some code which saves emails into a database, creates new folders for new senders etc etc but what I now want to do is when a new email comes in, i want any attachments to be saved into a table (by saving the location and then having the ability to go back in and open it from that location)... All I really need is the code which will show the filepath... does anybody know how to do this? Any replies appreciated.
    See more | Go to post

  • VBA Outlook MAPI Folders Error: 'Cannot Move Emails' - refer to unspecified folder?

    I am essentially looking for a bit of code which will allow me to refer to an unspecified MAPI folder. Just to put that into context, My code creates a new folder if there is a new sender, the new folder is automatically created by using the domain name of the senders email address. I then want to move the relevant email into that folder (which is why it is unspecified) does anybody know how I would go about this?
    See more | Go to post

  • Search outlook address book from VB.NET

    I'm trying to search the global address book at my company (over 56,000 entries) based on a user name input into a text field. Is there a built in serach method that I'm missing, or would I have to sort the entire list and use a binary search?

    Code:
            Dim o As Outlook.Application
            Dim ns As Outlook.NameSpace
            Dim al As Outlook.AddressEntries
            Dim entry As Outlook.AddressEntry
    ...
    See more | Go to post
Working...