Jump to content

Recommended Posts

Posted

This post advises "The first thing to say is that I don't get the error. How new is your ExcelCOM_UDF au3 file? Try getting the newest version here and retrying. " http://www.autoitscript.com/forum/index.php?showtopic=71208&view=findpost&p=521512 I am so new to this it doesn't seem obvious. It appears some sample scripts require the use of the ExcelCOM_UDF.au3 instead of the Excel.au3 UDF library.

Posted

I understand that EXCEL.au3 is a subset of EXCELCom.au3. EXEC.au3 is the code that made it into standard AutoIt (with helpfile, examples, SciTE integration etc.).

I had to use EXCELCom for some of my scripts because I needed the extended functions.

You can't use both of them at the same time because of identical function names.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

  On 2/15/2010 at 6:18 AM, 'water said:

I understand that EXCEL.au3 is a subset of EXCELCom.au3. EXEC.au3

You can't use both of them at the same time because of identical function names.

Oh, that sounds complex. EXCEL.au3, EXCELCom.au3. EXEC.au3 I will try and remember not to have more than one on the include line at one time. I assume the same goes for ExcelCom_UDF.au3 ? Thanks for helping me out with a response.
Posted (edited)

Sorry, there is a type in my previous post. There are only two UDFs around.

One is Excel.au3 which is included in "standard" AutoIt. The other is ExcelCOM.au3 which can be downloaded from the forum.

I understand that Excel.au3 is a subset of ExcelCOM.au3.

Stay with Excel.au3 as long as possible. If you need more functions replace Excel.au3 with ExcelCOM.au3.

Edited by water

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

  On 2/15/2010 at 2:24 PM, 'water said:

Sorry, there is a type in my previous post. There are only two UDFs around.

One is Excel.au3 which is included in "standard" AutoIt. The other is ExcelCOM.au3 which can be downloaded from the forum.

I understand that Excel.au3 is a subset of ExcelCOM.au3.

Stay with Excel.au3 as long as possible. If you need more functions replace Excel.au3 with ExcelCOM.au3.

So I take it there is no such thing as "ExcelCOM_UDF.au3" or it is obsolete? Thanks for helping me out. I am just trying to make sure the UDF I am using has the _ExcelCopy() function. I just want to copy something to my clipboard and dump it somewhere else later on.

#include <Excel.au3> #include <ExcelCOM_UDF.au3> $sFilePath = "c:\test.xls" $sFile1 = "test.xls" $oExcel = _ExcelBookOpen($sFilePath, 0, 0)   _ExcelCopy($oExcel, A1:C5)
Edited by meatsack
Posted

I think the names are used synonymous

I use the following when I need more than AutoIt has included.

My UDFs and Tutorials:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...