Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Error: Exception from HRESULT: 0x800A03EC

As an ACT! 2005 Premium for Workgroups User, I export Opportunity records to
Excel. Exports to Excel 2000 work fine, but if the user has Excel 2003, we
get the error "Exception from HRESULT: 0x800A03EC". Has anyone found a
workaround for getting Excel 2003 to work? Thanks.
--
Steve C
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Error: Exception from HRESULT: 0x800A03EC

See if this helps...

http://support.microsoft.com/kb/282830/

Programmatic access to Office VBA project is denied

SYMPTOMS
Code that is written to automate an Office application and programmatically
manipulate the Microsoft Visual Basic for Applications (VBA) environment and
object model may fail on Office with one of the following error messages:

From Visual Basic or VBA:
HRESULT = 0x800A17B4 (-2146822220) "Programmatic Access to Visual Basic
Project is not trusted"
The same code works without error on computers with Office 97 and Office
2000.


Mark Ivey

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Error: Exception from HRESULT: 0x800A03EC

Mark,

Thank you for your response. After trying the settings suggested, I'm still
getting the same error. From what I've been reading on this topic, it may be
related to ACT! trying to open a separate instance of the Excel application.
Do you know of any means to cause this not to happen when Excel is launched
by ACT!?


-- Steve C


"Mark Ivey" wrote:

See if this helps...

http://support.microsoft.com/kb/282830/

Programmatic access to Office VBA project is denied

SYMPTOMS
Code that is written to automate an Office application and programmatically
manipulate the Microsoft Visual Basic for Applications (VBA) environment and
object model may fail on Office with one of the following error messages:

From Visual Basic or VBA:
HRESULT = 0x800A17B4 (-2146822220) "Programmatic Access to Visual Basic
Project is not trusted"
The same code works without error on computers with Office 97 and Office
2000.


Mark Ivey

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Error: Exception from HRESULT: 0x800A03EC

You might want to see if there is any instance of Excel already running
before your code gets to this part and issue a prompt for the user to close
it down before proceeding Would this suffice?

Mark

"Steve C" wrote in message
...
Mark,

Thank you for your response. After trying the settings suggested, I'm
still
getting the same error. From what I've been reading on this topic, it may
be
related to ACT! trying to open a separate instance of the Excel
application.
Do you know of any means to cause this not to happen when Excel is
launched
by ACT!?


-- Steve C


"Mark Ivey" wrote:

See if this helps...

http://support.microsoft.com/kb/282830/

Programmatic access to Office VBA project is denied

SYMPTOMS
Code that is written to automate an Office application and
programmatically
manipulate the Microsoft Visual Basic for Applications (VBA) environment
and
object model may fail on Office with one of the following error messages:

From Visual Basic or VBA:
HRESULT = 0x800A17B4 (-2146822220) "Programmatic Access to Visual Basic
Project is not trusted"
The same code works without error on computers with Office 97 and Office
2000.


Mark Ivey

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Error: Exception from HRESULT: 0x800A03EC

I discovered something interesting by accident today. With Excel closed, I
run the export from ACT! and get the error, as usual. But if I open another
Excel file in Windows Explorer (not through File Open in Excel, but rather
by double-clicking an existing file), not only does that file open, but my
export from ACT! opens with it! Very strange. This does not happen if I
open Excel by itself or if I open that same Explorer file from within Excel.

It's as if the export from ACT is initially being "hidden" from view and
doesn't get triggered until I open another Excel file via Explorer. The
export appears to stay in "memory" in Excel for as long as I'm logged on. In
investigating this error, I've read how some programs open a separate
instance of Excel to display the data, and perhaps that is happening here.
Now that I know this is happening, I can at least do this "work-around" to
see my data, but it sure is odd!
--
Steve C


"Mark Ivey" wrote:

You might want to see if there is any instance of Excel already running
before your code gets to this part and issue a prompt for the user to close
it down before proceeding Would this suffice?

Mark

"Steve C" wrote in message
...
Mark,

