Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Window_Open in personal.xls run each time I open subsequent workbooks.


Hi everyone

It seems my previous attempt at asking this question has cause
confusion

I am using personal.xls to store macros, like most people
One of the macros I have, checks any loaded workbook for certai
information (file name) and if there is a match, makes some automati
entries in that loaded workbook

When I open a file, it is usually by double clicking on a spreadshee
in Windows Explorer. This means that when Excel opens, it first load
*personal.xls*, raises the event Window_Open, and then continues t
open the *second* workbook (the one I double clicked on)

Since the second does not contain any macros, there is no Window_Ope
handler to execute

My problem is
1) I do not want any macros in the *second* workboo
2) I want the Window_Open handler in *personal.xls* to be run each tim
I load a workbook using the double click method

Cheers
Nap

PS.. Sorry about the double post, don't know how that happened. I
seems to be an empty thread

--
Na
-----------------------------------------------------------------------
Nap's Profile: http://www.excelforum.com/member.php...fo&userid=3272
View this thread: http://www.excelforum.com/showthread.php?threadid=52572

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Window_Open in personal.xls run each time I open subsequentworkbooks.

You could use an application event that just looks for any workbook that's being
opened:

Chip Pearson has some notes at:
http://www.cpearson.com/excel/AppEvent.htm

A short sample (which goes under thisWorkbook in personal.xls):

Option Explicit
Public WithEvents xlApp As Excel.Application
Private Sub Workbook_Open()
Set xlApp = Application
End Sub
Private Sub Workbook_Close()
Set xlApp = Nothing
End Sub
Private Sub xlApp_NewWorkbook(ByVal Wb As Workbook)
MsgBox "Hey you created a workbook named: " & Wb.Name
End Sub
Private Sub xlApp_WorkbookOpen(ByVal Wb As Workbook)
MsgBox "Hey you opened a workbook named: " & Wb.Name
End Sub


===
There's a Workbook_WindowActivate event, but I don't see a window_open event.

Nap wrote:

Hi everyone,

It seems my previous attempt at asking this question has caused
confusion.

I am using personal.xls to store macros, like most people.
One of the macros I have, checks any loaded workbook for certain
information (file name) and if there is a match, makes some automatic
entries in that loaded workbook.

When I open a file, it is usually by double clicking on a spreadsheet
in Windows Explorer. This means that when Excel opens, it first loads
*personal.xls*, raises the event Window_Open, and then continues to
open the *second* workbook (the one I double clicked on).

Since the second does not contain any macros, there is no Window_Open
handler to execute.

My problem is:
1) I do not want any macros in the *second* workbook
2) I want the Window_Open handler in *personal.xls* to be run each time
I load a workbook using the double click method.

Cheers,
Nap.

PS.. Sorry about the double post, don't know how that happened. It
seems to be an empty thread.

--
Nap
------------------------------------------------------------------------
Nap's Profile: http://www.excelforum.com/member.php...o&userid=32722
View this thread: http://www.excelforum.com/showthread...hreadid=525723


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Window_Open in personal.xls run each time I open subsequent workbooks.


Hi Dave,

Thanks for the link. I posted the same question on another forum and
had someone give me the same link, so I have already looked at it.

I tried the example available from it and it worked fine in the xls
file supplied. But when I copied the code to the PERSONAL.XLS sheet,
it gave me an error stating that the EVENTCLASS is a user-defined type
that hasn't been defined. So I changed it to Class1 and it then
worked. Here is the change I made:

I changed the line:

Code:
--------------------
Dim Appclass As New EventClass
--------------------
to
Code:
--------------------
Dim Appclass As New Class1
--------------------


Thanks,
Nap


--
Nap
------------------------------------------------------------------------
Nap's Profile: http://www.excelforum.com/member.php...o&userid=32722
View this thread: http://www.excelforum.com/showthread...hreadid=525723

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Window_Open in personal.xls run each time I open subsequentworkbooks.

You could drop the class and just put that code into ThisWorkbook.

Nap wrote:

Hi Dave,

Thanks for the link. I posted the same question on another forum and
had someone give me the same link, so I have already looked at it.

I tried the example available from it and it worked fine in the xls
file supplied. But when I copied the code to the PERSONAL.XLS sheet,
it gave me an error stating that the EVENTCLASS is a user-defined type
that hasn't been defined. So I changed it to Class1 and it then
worked. Here is the change I made:

I changed the line:

Code:
--------------------
Dim Appclass As New EventClass
--------------------
to
Code:
--------------------
Dim Appclass As New Class1
--------------------

Thanks,
Nap

--
Nap
------------------------------------------------------------------------
Nap's Profile: http://www.excelforum.com/member.php...o&userid=32722
View this thread: http://www.excelforum.com/showthread...hreadid=525723


--

Dave Peterson
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
Can't Open Two Workbooks at the Same Time [email protected] Excel Discussion (Misc queries) 6 May 7th 08 08:37 PM
Stop the "Personal" sheet from popping up every time I open a work George B Excel Discussion (Misc queries) 2 December 21st 07 10:46 PM
Auto Activate (Window_Open Event) in Personal.xls when another workbook is loaded Nap Excel Programming 7 March 24th 06 09:22 AM
Keeping 2 Excel workbooks open at the same time Royal Excel Discussion (Misc queries) 2 April 18th 05 10:10 PM
2 workbooks open at same time break macros Brian Kranson Excel Programming 4 June 15th 04 07:38 PM


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