I am unable to use the "email us" on some sites Web, the error message is ' no e-mail program associated to this.

Original title - Outlook Live

Or direct or Outlook appear on win 7 list of default programs, so I am unable to use the "email us" on some sites Web, the error message is ' no e-mail program associated to this "" go to default programs and associate.   Even though I have a Live (and Outlook account, they are not listed by default in the programs.  I can send and receive emails in 'Live' and prospects, but cannot associate, because they are not displayed.  I don't have MS Office.  I use the email from Comcast, but also does not appear.   Absence of a response, does anyone know how to make the "no e-mail program associated to this" work?

Hi Michael,

Please answer this question to get more clarity on this issue.

  • You have installed Windows Live Mail email client?

This problem may occur if Windows Live Mail or Microsoft Outlook is not installed on the computer.

If you don't have Windows Live Mail, you can download and install Windows Live Essentials to check the status.

You can download Windows Live Essentials here: http://www.microsoft.com/en-us/download/details.aspx?id=3945

Reference article.

Windows Essentials: http://windows.microsoft.com/en-us/windows-live/windows-essentials-help#v1h=tab4

Response with the State of the question and we will be happy to offer you our help.

Tags: Windows

Similar Questions

  • Unable to display the error message using the controller extension

    Hello

    I am trying to extend standard iproc CheckoutDistsCO. I have to display the error message when the quantity entered is '0 '. So I wrote logical when you click on the apply"" button. I created an extension CheckoutDistsCOEx & written logic here... but I am able to see messages in the log file, but no error message on screen.

    After having many forums I place super.processFormRequest (pageContext, webBean); at the end. It start always error message.

    Standard CheckoutDistsCO has a logic in the button apply. I think it is the substitution of the extension code... How can I fix? Pointers appreciated please

    package xxtr.oracle.apps.icx.por.req.webui;

    Import oracle.apps.fnd.framework.OAApplicationModule;

    Import oracle.apps.fnd.framework.OAException;

    Import oracle.apps.fnd.framework.OAFwkConstants;

    Import oracle.apps.fnd.framework.OARow;

    Import oracle.apps.fnd.framework.OAViewObject;

    Import oracle.apps.fnd.framework.webui.OAPageContext;

    Import oracle.apps.fnd.framework.webui.beans.OAWebBean;

    Import oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean;

    Import oracle.apps.icx.por.req.webui.CheckoutDistsCO;

    Import oracle.jbo.domain.Number;

    java.lang.String import;

    public class CheckoutDistsCOEx

    extends from {CheckoutDistsCO}

    {} public processRequest Sub (pageContext OAPageContext, OAWebBean webBean)

    super.processRequest (pageContext, webBean);

    }

    {public processFormRequest (pageContext OAPageContext, OAWebBean webBean) Sub

    super.processFormRequest (pageContext, webBean);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    pageContext.writeDiagnostics (this, 'seized in PFR method", OAFwkConstants.STATEMENT);

    If (pageContext.getParameter ("Return")! = null) {}

    String applyevent = pageContext.getParameter (EVENT_PARAM);

    If (applyevent.equalsIgnoreCase ("return")) {}

    pageContext.writeDiagnostics (this, "clicked the Apply-back button" + applyevent, OAFwkConstants.STATEMENT ");

    OAException message = new OAException ("clicked on Apply-back put the message in the dialog box" + applyevent, OAException.INFORMATION);

    pageContext.putDialogMessage (message);

    OAViewObject poreqdistvo = (OAViewObject) am.findViewObject ("PoReqDistributionsVO");

    pageContext.writeDiagnostics (this, "display object = >" + poreqdistvo, OAFwkConstants.STATEMENT);

    OAAdvancedTableBean xxProjectDistsAdvTable = (OAAdvancedTableBean) webBean.findChildRecursive("ProjectDistsAdvTable");

    Line OARow = (OARow) poreqdistvo.getCurrentRow ();

    If (line! = null) {}

    pageContext.writeDiagnostics (this, "line Found"+ row, OAFwkConstants.STATEMENT);

    Number of xxtrqty = (Number) row.getAttribute ("ReqLineQuantity");

    pageContext.writeDiagnostics (Thi, "get attribute reqlinequantity" + xxtrqty, OAFwkConstants.STATEMENT);

    If (xxtrqty.intValue () == 0) {}

    pageContext.writeDiagnostics (this, "in comparing to 0 xxtrqty" + xxtrqty.intValue (), OAFwkConstants.STATEMENT);

    throw new OAException ("Enter valid amount", OAException.ERROR);

    }

    }

    else {}

    throw new OAException ("no line Found Else", OAException.ERROR);

    }

    }

    else {}

    throw new OAException ("not in"apply button", OAException.ERROR);

    }

    super.processFormRequest (pageContext, webBean);

    }

    }

    Thank you

    TR

    For example, when you comment on the super. PFR, you receive the error message on the right of the screen?

    Can you try this code and paste the debug log.

    public class CheckoutDistsCOEx extends CheckoutDistsCO {
        public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
            super.processRequest(pageContext, webBean);
        }
    
       public void processFormRequest(OAPageContext pageContext, OAWebBean webBean) {
      //super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            pageContext.writeDiagnostics(this, " ----> Entered into PFR Method", OAFwkConstants.STATEMENT);
            String applyevent = pageContext.getParameter(EVENT_PARAM);
      pageContext.writeDiagnostics(this, " ----> applyevent: " + applyevent, OAFwkConstants.STATEMENT);
            if (applyevent.equalsIgnoreCase("return")){
      pageContext.writeDiagnostics(this, " ----> Inside If", OAFwkConstants.STATEMENT);
                OAViewObject poreqdistvo = (OAViewObject)am.findViewObject("PoReqDistributionsVO");
                OARow row = (OARow)poreqdistvo.getCurrentRow();
      pageContext.writeDiagnostics(this, " ----> row : "+ row, OAFwkConstants.STATEMENT);
                if (row != null) {
      Number xxgesqty = (Number)row.getAttribute("ReqLineQuantity");
      pageContext.writeDiagnostics(this, " ----> xxgesqty : "+ xxgesqty, OAFwkConstants.STATEMENT);
                    if (xxgesqty.intValue() == 0) {
      pageContext.writeDiagnostics(this, " ----> throwing errro : ", OAFwkConstants.STATEMENT);
      throw new OAException("Enter Valid Quantity ",OAException.ERROR);
      }
      }
                else {
      pageContext.writeDiagnostics(this, " ----> No Row Error", OAFwkConstants.STATEMENT);
      throw new OAException("No Row Found Else ",OAException.ERROR);
      }
      }
      pageContext.writeDiagnostics(this, " ----> Calling Super", OAFwkConstants.STATEMENT);
            super.processFormRequest(pageContext, webBean);
        }
    }
    

    See you soon

    AJ

  • Unable to control the error message calendar get "check your account information and agree with him.

    I am unable to order a calendar in iPhoto.  Continue to receive the error message "your account information has changed.  "Please review you account information and approve it.  My delivery/billing address is correct.  Please notify.

    Access your account online and delete page and re-enter all billing information.  Also make sure you have the correct print product store deleted in the pane of the Advanced preferences in iPhoto.

    Restart and try again.

  • Cancel the error message in Windows Vista Mail outgoing

    How to cancel the error message. that relates to blocked emails in the

    Outgoing mail box. I'm unable to delete these emails, but am not prevented from

    Another outgoing mail but sending the o continuous Error Message popping up.

    Check to work offline, and then delete the messages in the Outbox. If the problem persists, try to compact and repair the database with this tool.
     
     
     
     
     
  • Cannot read CDs/DVDs, get the error "file does not have a program associated with it for this task" under XP

    Cannot read a cd or dvd to print

    Hi WayneMarkland,

    ·         What happens when you try to play an audio CD?

    ·         How do you print DVDs?

    ·         When exactly do you get the error message?

    I suggest trying the Microsoft Fixit and/or manual steps from the following links and check if it helps:

    Diagnose and repair Windows files and folders problems automatically

    You receive an error message when you try to start a program that has the an.exe file name extension

    How to change or choose the program that starts when you double-click a file in Windows XP

    I hope this helps.

  • using the error message to liquefy

    I can't save the picture once I used to liquefy in PSCC. pop-up error message - this operation could not be refused access. someone knows how to fix this?

    Hello

    If you use a mac make sure you have read-write access to the folder you are trying to save your file to.

    Kind regards

    Sahil

  • The removal of the error message from Windows Live Mail

    On-line e-mail address error. The error returns and I can' delete it there.

    Hello

    As the issue is specifically related to Windows Live mail, I suggest you to post the question on the link below.

    http://www.windowslivehelp.com/product.aspx?ProductID=15

  • Receive the error message "it is not sure an activeX on this page control. Your current security setting prohibit execution of dangerous controls on this page ".

    control activeX on this page is not safe. Your current security setting prohibit execution of dangerous controls on this page. as a result, this page may not display as expected

    * title original-one on this page activeX control is not safe. Your current security setting prohibit execution of dangerous controls on this page. Accordingly, this page may not display as intended *.

    Hi TommyMak,

    What are you trying to do when you get this error?

    Please see the following link for possible troubleshooting:

    http://zone.MSN.com/en/support/article/support1022.htm

    I hope this helps!

  • HP Envy 120 printer prints OK but the error message after each document

    After upgrading the firmware in my printer, I now get a window pop up with the title, "Unable to communicate with printer" at the end of each document.  The error message should be cleared before the next document in the queue will print.  Each document prints correctly despite the error message.

    Another thing that may cause this condition besides the update of the firmware is this: I have set up my printer for wireless printing, which worked OK.  However, I am currently using the printer with a wired USB connection.  Of course, the version non-reseau of the printer is selected as my printer 'default' regarding this error report.  The update of the firmware was held at the same time that change this "setup".

    Hey @rrbNevada,

    Welcome to the Forums of HP Support!

    I understand that your printer HP Envy 120 seems to have an error "Unable to communicate with the printer" after each print job is printed and this problem seems to have started after an update of the firmware running and change your connection type. Maybe it's a coincidence.

    For me to help you I need to know what operating system you print since?

    What is my OS?

    For now, I would like to run the print tool HP and doctor Scan. It is a practical tool that will 'fix print' questions automatically for you. It will scan the computer for any conflict of driver printer HP, connection problems and other issues that can cause problems with your printer. It will also try to fix these problems for you.

    HP Print and Scan Doctor

    If printing HP and doctor Scan fails to solve your problem, I recommend a complete uninstall and reinstall of your software and drivers for a clean slate to work with.

    Uninstalling the printer software

    After you have uninstalled the drivers and the printer software I need you to reinstall. To reinstall, I add two documents of reference below:

    Installation for USB under Mac OS X

    Installation of USB on Windows

    Because you use the printer for network and USB connections on your computer I suggest you first run installation from USB.

    Once the printer is installed for USB, then you can add in the wireless version.

    Adding a printer wireless on Windows:

    1. open the Printer Assistant software on your desktop. It should resemble a black printer icon and has your options of Scan inside.

    2. click on the 'utility' on the top tab

    3. click on 'software and configuration of the printer.

    4 enforce "connect a new device" for the network connection.

    This will add two copies of your printer and both will be implemented properly for scanning and printing.

    Adding a printer wireless on Mac:

    1. Click The HP utility icon in the Dock.

  • How can I disable the error message "additional plugins are required..." » ? I deleted Quicktime because of incredible annoying security beep and I don't want the plugin or a constant reminder.

    I want to do a right click on the error message and choose "do not show again."
    This happens also in version 4.0 beta 7.
    I tried to use the "Error Console" addon to block but was not able to identify the message.

    See http://kb.mozillazine.org/Disabling_yellow_plugin_bar_-_Firefox

    http://KB.mozillazine.org/about%3Aconfig

  • OCIEnvCreate failed with return code-1, but the text of the error message was not available. »

    OCIEnvCreate failed with return code-1, but the text of the error message was not available. »

    I get this message (error) after update my customer Oracle 9.0 to 10.1 (used in the .net Oracle connection)

    I would like to get a resolution? If someone has experiece with her.

    THX

    Hello

    To improve assistance to this subject, you can ask your question in the MSDN Forums.

    NET Framework

    http://social.msdn.Microsoft.com/forums/en-us/category/netdevelopment

  • Whenever I try to connect to the internet, it gives the error message 651 windows 7

    Original title - windows 7 651 error

    I recently installed windows 7 and I use a broadband connection... Whenever I try to connect to the internet, it gives the error message 651 while I had no problem with this broadband connection in windows 8.1... How to fix this error, please help me...

    Hi Alexandra,.

    Please contact Microsoft Community.

    • You use a wired connection or wireless?

    Method 1: I suggest you use the resolution of the problems of the article below Internet connection and check if it helps.

    In Windows network connection issues

    https://support.Microsoft.com/en-us/KB/313242

    Method 2: Try disabling your antivirus software and then try to connect again and check if the problem persists or not.

    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software

    Note: Run the computer without antivirus software or firewall is a potential threat to the computer; Be sure to activate security software after completing the troubleshooting steps and after identifying the problem.

    Hope this information was helpful and let us know if you need more assistance. We will be happy to help.

     

  • I need to connect 3 computers to one computer, but I get the error message: "no more connections are possible at this remote computer at this time because there are already as many connections as the computer can accept."

    I just bought a copy of a license 3 reviews for QuickBooks Pro 2010. I can connect 2 computers on the home network very well. But when I try to connect computer (network) a 3rd to my machine to share the file, I get the error message. "No more connections are possible at this remote computer at this time because there are already as many connections as the computer can accept." How can I connect my 3rd computer?

    I read the article in the following link, to change the value of the EnableConnectionRateLimiting, but I do not see this key.
    http://support.Microsoft.com/default.aspx/KB/969710

    I currently have Windows Vista Home Premium SP2, 64-bit edition.

    Hello

    Thanks for the response back.

    The command explained in article http://support.microsoft.com/kb/314882 if applies also for Vista, we have been able to run the command.

    Some possible causes for failure Remote Desktop connection are:
    a. authentication level is low/disabled.
    (b) the port of remote desktop can be blocked by a firewall.
    c. remote connections might not be enabled on the remote computer.
    d. the remote computer may be asleep or hibernating.
    e. e user account doesn't have a password.
    f. the remote computer may be too busy to accept more connections.

    To resolve all of the above causes, follow the steps listed under "I can't connect to the remote computer:
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-Remote-Desktop-problems

    I hope this helps.

    Kind regards
    Syed V
    Answers from Microsoft supports the engineer.

  • error message "you don't have permission to open this file. Contact the file owner or administrator to get permission. " I am the administrator and the owner of the file.

    My XP computer crashed and now I have Windows 7 on a new PC.  I downloaded my files from an online backup and now when I try and open a Word document, for example, I get the error message "you don't have permission to open this file.  Contact the file owner or administrator to get permission. "  I am the administrator and the owner of the file. Help!  I am locked out of all my files!

    1. Right click on the folder that you want to take control and then click Properties.

    2. Click the Security tab, click Advanced, and then click the owner tab.

    3. Click on change. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    4. Click on the name of the person you want to give to the property.

    5. If you want that person to be the owner of the files and subfolders in this folder, select the Replace owner of subcontainers and objects to check.

    6. Click OK.

  • I'm unable to use the email as my iMap password is incorrect - how to reset?

    I'm unable to use the email as my iMap password is incorrect - how to reset?

    You need to reset your password to email through the email provider. It is not a specific device parameter. Your password is related to your e-mail account. Seek help from your email for this provider.

Maybe you are looking for

  • Hypervisor DOM?

    For the ThinkServer TD230 is an installable module of DOM for XenServer or VMWare similar to Dell and other vendors? Or do I have to install a hard drive to install vmware on directly?

  • We WUSB6300 on Ubuntu how do you do that

    I can't understand how to install this on Ubuntu it would be great to have this thread less

  • HP mini 110-3131 dx: unknown PCI device

    Hey everybody, I have trouble finding the suitable driver for my hp mini 110-3131 dx. I bought it 2nd hand, did a clean install of Windows 7 Ultimate. Everything seems fine, except when I checked on Device Manager and discovered that there is a yello

  • Scam or potential fraud from Microsoft

    I think I have been targeted for fraud today.  I received a phone call from a man with an Indian accent who said he was with Microsoft.  He called because my computer had sent Microsoft a lot of messages about a virus in my computer.  The virus is ve

  • 64 bit Winows 7 installation fails?

    When I try to install 64-bit Windows7, I get a message that my current Windows is 32-bit, your software provider and I can not go further. I know, but I want to do a custom on a new drive setup, and my computer is capable of 64-bit. How to take this