Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 32
Default How to show old macros?

Hello newsgroup,

I've got an old worksheet from Excel 4.0 with macros in the old speech
before VBA. Is there a possibility to show this old macros? The VB
Editor only shows VBA macros...


Peter

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default How to show old macros?

You need to unhide the macro sheet that contains the macros.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



wrote in message
oups.com...
Hello newsgroup,

I've got an old worksheet from Excel 4.0 with macros in the old
speech
before VBA. Is there a possibility to show this old macros? The
VB
Editor only shows VBA macros...


Peter



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 32
Default How to show old macros?

Hello Chip,

all sheets are visible. The problem is that the macros are not written
in VBA, but written in XLM.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default How to show old macros?

XLM macros are stored in special worksheets. Use the following
code to make all sheets, including XLM macro sheets, visible.
Then you can delete the sheet.

Sub AAA()
Dim s As Object
For Each s In ThisWorkbook.Sheets
s.Visible = True
Next s
End Sub

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com





wrote in message
ps.com...
Hello Chip,

all sheets are visible. The problem is that the macros are not
written
in VBA, but written in XLM.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 32
Default How to show old macros?

I have used your code, but nothing happens. The numer of sheets remains
equal. There is no sheet with code. I'm using Excel 2002



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default How to show old macros?

Do you have any separate workbooks with an .xlm extension?

--
Regards,
Tom Ogilvy


wrote in message
oups.com...
I have used your code, but nothing happens. The numer of sheets remains
equal. There is no sheet with code. I'm using Excel 2002



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
how do we get 2003 .xlb toolbars and custom macros to show in 07 bigdeal Excel Discussion (Misc queries) 1 June 6th 10 01:24 AM
How do I get my macros from an XLA file to show in Tools Macro Harlan Grove[_2_] Excel Worksheet Functions 0 June 28th 09 11:34 PM
clearing macros in excel when none show up lee Excel Discussion (Misc queries) 2 October 19th 06 05:33 PM
Why do macros show up while opening document, but were deleted? Ralph Orth Excel Discussion (Misc queries) 6 February 16th 06 07:07 PM
Macros in Personal.xls don't show up in other wksheets bethg7 Setting up and Configuration of Excel 4 August 2nd 05 01:40 AM


All times are GMT +1. The time now is 12:26 PM.

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"