Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default open office converter in excell

I recently downloaded a third party Open Office file converter from Microsoft
Office. I removed the converter and now everytime I open Excell it askes for
the converter program file. While it's easy to get rid of the request for
file, it is a nusance. Any thoughts how to get rid of this?
  #2   Report Post  
Posted to microsoft.public.excel.misc
D. D. is offline
external usenet poster
 
Posts: 53
Default open office converter in excell

Is the converter an Add-In ?
If so, you should be able to "de"-select it from your add-in menu
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default open office converter in excell

And if it's not fixed by unchecking it from the tools|addins list (xl2003
menus), maybe you could share the message you see.

Maybe you're seeing a prompt to update links to a non-existing workbook file????

Bruce H wrote:

I recently downloaded a third party Open Office file converter from Microsoft
Office. I removed the converter and now everytime I open Excell it askes for
the converter program file. While it's easy to get rid of the request for
file, it is a nusance. Any thoughts how to get rid of this?


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default open office converter in excell

It may be a COM Add-In, and thus won't show up on the standard Add-Ins
list. Run the following code:


Sub ShowCAIs()
Dim CAI As Office.COMAddIn
Dim Res As VbMsgBoxResult
For Each CAI In Application.COMAddIns
With CAI
If CAI.Connect = True Then
Res = MsgBox("Add-In: " & CAI.Description & vbCrLf & _
"ProgID: " & CAI.progID & vbCrLf & vbCrLf & _
"Do you want to disconnect this add-in?", _
vbYesNoCancel, "COM Add-Ins")
Select Case Res
Case vbYes
CAI.Connect = False
Case vbNo
' do nothing
Case vbCancel
Exit Sub
End Select
End If
End With
Next CAI
End Sub

This will list all the COM add-ins that are presently loaded and allow
you to disconnect the add-in.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Thu, 5 Feb 2009 20:30:01 -0800, Bruce H
wrote:

I recently downloaded a third party Open Office file converter from Microsoft
Office. I removed the converter and now everytime I open Excell it askes for
the converter program file. While it's easy to get rid of the request for
file, it is a nusance. Any thoughts how to get rid of this?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA Converter Pack-Office/Excel 2007 Ray Excel Discussion (Misc queries) 0 February 22nd 08 05:14 PM
where can i find a julian date converter for Office? Kauman Excel Discussion (Misc queries) 1 January 28th 07 04:48 PM
Quattro Pro converter for Office 2003 lushtanet Setting up and Configuration of Excel 2 May 29th 06 11:57 AM
open excell from office Mouc3777 Setting up and Configuration of Excel 1 December 7th 05 01:47 AM
Quattra Pro converter for Excell 2003 XP2003? Adam G Excel Worksheet Functions 0 November 25th 05 09:14 PM


All times are GMT +1. The time now is 03:03 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"