SharePoint 2010 and Outlook Integration

Hi All:
I have a question about SharePoint 2010 and Outlook Integration, My Question is:
How can I develop a webpart which can open my client Outlook Client Application??
Thanks ...
Will

Hi Tim, 
Depending on what you want to achieve, you can use EWS (Exchange Web Services) to manage email on an Exchange mailbox.
I blogged about adding and removing appointments from an Outlook calendar using EWS here: http://matthewyarlett.blogspot.com.au/2012/07/using-ews-exchange-web-services-in.html
Regards, Matthew
MCPD | MCITP
My Blog
View
Matthew Yarlett's profile
See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
Upload and Crop User Profile Photos

Similar Messages

  • Lync 2013 standard deployment: Exchange 2010 Sharepoint 2010 and outlook 2007 collaboration

    HI
    I have Exchange 2010 and sharepoint 2010 with all our user using outlook 2007. what options do I have for collaborations between these systems if I was to install Lync 2013. I have seen posts that mention that you cannot use outlook 2007 and lync 2013 and
    that you would be better off installing the lync 2010 client?
    1. would we be covered from a licensing point of view if we had bought lync 2013 cals but install the lync 2010 software on desktops?
    2. what Cals do we require for presence to be available in SharePoint we currently have standard sharepoint cals?
    3. what new features will we loose if we install 2010 lync software.
    4. if our mobile users use the 2013 lync software will these be able to communicate with the 2010 users?
    thanks
    J

    Hi,
    If you use Lync 2013 client with Outlook, multiple functions will not be achieved, such as: customize Outlook meeting invitations (add logo, help URL, disclaimer, footer text), in Outlook, configure meeting option to mute attendee audio and video by default,
    presence status in the Microsoft Outlook To and Cc fields, and so on. As Lync 2013 is the part of Office 2013, the best choice is using Outlook 2013.
    More details:
    https://technet.microsoft.com/en-us/library/gg412817.aspx
    For the CAL requirement, you can refer to following link:
    Lync Licensing Guide
    You can refer to the link below of “What’s new for clients in Lync Server 2013” to understand the new features for Lync 2013:
    https://technet.microsoft.com/en-us/library/jj204933.aspx
    If you use Lync 2013 mobile clients, you can communicate with 2010 users with no possible.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Integration between InfoPath web forms (browser side), SharePoint 2010, and Word or Excel

    To begin with the end in mind, here's what I need to do:
    User A (employee) fills out infopath form in browser.
    User A saves infopath form, workflow runs, and sends a link to the manager
    User B (Manager) opens infopath form, clicks a button, and all the information from the saved infopath form magically appears in a excel document
    Here's how I did it, because I couldn't find an easier way to do it. This is an InfoPath no-code solution (uses web service and workflow I had to build) and this is working somewhat:
    In InfoPath Designer 2010, created the form from Blank 2007 form template.
    Published the form and promoted fields to Sharepoint 2007 as a new forms library.
    Created a view on forms library to show all fields (SQLExportView1).
    Created SSIS package to import data from SharePoint forms list using the view "SQLExportView1" into a new database and table in SQL Server (tblSQLExport1).
    Created SQL Agent job to run this package every 2 minutes.
    Created workflow to notify manager.
    Created excel document with an external data connection to SQL server.
    In SQL, created a stored proceedure ("spGetCurrentID") to truncate, then add a row to a table ("tblCurrentFormID").
    On InfoPath form, added a button that takes the current infopath form "ID" into a table in SQL server by calling the stored procedure via a web service.
    On Infopath form, added a hyperlink to the excel file which opens in the client.
    In excel, added a button on the workbook that queries the SQL database for the current form ID, and drops it into a cell.
    In excel, added a button on the workbook that queries the SQL database for the sharepoint list details that were exported via SSIS, returning only the row for the current form ID.
    In excel, created a button on the workbook that displays the fields I want in the location I want
    With over 25 users concurrently hitting the form library, there is a chance that when they open excel they will generate an excel document with bad data in it (data from someone else's current ID).
    I've since migrated to SharePoint 2010, and it works the exact same way in 2010.
    What I want to do is find a way to get the data that is already saved in the infopath form DIRECTLY to Excel by clicking a button without the web service, the stored procedure, the SSIS package, the SQL agent job, etc.  My problem has always been
    in getting the data from infopath into RAM/Clipboard/temp file(?) and imported into Excel by bypassing the SQL.
    Of course, I would like to do this without requiring an administrator approved template in InfoPath, and have it be much more simpler to maintain. There are a lot of moving parts.
    Please point me to any examples or make recommendations. The requirement is that users open the form, the data is filled out already, and with a click of a button, the data shows up in excel automatically in the right place for the item they're currently
    looking at in infopath.
    Now that I've got this working (kind of) for one excel document, management wants to add 25 other documents that this one infopath form can generate. 
    Therefore, once I get this to work better for one excel document, I can add other excel documents.
    I've considered passing a parameter to the excel document in Excel Web Services, as I believe that excel web services 2010 can support this. However, I believe that the macros that run in the excel client okay won't work in excel web services 2010.
    Users would prefer to open Excel in the client, though, so not sure I'm going to go down this path.

    Clayton,
    You rock - thank you for all your responses!
    The infopath form was built doing what it does long before the need to get the data into Excel.
    You are correct in that I could have modified the infopath code to save to SQL, but the fields in the form and on the forms library columns do change before and after the manager approves it.  As such, adding some code to submit the infopath data to
    SQL could have been used to write data into SQL server instead of leveraging SSIS/SQL Agent to do so. However the aformentioned workflow (see way up in the thread) does more than just send an email to the manager with a link. It also edits some fields in the
    forms library column on that particular list item. By using SSIS, every two minutes they get the latest stuff from sharepoint into SQL without having to add code in the workflow or - if possible - on the infopath code that does a table update where item=abc.
    It is common to get data from sharepoint into sql, regardless of whether or not it is a list or library (including infopath forms libraries). There is sample code on Codeplex that has been downloaded close to 40,000 times for this purpose which I'm sure
    you are familiar with:
    http://msdn.microsoft.com/en-us/library/dd365137(v=sql.100).aspx and
    http://sqlsrvintegrationsrv.codeplex.com/releases/view/17652
    I agree with you in so many ways on why they should not be using excel (or word) to present the information. Having InfoPath or a custom workflow magically convert the data presented on a specific view in a filled out InfoPath form to PDF and emailing it
    would be wonderful, but it simply is not a possible solution.
    Surely you're familiar with companies that have a word document that, say, a manager will email to someone as an attachment, then the employee prints out the word document, fills it out on paper and signs it with a pen (or fills out a fillable form, then
    prints it), they then either fax it back or scan it and email it back to the manager, who then prints it out and hands it to a VP for a signature, etc.  Yes, the process is very old-fashioned, but in health care, finance, and for legal compliance reasons,
    some places simply have to do their manual processes the way they are. I've suggested and shown examples of how it can all be done electronically with digital signatures, etc., but their legal compliance officers and board members do not agree to this methodology.
    As such, I work within the confines I am presented with, as I'm sure you've had to do as well.
    I myself have worked for several Fortune 100 firms for many years (Microsoft, T-Mobile, etc), know what is possible. However the place I am at now, many of those options simply are not possible.
    They use excel (and word) because that is the templates the legal department and third party companies they work with gives them to work with. 
    If you've used enterprise OCR systems (LaserFiche, OnBase, Hyperion, etc.) you would be familiar with the fact that in order to scan and index keywords from OCR cover pages, the document has to have fields in a certain location. While I have tried to
    get the InfoPath form to line up properly, I cannot print out headers or footers and page breaks where the OCR system requires and expects them to be. What's more: when you print a filled out infopath form that loads browser side, as you know you get the browser-related
    stuff with it. Although they're all on the same web browser (finally - IE8) and all on windows 7 and office 2010, I cannot control the fact that some users use large fonts and other accessability features to make their 21" screens run at 640x480 (exaggeration).
    When you do this, it changes the margins in the print area, and more.
    If I could take the data that is in infopath, merge it with an excel template, and export that to PDF, that could be an option. Not looking to buy some enterprise PDF generating product, though, and looking to do this as close to a no-code solution as possible.
    Why we're suggesting PDF, perhaps we should be considering XPS, since we are staying with the Microsoft technology stack here.
    Perhaps I should rephrase my original question like this:  "I have 25 different documents that all need to be filled out automatically. Each document has different text on it, but the fields that need to be filled out on the documents are almost all
    the same. I want to present one form for users to fill out, and once saved, to generate all 25 different documents. How would you do this?". While not entirely accurate, as not all 25 documents need to be created at once, only on demand with a click of a button
    for each document, perhaps that is a better way of stating the need.
    Thank you Clayton (and all you lurkers out there hoping to find out how we solve this).

  • "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint 2010 and Publishing Approval workflow.

    I am trying to add a new workflow to a document library with the below mentioned settings and getting error saying "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint
    2010 and  Publishing Approval workflow" . For your information the I have checked the server default option to open in browser.
    Versioning Settings.
    Error
    This is quiet urgent issue . Any help would be really helpful.. Thanks.. 

    Hi Marlene,
    Thank you very much for your suggestions.
    But I am not creating a custom workflow in designer as Laura has mentioned. I am instead trying to create a new Out of the box Approval Workflow and I get the error mentioned above.
    As it works in other environment, I tried figuring out the possible differences which can lead to this error.
    Today I found one difference which is there are no form Templates within Infopath Configurations in Central Admin. Now I am trying to figure out what makes this form templates to be added to the template gallery.
    Regards,
    Vineeth

  • How to enable the SharePoint 2010 and 2013 Developer Dashboard for specific WebApplication or Sitecollection?

    How to enable the SharePoint 2010 and 2013 Developer Dashboard for specific Web Application or Site collection(not for all Web Application)?
    Vishal Goyal

    Hi Vishal,
    I don't think there is option for specific site collection or web application,but there is option of enabling developer dashboard on specific master pages and that is one on of the way you could do it.
    look article on below link to enable developer dashboard on specific master pages
    https://msdn.microsoft.com/en-us/library/office/ff512745%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    Let me know if this helps.
    Thanks
    Bhism 

  • Slipstream SharePoint 2010 and Project Server Installation

    Hello, 
    I have my current farm environment with the below configuration 
    SharePoint 2010 + Project Server which are on SP 2 + Brazil Language Pack
    2 WFE
    2 App
    1 SQL
    We are planning to add more WFE and App server in the existing farm. As per my research I found that we can slipstream CU and language pack install. 
    Would like to know can I slipstream SP2010 + Project server with SP2 along with Brazil language pack in one single go. I did found the article http://social.technet.microsoft.com/Forums/en-US/c6f60e5e-4f07-4e92-a8de-a32924b00ce5/sharepoint-2010-and-project-server-2010-slipstream-install?forum=sharepointadminprevious
    however in this case there was request to setup a new farm but I'm trying to add new server to the existing farm. 
    Can you please suggest the best approach that can be followed to save time to add the new server to the existing farm using slipstream. 
    Thanks. 

    You can do the same per the old thread. Just install SharePoint server, cancel config wizard, install Project Server, cancel config wizard, install LPK, then start Config Wizard and join to farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Migration steps for moss 2007 to sharepoint 2010 and sharepoint 2013

    Hi,
    I need to learn migration steps from moss 2007 to sharepoint 2010 and sharepoint 2013.Can any one please explain the step by step procedure for this.What are the migration tools available.Please reply.
    Regards,
    Praveen

    Hi Praveen,
    This link describes the process:
    http://www.winwire.com/moss-2007-to-sharepoint-2013-migration-using-database-attach-method/
    Some paid tools for migration:
    https://www.harepoint.com/Products/HarePoint-Content-Workflow-Migrator/Default.aspx?gclid=CM2l1v3m28MCFRVxvAodpq0AVA
    https://www.avepoint.com/sharepoint-migration-download/?gclid=CPK17_fm28MCFQ1xvAodekAA8w
    Thanks,
    Nadeem
    Please remember to up-vote or mark the reply as answer if you find it helpful.

  • SharePoint 2010 and SQL Server 2012 issue

    Hi,
    I have SharePoint 2010 integrated with SQL Server 2008 R2 in my machine. I wanted to use Power View feature, so I went for SQL Server 2012 installation. Now when I try to create the SQL Server Reporting service service application, it says, this feature
    is not supported by current version of database.
    Please let me know how to fix the issue. Do I need to reinstall SharePoint 2010 once again using SQL Server 2012 ?
    thanks
    Tarique

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9eacbd00-f264-4f55-bd27-55cf0761cbd7/power-view-is-not-supported-in-this-edition-of-reporting-services?forum=sharepointadmin
    The only requirements for SSRS Integrated mode/PowerView are that you're using SharePoint Enterprise and SQL Enterprise/BI and that SharePoint be installed and joined to the farm on the server where you're also installing SSRS.
    You need to reconfigure your sharepoint farm farm to use SQL server 2012 
    http://technet.microsoft.com/en-us/library/ee210640.aspx
    Business intelligence features are not all available in all editions of SQL Server 2012

  • SharePoint 2010 and Excel Calculation Services

    I'm curious what the hardware requirements are for Excel Calculation Services in Sharepoint 2010. I found an architecture document but it doesn't list out the specific requirements.
    architecture I understand that you can install all the services on one server but it isn't recommended. It then talks about how you can scale up the application servers, and
    web front ends. What should the hardware look like for both the application server and web front ends? Do I need to setup a standalone box for each application server, and just one web server apart from what we already have for Sharepoint?  We already
    have several boxes to run various portions of Sharepoint 2010.  Such as, a standalone box for:  Indexing, Web, Database, and Shared Services.  What should we set aside for Excel Calculation Services?  What are the recommended setups, and
    how should we anticipate growth?  X number of users per app server etc.?

    Hello,
    I need help setting up excel services.
    Excel service is already running on sharepoint server.
    I have one reporting file which is generated by DBA with database connection. i want to upload that file under document library and i want whenever user open it through document library, it gets updated through database connection 
    This is my first time, so pls guide me
    Reporting file has authentication set to --> None 
    Do i require any specific settings for authentication? like unattended account ? which username should i use
    Connection String -->
    Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;User ID=ExcelServices;Initial Catalog=SurveyData;Data Source=jdb1;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=RSTKW7W-06709;Use Encryption for Data=False;Tag
    with column collation when possible=False
    http://../training/sptestsite/Medication_Audit_Report
    http://../training/sptestsite/Medication_Audit_Data_Connection_Library/
    Trusted File Location - is this place do i need to upload that reporting file? 
    Trusted Data Connection Libraries - is this place do i need to save connection file .odc ?
    If i am not wrong, should i put
    Trusted File Location = http://../training/sptestsite/Medication_Audit_Report
    Trusted Data Connection Libraries = http://../training/sptestsite/Medication_Audit_Data_Connection_Library/
    http://../training/sptestsite/Medication_Audit_Report -- Here only reporting file will be uploaded right?
    http://../training/sptestsite/Medication_Audit_Data_Connection_Library/ -- Here only database connection .odc file will be uploaded?
    what other settings are required. please correct me
    my email address - [email protected]
    Harsh

  • Office Professinal Plus 2010 und Outlook Integration

    Hallo Zusammen,
    Hat jemand von euch bereits Office Professinal Plus 2010 in Kombi mit Outlook Integration erfolgreich im Einsatz?
    Bei uns wird das Addin einfach nicht angezeigt. Lt Task-Manager ist die Exe gestartet. Sie ist auch nicht unter den deaktivierten Add-Ins zu finden.
    Lt. Supportet Plattforms ist Office Professinal Plus 2010 nicht dabei. Dachte ich frage dennoch mal. Zumal die dort aufgeführten Versionen gar nicht existieren. Wollen wir mal nicht kleinlich sein
    Hat jemand vielleicht noch eine schlaue Idee? Bin für jede Anregung dankbar.
    Liebe Grüße
    Sabine

    Hallo Sabine,
    unter den News von SAP Business One ist mit Datum 11.11.2010 folgender Eintrag zu sehen
    SAP Business One 2007 and 8.8 now support Microsoft® Office 2010.
    Microsoft Office 2010 is now fully supported by SAP Business One 2007 A SP01 (as of patch 13 ), SAP Business One 2007 B (as of patch 22), and SAP Business One 8.8 (as of patch 17 ), including SAP-developed Add-Ons.
    Wenn Du bereits auf 8.8 PL12 oder höher bist - und Du zugleich das Cockpit aktiviert hast - dann hast du neben dem Outlook-Add-On doch jetzt auch die Möglichkeit per "Drag`n Drop" eMails als Aktivitäten oder als Serviceabruf anzulegen.
    Probier doch mal, ob hier bereits Office 2010 unterstützt wird ?!
    Ist zwar nicht die vollständige Funktionalität der Outlook Integration , aber sollte der Schwerpunkt auf der Ablage von eMails
    als Aktivität liegen, wäre dies ein Workaround.
    Ich nutze dies für eMail Ablage in B1 eigentlich nur noch so.
    Vorteile:
    die angelegte Aktivität ist nicht automatisch geschlossen und kann somit nachträglich bspw. in eine Opportunity oder einem Serviceabruf verlinkt werden
    es wird eine Kopie der Original-eMail inkl. Anlagen in den "Attachement-Pfad" abgelegt (kann also auch wenn das Original gelöscht wurde, bearbeitet und weitergeleitet werden)
    Nachteile:
    es ist noch ein Fehler enthalten sofern man eMails aus dem "Gesendet" Ordner per Drag`n Drop ins B1 übernimmt. Dann  wird zur Zeit immer die erste BP-Nummer voreingestellt und muss manuell korrigiert werden
    die eMail wird immer als AUFGABE voreingestellt und muss ggf. entsprechend als Notiz oder ähnlichem (zumindest passt bei mir AUFGABE meistens nicht
    zur Zeit wird der angemeldete User noch nicht als im Empfänger vorbelegt
    Ansonsten - eine echt nette neue Funktion ... leichter kann man es Anwendern kaum noch machen, eMails ins B1 zu bekommen !!
    Viele Grüße aus Hamburg
    Heiko

  • SharePoint 2010 and PowerPoint 2010: Open PPTX File in Edit Mode and Open PPSX in in Slide Show Mode

    I have the following issue while opening PowerPoint PPTX file and PPSX from the Document ID link provided by SharePoint 2010.
    Issue
    Initially when I opened PPTX file from the DOC ID link from SharePoint 2010, it is opening up in Slide Show mode which is not how we want it to be.
    For PPSX, it is opening in Slide Show mode which is what we wanted.
    Thus, I did some research online and found this article at support.microsoft.com/kb/q299824  which requires some modification to the Registry of the client machine.
    I did the change as follows
    Open Registry
    Look for “Computer\HKEY_CLASSES_ROOT\PowerPoint.Show.12”
    Set BrowserFlags value to a
    After the change, PPTX is opening in Edit Mode in PowerPoint which is correct but PPSX is also opening in Edit Mode in PowerPoint which is not correct
    This issue only occurs if I open the document from the Doc ID link in SharePoint. If the documents are downloaded, it will not have this issue.
    Questions
    Can I set PPTX to open in Edit Mode and PPSX to open in Browser Mode?
    Is this fixed as in if I change the registry setting it will affect both file types?
    Is there other ways I can achieve opening PPTX in Edit and PPSX in Browser Mode?
    [Environment]
    My Client machine is running on I.E 9 and Office 2010.
    Thank you.

    Hi,
    To make the PPTX file open in Edit mode and PPSX file open in Slide Show mode, I recommend to edit the registry key HKEY_CLASSES_ROOT\PowerPoint.Show.12 to 8.
    I tested the scenario in my environment with changing the key value to 8, after that PPTX file opened in Edit mode and PPSX file opened in Slide Show mode.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • SharePoint 2010 and Office 2013 Can't edit documents

    Hello
    I have built a desktop image with Office 2013. I am receiving the following error when I click on a document in a SharePoint library and click "Edit in Microsoft Word" (the problem is not limited to Word):
    The document could not be opened for editing. A Microsoft SharePoint Foundation compatible application could not be found to edit the document.
    I have tried the following:
    Ensuring the "WebClient" service is running
    Ensuring the site is in the "Local Intranet" zone
    Checking the "SharePoint OpenDocuments Class" add-on is loaded
    Making sure Internet Explorer is not running in 64-bit mode
    Manually re-registering OWSSUPP.DLL
    Ensuring the SharePoint Foundation integration components are installed
    Repairing Microsoft Office
    The document sometimes loads succesfully but not always. When it will and won't load seems quite random. I am at a complete loss as to why this is!
    I am running the following on my client:
    Windows 7 Enterprise SP1 (x64)
    Office Professional Pro Plus 2013 (VL)
    If anyone has any ideas I would greatly appreciate this.
    Regards
    Peter

    This took a lot of tracking down!!!! 
    The issue is with Office 2013. Someone at Microsoft has hardcoded what I think maybe the US local into a registry key request!!! Just brilliant!!
    The key in question is: HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\2057
    2057 is the US local
    However we are not in the US !! Our local is 1033. So the key that exists on our PCs is
    HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\1033
    But Microsoft is looking for x86\2057 and that is why it fails - Also, if you are getting it were the document opens first time then errors from then on until IE is restarted -
    That is because the first time you make a document call through SharePoint in a new IE session, it calls it differently to subsequent calls. I have verified this by tracing what is going on in the background...
    Now due to the nature of the call you cannot just rename they key to be the missing key - we need to create and additional key ending in 2057 with the same value as (in our case x86\1033. So in the end you should have the following keys in place:
    HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\1033
    HKCR\Installer\Components\55EAFA0B8A4403B428FDE038B252C621\x86\2057
    So there goes several hours of my life that I'm never getting back all for some sloppy coding - Thanks MS
    To everyone else who has been suffering from this problem, time to smile once more :-)

  • SharePoint 2010 and Reporting Services add-in - multiple versions supported?

    Hello,
    I would like to try out Reporting Services with SharePoint 2010.  I already have the Reporting Services add-in installed on the WFE for SQL Server 2008 R2, but not configured. 
    At this point I thinking it's best to move forward with SQL Server 2012.
    Can both the 2008 R2 version and 2012 version of the Reporting Services add-in exist on the same WFE in separate instances? Or do I need to uninstall the 2008 R2 version first?    
    Thank you in advance,

    Just upgrade to the 2012 version, you don't have to uninstall first.
    Also, see the supported combinations of SSRS version and Addin version:
    http://msdn.microsoft.com/en-us/library/gg492257.aspx
    Use the highest version of the addin possible, as newer addins have offered performance improvements.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • PerformancePoint in Sharepoint 2010 and SQL Server 2012 data source

    Hi,
    I have a problem on creating PerformancePoint reports in Sharepoint 2010 based on SQL Server 2012 source data.
    I try to create a data source in PerformancePoint dashboard designer, I choose Analysis Services, and I get a following error:
                "The data source cannot be used because PerformancePoint Services is not
    configured correctly...."
    I think it is due to a version of a ADOMD.NET component that needs to be installed, but I am not sure which version is necessary? Could you help
    me with that?
    Of course, if there are any other prerequisites, please, tell me.
    Regards,
    Srdjan Nikitovic

    Did you set unattended service account for your PPS?
    The Data source cannot be used because PerformancePoint
    Services is not configured correctly
    http://ericphan.net/blog/2010/4/19/performance-point-server-error-the-unattended-service-accoun.html
    Amit

  • Mouse not working in Word 2010 and Outlook 2010

    Hi
    My setup is: Windows 7 Ultimate x64, Office pro 2010
    I have a problem where my right click mouse og select text isn't working in Word and Outlook. My keyboard os working fine, and my mouse cursor moves fine, but if I try to select text with the mouse og rightclick to copy/paste something nothing happens. Its
    driving me crazy.
    I have searched the web and found some different solutions but none seems to work permanently.
    One option is to use Internet Explorer Settings > advanced > Reset to default.
    Another is to delete the Word / Data key from Registry editor
    Now I can start Word and start typing in a single line...and it works... until I hit enter the first time. then the mouse isn't working again. the same thing happens in Outlook when writing an email.
    I have tried running the Office 2010 repair tool with not effect.
    Please help - this is driving me crazy
    Best regards and feel free to ask you need me to clarify someting or test something.
    Søren B

    I have the same problem (Win 7, Office 2010).
    Deleted the DATA folder. The mouse works a very short time before the problem reappears.
    Renamed the OFFICE folder. The problem remains (no change).
    I have no add-ons installed, and have scanned for viruses and malware without finding any. Everything else works fine.
    I have done all available updates for both Windows and Office.
    I have the exact same problem. I have also noticed that some of the keys do not function the same either. For instance I will get a " instead of an
    '@' when I push 'shift' + '2'. I also get a slash or something instead of a '?'. My onenote never has this issue and other programs do not. If I copy and paste into word it copies fine. I end up having to shut down word and start
    it back up again if I need to use the mouse on the document. I can use the ribbon fine but on the actual document the mouse stops working after a few seconds or up to a minute. I have run virus scans and everything is fine. This is really getting on my nerves. It
    is hard to edit a paper when you can't use your mouse on the doc, especially when using pictures and needing to move them... or even select them.

Maybe you are looking for

  • Observing a Key in PDFView

    Hi, I have a PDFView in my application, and I want my controller class to be notified when the user zooms in or out. I'm a Cocoa beginner, but I should be able to use key-value observing in this case. I have thus implemented the following two methods

  • T500 - poor display quality

    I have T500 with WXGA TFT LED Backlight and integrated Intel graphics and I'm very disappointed with it. This LCD presents very poor quality in terms of viewing angles (not only vertical but also horizontal), colors (they are somehow washed-out, not

  • To enable Axis adapter framework

    Hi All , We are going to use Axis adapter framework in AAR PI landscape(X6* track). As we understood, this is SAP provided by default with PI but there are some more additional JARs need to be installed to enable this functionality. Do we need downti

  • Firefox failed to initialize upon trying to open the program

    Firefox will not open, program has warning come up stating Firefox failed to initialize click ok to terminate the program. Firefox will not even open, and I updated it as well. Sill won't open. Cannot access any portion of the firefox as it keeps say

  • Difference between All valuation methods

    Hiii Guru's,                    Can anybody tell me the actual difference between the inventory valuation methods given in B1 - Standard / Moving / FIFO ... Actually I want to know their impact in each case if I maintain my masters at item group leve