Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 557
Default Macro for Message Box

Hi all, Is there way to display Message box without any button on it
for few seconds and then make it disappear automatically. I know I
can achive this by Userform but I need do this with any other way than
using Userform. Has any friend got any idea.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,117
Default Macro for Message Box

try this: right click on the sheet you want this to occur on, and
choose "view code". enter this code:

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address = "$B$1" Then
MsgBox "Hello there"
End If

End Sub

this should give you an idea of how to proceed.
write back if you have questions.
:)
susan



On Aug 12, 8:41*am, K wrote:
Hi all, Is there way to display Message box without any button on it
for few seconds and then make it disappear automatically. *I know I
can achive this by Userform but I need do this with any other way than
using Userform. *Has any friend got any idea.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Macro for Message Box

hi
stick with the user form. the built in vb msgbox doesn't not have a no
button setting and no timer that i am aware of. custom message boxes are
usually user forms.

Regards
FSt1

"K" wrote:

Hi all, Is there way to display Message box without any button on it
for few seconds and then make it disappear automatically. I know I
can achive this by Userform but I need do this with any other way than
using Userform. Has any friend got any idea.

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
Macro Message Bar jen2018 Excel Discussion (Misc queries) 2 June 5th 10 12:43 AM
Macro message box. puiuluipui Excel Discussion (Misc queries) 10 October 7th 09 02:22 PM
Enable macro message on VBA Workbook Open then macro ends Barb Reinhardt Excel Programming 2 July 15th 08 03:59 PM
A macro disabled message comes up but there is no macro. lovetocount Excel Discussion (Misc queries) 2 June 25th 08 12:54 PM
Macro message box ynissel Excel Discussion (Misc queries) 7 July 18th 05 06:50 PM


All times are GMT +1. The time now is 03:29 PM.

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"