Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Determine name of macro contained in each excel file in a folder

I have a folder that contains several excel files, each excel file
contains a single macro.

Is it possible from a macro in another excel file to programmatically
determine the name of the macro in each of the files in the folder?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 621
Default Determine name of macro contained in each excel file in a folder

See Chip Pearson's site for programming the VBE.

http://www.cpearson.com/excel/VBE.aspx

Specifically "Listing all procedures in a Module"


Gord

On Sat, 5 May 2012 12:57:41 -0700 (PDT), John
wrote:

I have a folder that contains several excel files, each excel file
contains a single macro.

Is it possible from a macro in another excel file to programmatically
determine the name of the macro in each of the files in the folder?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Determine name of macro contained in each excel file in a folder

Gord,

Thank you for the quick reply.

I was actually on that site earlier and saw that info but I can't get
it to work. I get the error:

User Defined Type not defined

Chip's method is clearly beyond my current level of VBA ability, I'm
probably not understanding some fine point of how VBA works.

In any case I was looking for something I could comprehend :-)

On May 5, 2:23*pm, Gord Dibben wrote:
See Chip Pearson's site for programming the VBE.

http://www.cpearson.com/excel/VBE.aspx

Specifically "Listing all procedures in a Module"

Gord

On Sat, 5 May 2012 12:57:41 -0700 (PDT), John
wrote:



I have a folder that contains several excel files, each excel file
contains a single macro.


Is it possible from a macro in another excel file to programmatically
determine the name of the macro in each of the files in the folder?- Hide quoted text -


- Show quoted text -


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Determine name of macro contained in each excel file in a folder

hi John,

did you added a réf. for Microsoft Visual Basic For Applications Extensibility 5.3


================================================== ================================================== ============
•First, you need to set an reference to the VBA Extensibililty library.
The library contains the definitions of the objects that make up the VBProject.
In the VBA editor, go the the Tools menu and choose References.
In that dialog, scroll down to and check the entry for Microsoft Visual Basic For Applications Extensibility 5.3.
If you do not set this reference, you will receive a User-defined type not defined compiler error.
================================================== ================================================== ============


--
isabelle



Le 2012-05-05 16:43, John a écrit :
Gord,

Thank you for the quick reply.

I was actually on that site earlier and saw that info but I can't get
it to work. I get the error:

User Defined Type not defined

Chip's method is clearly beyond my current level of VBA ability, I'm
probably not understanding some fine point of how VBA works.

In any case I was looking for something I could comprehend :-)

On May 5, 2:23 pm, Gord wrote:
See Chip Pearson's site for programming the VBE.

http://www.cpearson.com/excel/VBE.aspx

Specifically "Listing all procedures in a Module"

Gord

On Sat, 5 May 2012 12:57:41 -0700 (PDT),
wrote:



I have a folder that contains several excel files, each excel file
contains a single macro.


Is it possible from a macro in another excel file to programmatically
determine the name of the macro in each of the files in the folder?- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Determine name of macro contained in each excel file in a folder

Isabelle,

a réf. for Microsoft Visual Basic For Applications Extensibility 5.3


I have no idea what that is! Guess I need to do a little mroe
research.


On May 5, 2:54*pm, isabelle wrote:
hi John,

did you added a réf. for Microsoft Visual Basic For Applications Extensibility 5.3

================================================== =========================*======================== =============
•First, you need to set an reference to the VBA Extensibililty library.
The library contains the definitions of the objects that make up the VBProject.
In the VBA editor, go the the Tools menu and choose References.
In that dialog, scroll down to and check the entry for Microsoft Visual Basic For Applications Extensibility 5.3.
If you do not set this reference, you will receive a User-defined type not defined compiler error.
================================================== =========================*======================== =============

--
isabelle

Le 2012-05-05 16:43, John a écrit :



Gord,


Thank you for the quick reply.


I was actually on that site earlier and saw that info but I can't get
it to work. I get the error:


User Defined Type not defined


Chip's method is clearly beyond my current level of VBA ability, I'm
probably not understanding some fine point of how VBA works.


In any case I was looking for something I could comprehend :-)


On May 5, 2:23 pm, Gord *wrote:
See Chip Pearson's site for programming the VBE.


http://www.cpearson.com/excel/VBE.aspx


Specifically "Listing all procedures in a Module"


Gord


On Sat, 5 May 2012 12:57:41 -0700 (PDT),
wrote:


I have a folder that contains several excel files, each excel file
contains a single macro.


Is it possible from a macro in another excel file to programmatically
determine the name of the macro in each of the files in the folder?- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Determine name of macro contained in each excel file in a folder

on the VBA window, go the the Tools menu and choose References.
In that dialog, scroll down to and check the entry for Microsoft Visual Basic For Applications Extensibility 5.3.
If you do not set this reference, you will receive a User-defined type not defined compiler error.

--
isabelle



Le 2012-05-05 17:01, John a écrit :
Isabelle,

a réf. for Microsoft Visual Basic For Applications Extensibility 5.3


I have no idea what that is! Guess I need to do a little mroe
research.


On May 5, 2:54 pm, wrote:
hi John,

did you added a réf. for Microsoft Visual Basic For Applications Extensibility 5.3

================================================== =========================*======================== =============
•First, you need to set an reference to the VBA Extensibililty library.
The library contains the definitions of the objects that make up the VBProject.
In the VBA editor, go the the Tools menu and choose References.
In that dialog, scroll down to and check the entry for Microsoft Visual Basic For Applications Extensibility 5.3.
If you do not set this reference, you will receive a User-defined type not defined compiler error.
================================================== =========================*======================== =============

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Determine name of macro contained in each excel file in a folder

also,

if you put "Option Explicit" at the top of the module, you need to declare all variables

--
isabelle



Le 2012-05-05 16:54, isabelle a écrit :
hi John,

did you added a réf. for Microsoft Visual Basic For Applications Extensibility 5.3


================================================== ================================================== ============
•First, you need to set an reference to the VBA Extensibililty library.
The library contains the definitions of the objects that make up the VBProject.
In the VBA editor, go the the Tools menu and choose References.
In that dialog, scroll down to and check the entry for Microsoft Visual Basic For Applications Extensibility 5.3.
If you do not set this reference, you will receive a User-defined type not defined compiler error.
================================================== ================================================== ============


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
copying sheet1 from different workbooks contained in a folder to myone and only destination workbook. Jeff[_56_] Excel Programming 3 April 15th 09 07:24 PM
add the macros contained inside a template to an Excel file. Aerojade Excel Discussion (Misc queries) 1 September 30th 08 05:53 AM
Problems with opening a VBA contained excel file? Maz Setting up and Configuration of Excel 3 November 8th 07 08:01 PM
Need a macro to include file names in a folder to excel sheet anil Excel Discussion (Misc queries) 0 March 12th 07 09:10 AM
How to determine if a Folder/Directory Exists in Excel VBA [email protected] Excel Programming 2 November 17th 06 02:38 AM


All times are GMT +1. The time now is 01:52 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"