#1   Report Post  
swec74
 
Posts: n/a
Default message box

I have been given a code to make a msg box pop up on opening the work book,
but is there any way to have that msg box pop up on a certain sheet insted of
it poping up when the work book opens?

thanks for any help given.
regards
Stuart
  #2   Report Post  
Nick Hodge
 
Posts: n/a
Default

Stuart

You could use the Sheet_Activate() event, like so

Private Sub Worksheet_Activate()
MsgBox "Activated " & Me.Name
End Sub

To implement, check he

http://www.nickhodge.co.uk/vba/vbaim....htm#EventCode

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
HIS


"swec74" wrote in message
...
I have been given a code to make a msg box pop up on opening the work book,
but is there any way to have that msg box pop up on a certain sheet insted
of
it poping up when the work book opens?

thanks for any help given.
regards
Stuart



  #4   Report Post  
Gord Dibben
 
Posts: n/a
Default

Right-click on the sheet tab and "View Code"

Paste these lines in that module.

Private Sub Worksheet_Activate()
''your pop-up message code goes here
End Sub

Delete the code from the module it presently resides in.

Gord Dibben Excel MVP


On Sun, 2 Jan 2005 02:01:01 -0800, swec74
wrote:

I have been given a code to make a msg box pop up on opening the work book,
but is there any way to have that msg box pop up on a certain sheet insted of
it poping up when the work book opens?

thanks for any help given.
regards
Stuart


  #5   Report Post  
swec74
 
Posts: n/a
Default

thank u it helpped alot :) but from that code is there any way to have it so
the message pops up for the first time i open the work book instead of every
time i click on the tab? thanks agian for ur help.

"Gord Dibben" wrote:

Right-click on the sheet tab and "View Code"

Paste these lines in that module.

Private Sub Worksheet_Activate()
''your pop-up message code goes here
End Sub

Delete the code from the module it presently resides in.

Gord Dibben Excel MVP


On Sun, 2 Jan 2005 02:01:01 -0800, swec74
wrote:

I have been given a code to make a msg box pop up on opening the work book,
but is there any way to have that msg box pop up on a certain sheet insted of
it poping up when the work book opens?

thanks for any help given.
regards
Stuart





  #6   Report Post  
Gord Dibben
 
Posts: n/a
Default

There are probably more elegant methods, but........

Copy/paste this to the worksheet.

Private Sub Worksheet_Activate()
If Range("A1").Value = "phnorton" Then Exit Sub
MsgBox "hoohah"
Range("A1").Value = "phnorton"
End Sub


Now copy/paste this to the ThisWorkbook Module

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Sheets("Sheet1").Range("A1").ClearContents
End Sub


Adjust range, sheetname and value to suit.


Gord

On Sat, 8 Jan 2005 03:27:01 -0800, swec74
wrote:

thank u it helpped alot :) but from that code is there any way to have it so
the message pops up for the first time i open the work book instead of every
time i click on the tab? thanks agian for ur help.

"Gord Dibben" wrote:

Right-click on the sheet tab and "View Code"

Paste these lines in that module.

Private Sub Worksheet_Activate()
''your pop-up message code goes here
End Sub

Delete the code from the module it presently resides in.

Gord Dibben Excel MVP


On Sun, 2 Jan 2005 02:01:01 -0800, swec74
wrote:

I have been given a code to make a msg box pop up on opening the work book,
but is there any way to have that msg box pop up on a certain sheet insted of
it poping up when the work book opens?

thanks for any help given.
regards
Stuart




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
Error message with embedded objects. Robban Setting up and Configuration of Excel 0 December 15th 04 10:05 AM
Error message opening Excel97 workbook cobbler Excel Discussion (Misc queries) 2 December 11th 04 05:31 PM
Error Message Appearing JaneC Excel Discussion (Misc queries) 1 December 6th 04 11:40 PM
#num! error message Brenda Excel Worksheet Functions 4 November 19th 04 03:55 AM
#num! error message Frank Kabel Excel Worksheet Functions 0 November 18th 04 07:07 PM


All times are GMT +1. The time now is 03:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"