Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey guys
I need to list all of my open projects. What is the code for this? Thank you Todd Huttenstine |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
http://www.cpearson.com/excel/vbe.htm
should give you the basics. -- Regards, Tom Ogilvy "Todd Huttenstine" wrote in message ... Hey guys I need to list all of my open projects. What is the code for this? Thank you Todd Huttenstine |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This does not tell how to list all the open projects.
-----Original Message----- http://www.cpearson.com/excel/vbe.htm should give you the basics. -- Regards, Tom Ogilvy "Todd Huttenstine" wrote in message ... Hey guys I need to list all of my open projects. What is the code for this? Thank you Todd Huttenstine . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You must have missed it:
Before using these procedures, you'll need to set a reference in VBA to the VBA Extensibility library. In the VBA editor, go to the Tools menu, choose the References item, and put a check next to "Microsoft Visual Basic For Applications Extensibility" library. This enables VBA to find the definitions of these objects. After you create the reference, go to the object browse and restrict the search to VBIDE search on Project at the bottom you will see VBE VBE Projects click on that and hit F1 from help: Returns the VBProjects collection, which represents all of the projects currently open in the Visual Basic IDE. -- Regards, Tom Ogilvy "Todd Huttenstine" wrote in message ... This does not tell how to list all the open projects. -----Original Message----- http://www.cpearson.com/excel/vbe.htm should give you the basics. -- Regards, Tom Ogilvy "Todd Huttenstine" wrote in message ... Hey guys I need to list all of my open projects. What is the code for this? Thank you Todd Huttenstine . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Todd,
Try something like Dim VBProj As VBIDE.VBProject For Each VBProj In Application.VBE.VBProjects Debug.Print VBProj.Name Next VBProj -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Todd Huttenstine" wrote in message ... Hey guys I need to list all of my open projects. What is the code for this? Thank you Todd Huttenstine |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summary sheet including only open projects. | Excel Discussion (Misc queries) | |||
help with projects | Excel Discussion (Misc queries) | |||
Open saved projects automatically? | Excel Discussion (Misc queries) | |||
How to become a better programmer, post college. More projects or less projects. | Excel Programming | |||
locked vb projects | Excel Programming |