Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-24-2008, 01:51 PM
=?Utf-8?B?dGFubmVyZHVkZQ==?=
 
Posts: n/a
Pop up Reminder dialog boxes in Excel

Does anyone know how to create these in excel? I have a spreadsheet that
when I go to close the application I want it to pop up an information box to
remind me to do a task and even open the application that is needed to be
performed.
Reply With Quote
  #2 (permalink)  
Old 07-24-2008, 03:14 PM
Gord Dibben
 
Posts: n/a
Re: Pop up Reminder dialog boxes in Excel

Private Sub Workbook_BeforeClose(Cancel As Boolean)
MsgBox "Don't forget to do something"
If Not ThisWorkbook.Saved = True Then
ThisWorkbook.Save
End If

Code to open another workbook or start another application

End Sub

Right-click on the Excel icon left of "File"

Select "View Code" and paste the above into that module.

Alt + q to return to the Excel window.

Close the workbook.


Gord Dibben MS Excel MVP


On Thu, 24 Jul 2008 06:51:01 -0700, tannerdude
<tannerdude@discussions.microsoft.com> wrote:

>Does anyone know how to create these in excel? I have a spreadsheet that
>when I go to close the application I want it to pop up an information box to
>remind me to do a task and even open the application that is needed to be
>performed.


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 12:07 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109