I am working on a C# application which opens Excel workbooks using Interop. It works fine except for one annoyance: when opening an Excel 2007 document on a machine using Excel 2003, a small message pops up saying "File conversion in progress". Does anyone know of a way to prevent that message from appearing at all?
How to disable conversion message when opening Office 2007 doc using Office 2003?
1.2k Views Asked by Mathias At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in INTEROP
- Optimizing C++ call from C#
- Unable to cast COM object of type 'Microsoft.Office.Interop.PowerPoint.ApplicationClass'
- Excel Range apply new NumberFormat
- C# Excel Interop Unable to get Characters.Text property when Range length is > 256
- Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) on ChartObject.CopyPicture
- VC++/CLI: How to prevent an unmanaged object from being destroyed when it goes out of scope?
- Swift and C Interop
- Add as link to within a project folder to copy always to root of output
- Print lists in a list to excel, randomly stops printing after 0.5-6 lists. Comexpection 0x800AC472
- .NET Interop: How to get returned string (not null terminated) from unmanaged DLL in C#
- BizTalk and COM+
- SetWindowPos causing crash in c# code
- An Objective-C category for an existing Swift class
- ShellExecute doesnt work if some parameters are just int type
- Perform Mouse Left Clicks on Scroll Wheel Input
Related Questions in OFFICE-2007
- open xml Numbered list
- How do register PIA12 (Office 2007) assemblies with visual studio 2013
- Installing version 11 PIA on a Visual Studio 2008 / Office 2007 system?
- Cannot run Visual Studio 2010 Outlook Add-in on machine with Outlook 2007 installed
- Excel Addin that works on Excel 2007 and 2010
- Custom Backstage View Tab like standard tab FileNew
- Outlook 2007 - appointment
- "old format or invalid type library"
- Is there an inverse mode for Microsoft Word?
- Ribbons in Java, and Custom Buttons
- How to introduce spell checker in Microsoft Office Communicator
- Word and Excel file versions
- Save modified WordprocessingDocument to new file
- Working with Office "open" XML - just how hard is it?
- System.Runtime.InteropServices.COMException (0x80010105): The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))
Related Questions in OFFICE-2003
- Installing version 11 PIA on a Visual Studio 2008 / Office 2007 system?
- Create VSTO 3.0 Outlook Add In to run on office 2003/2007/2010(x32 and x64)
- Deploy word addin ... 2003
- Outlook 2003 Drag & Drop inbox to outbox confusing behaviour
- word 2003 how do you redraw a window?
- COMAddIns how to turn them on/off programmatically in Office Word 2003
- Custom task pane support in Office 2003
- Word Automation Backwards Compatibility With Word 2003
- Conditional VBA code for PowerPoint 2003 & 2007/2010/2013 object model compatibility
- How to disable conversion message when opening Office 2007 doc using Office 2003?
- Excel - Red Cross where a drop down list should be
- Determining the size of a merged area
- Is there a way to set search settings for ms office (2003) for non English charectars
- Excel comment invisible under cell
- PowerPoint 2003 COM Add-In
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is the message that the Office 2007 Compatibility pack throws up to tell you that the component is down converting the file into something that Excel 2003 can understand.
AFAIK, this particular message is not possible to suppress.
I had some problems with a relinking app that I wrote and ended up putting in some sleep calls. Im sure you have already experimented with the XL apps Visible, usercontrol and screenupdating properties. If so I can't think of much else I'm afraid.
There is a registry key that you can control for the compatibility pack which turns of file conversion for certain file formats Office 2003 users, thus suppressing the error, but that kinda defeats the purpose doesn't it? Personally i'd consider only targetting Office 2007 for new file types if that is an option for you.