Thank you for your response. After trying the settings suggested, I'm
still
getting the same error. From what I've been reading on this topic, it may
be
related to ACT! trying to open a separate instance of the Excel
application.
Do you know of any means to cause this not to happen when Excel is
launched
by ACT!?


-- Steve C


"Mark Ivey" wrote:

See if this helps...

http://support.microsoft.com/kb/282830/

Programmatic access to Office VBA project is denied

SYMPTOMS
Code that is written to automate an Office application and
programmatically
manipulate the Microsoft Visual Basic for Applications (VBA) environment
and
object model may fail on Office with one of the following error messages:

From Visual Basic or VBA:
HRESULT = 0x800A17B4 (-2146822220) "Programmatic Access to Visual Basic
Project is not trusted"
The same code works without error on computers with Office 97 and Office
2000.


Mark Ivey



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 171
Default Error: Exception from HRESULT: 0x800A03EC

Just found another link that may help on this topic...

http://www.ureader.com/message/692318.aspx

Mark

"Steve C" wrote in message
...
I discovered something interesting by accident today. With Excel closed,
I
run the export from ACT! and get the error, as usual. But if I open
another
Excel file in Windows Explorer (not through File Open in Excel, but
rather
by double-clicking an existing file), not only does that file open, but my
export from ACT! opens with it! Very strange. This does not happen if I
open Excel by itself or if I open that same Explorer file from within
Excel.

It's as if the export from ACT is initially being "hidden" from view and
doesn't get triggered until I open another Excel file via Explorer. The
export appears to stay in "memory" in Excel for as long as I'm logged on.
In
investigating this error, I've read how some programs open a separate
instance of Excel to display the data, and perhaps that is happening here.
Now that I know this is happening, I can at least do this "work-around" to
see my data, but it sure is odd!
--
Steve C


"Mark Ivey" wrote:

You might want to see if there is any instance of Excel already running
before your code gets to this part and issue a prompt for the user to
close
it down before proceeding Would this suffice?

Mark

"Steve C" wrote in message
...
Mark,

Thank you for your response. After trying the settings suggested, I'm
still
getting the same error. From what I've been reading on this topic, it
may
be
related to ACT! trying to open a separate instance of the Excel
application.
Do you know of any means to cause this not to happen when Excel is
launched
by ACT!?


-- Steve C


"Mark Ivey" wrote:

See if this helps...

http://support.microsoft.com/kb/282830/

Programmatic access to Office VBA project is denied

SYMPTOMS
Code that is written to automate an Office application and
programmatically
manipulate the Microsoft Visual Basic for Applications (VBA)
environment
and
object model may fail on Office with one of the following error
messages:

From Visual Basic or VBA:
HRESULT = 0x800A17B4 (-2146822220) "Programmatic Access to Visual
Basic
Project is not trusted"
The same code works without error on computers with Office 97 and
Office
2000.


Mark Ivey

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Error: Exception from HRESULT: 0x800A03EC

Hi There,

I think I have just figured out this problem after having it myself.

I looked up a company in Act and managed to export the list of contacts
from that company to excel no problems.

So I went and had a look in my opportunites list to see what I had
recently changed. Turns out it was the "Details" Column that was causing
the problem.

If I went into Customise Columns and removed the Details Column and then
tried to Export it worked fine.

Hope this Helps

Ben

*** Sent via Developersdex http://www.developersdex.com ***
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
Exception from HRESULT: 0x800A03EC Samir1014 Excel Programming 2 September 13th 07 07:14 PM
Exception from HRESULT: 0x800A03EC While opening Workbook Shreyash Excel Programming 0 February 7th 07 09:36 AM
HRESULT: 0x800A03EC exception when trying to hide a sheet. VVVVVK Excel Programming 1 August 25th 06 11:59 AM
Exception from HRESULT: 0x800A03EC nano2k New Users to Excel 0 July 21st 06 12:15 PM
Chart.Export throws COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC. Steven Excel Programming 1 November 5th 03 06:59 PM


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

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

About Us

"It's about Microsoft Excel"