Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Error=429: ActiveX component can't create object

Reply
Thread Tools Display Modes

Error=429: ActiveX component can't create object

 
 
vibhub
Guest
Posts: n/a

 
      12-23-2008

I am creating a VB6 application to export data from MsAccess to Excel.
It works fine on Windows XP Pro but gives an error "Error=429: ActiveX
component can't create object" on Vista Home Premium. The development
machine has Excel 11 where as the client machine has Excel 12. I
included Excel 11 in the installer package.

I have included the code that gives the error....

' Excel object variables
Dim appExcel As Excel.Application
Dim wbk As Excel.Workbook
Dim wks As Excel.Worksheet
Dim sTemplate As String
Dim sTempFile As String
Dim sOutput As String

' Create the Excel Applicaiton, Workbook and Worksheet and Database
object
Set appExcel = New Excel.Application
Set wbk = appExcel.Workbooks.Open(sOutput)
Set wks = appExcel.Worksheets("Sheet1")

Thanks & Regards,

Vibhu Bansal
'http://www.ITSYSSolutions.com' (http://www.itsyssolutions.com/)


--
vibhub
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Error=429: ActiveX component can't create object vibhub Windows Vista General Discussion 2 12-23-2008 01:11 PM
ActiveX component vistauser Windows Vista General Discussion 2 05-01-2008 12:31 PM
Error=429 : ActiveX component can't create object RobGG Windows Vista General Discussion 14 02-25-2008 03:06 AM
Error 429 : ActiveX component can't create object Brad Windows Vista General Discussion 9 03-16-2007 11:12 AM
ActiveX component John in Cumbria Windows Vista General Discussion 2 03-08-2007 06:22 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59