+ Reply to Thread
Results 1 to 4 of 4

A Pop up message in Excel...

Hybrid View

  1. #1
    Web master
    Guest

    A Pop up message in Excel...

    Just curious if this can be done... does anyone know a way to make a pop up
    message appear in Excel 2003 when an a file opens? Example, I have a
    particular file that is shared for others to update. When whoever opens the
    file I would like a little text box to say a few chosen words from me like
    "THIS FILE IS NOT TO BE MOVE OR RENAMED" or anything else I choose.

    Thanks in advance,

    Ian



  2. #2
    Norman Jones
    Guest

    Re: A Pop up message in Excel...

    Hi Ian,

    In a standard module paste:

    '=============>>
    Public Sub Auto_Open()
    MsgBox "THIS FILE IS NOT TO BE MOVE OR RENAMED"
    End Sub
    '<<=============


    ---
    Regards,
    Norman


    "Web master" <webmaster@teamcomtech.com> wrote in message
    news:eX8I7lqIGHA.2680@TK2MSFTNGP09.phx.gbl...
    > Just curious if this can be done... does anyone know a way to make a pop
    > up message appear in Excel 2003 when an a file opens? Example, I have a
    > particular file that is shared for others to update. When whoever opens
    > the file I would like a little text box to say a few chosen words from me
    > like "THIS FILE IS NOT TO BE MOVE OR RENAMED" or anything else I choose.
    >
    > Thanks in advance,
    >
    > Ian
    >




  3. #3
    Web master
    Guest

    Re: A Pop up message in Excel...

    Perfect. Thanks!!!

    "Norman Jones" <normanjones@whereforartthou.com> wrote in message
    news:e8ZByrqIGHA.3000@TK2MSFTNGP14.phx.gbl...
    > Hi Ian,
    >
    > In a standard module paste:
    >
    > '=============>>
    > Public Sub Auto_Open()
    > MsgBox "THIS FILE IS NOT TO BE MOVE OR RENAMED"
    > End Sub
    > '<<=============
    >
    >
    > ---
    > Regards,
    > Norman
    >
    >
    > "Web master" <webmaster@teamcomtech.com> wrote in message
    > news:eX8I7lqIGHA.2680@TK2MSFTNGP09.phx.gbl...
    >> Just curious if this can be done... does anyone know a way to make a pop
    >> up message appear in Excel 2003 when an a file opens? Example, I have a
    >> particular file that is shared for others to update. When whoever opens
    >> the file I would like a little text box to say a few chosen words from me
    >> like "THIS FILE IS NOT TO BE MOVE OR RENAMED" or anything else I choose.
    >>
    >> Thanks in advance,
    >>
    >> Ian
    >>

    >
    >




  4. #4
    Jim Thomlinson
    Guest

    RE: A Pop up message in Excel...

    In the thisworkbook module in the VB Editor add this code(Right click the
    Excel icon in the top right hand corner of Excel and choose view code)

    Private Sub Workbook_Open()
    MsgBox "THIS FILE IS NOT TO BE MOVE OR RENAMED", _ vbInformation,
    "Warning"
    End Sub
    --
    HTH...

    Jim Thomlinson


    "Web master" wrote:

    > Just curious if this can be done... does anyone know a way to make a pop up
    > message appear in Excel 2003 when an a file opens? Example, I have a
    > particular file that is shared for others to update. When whoever opens the
    > file I would like a little text box to say a few chosen words from me like
    > "THIS FILE IS NOT TO BE MOVE OR RENAMED" or anything else I choose.
    >
    > Thanks in advance,
    >
    > Ian
    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1