+ Reply to Thread
Results 1 to 3 of 3

Open spreadsheet

  1. #1
    Registered User
    Join Date
    07-17-2006
    Posts
    1

    Red face Open spreadsheet

    Any help much appreciated!

    When a spreadsheet is opened using a button containing a macro from another spreadsheet, why doesn't it alert the user if someone is already in the file? It just opens a 'read-only' copy. Is there any way around this, with code or anything?

    Thank you!

  2. #2
    Duncan
    Guest

    Re: Open spreadsheet


    If ThisWorkbook.ReadOnly = True Then
    MsgBox "Read only"
    Else
    MsgBox " Read-Write"
    End If


    or...

    If ThisWorkbook.ReadOnly = True Then
    ThisWorkbook.Close
    Else
    MsgBox " read write"
    End If




    Duncan



    Grace79 wrote:

    > Any help much appreciated!
    >
    > When a spreadsheet is opened using a button containing a macro from
    > another spreadsheet, why doesn't it alert the user if someone is
    > already in the file? It just opens a 'read-only' copy. Is there any way
    > around this, with code or anything?
    >
    > Thank you!
    >
    >
    > --
    > Grace79
    > ------------------------------------------------------------------------
    > Grace79's Profile: http://www.excelforum.com/member.php...o&userid=36435
    > View this thread: http://www.excelforum.com/showthread...hreadid=562024



  3. #3
    Bob Phillips
    Guest

    Re: Open spreadsheet

    Check the readonly property of the workbook, and message it yourself

    Workbooks.Open sFilename
    If activeworkbook.ReadOnly Then
    MsgBox "File already open, so it is readonly"
    EndIf

    --
    HTH

    Bob Phillips

    (replace somewhere in email address with gmail if mailing direct)

    "Grace79" <Grace79.2b3b53_1153140310.6976@excelforum-nospam.com> wrote in
    message news:Grace79.2b3b53_1153140310.6976@excelforum-nospam.com...
    >
    > Any help much appreciated!
    >
    > When a spreadsheet is opened using a button containing a macro from
    > another spreadsheet, why doesn't it alert the user if someone is
    > already in the file? It just opens a 'read-only' copy. Is there any way
    > around this, with code or anything?
    >
    > Thank you!
    >
    >
    > --
    > Grace79
    > ------------------------------------------------------------------------
    > Grace79's Profile:

    http://www.excelforum.com/member.php...o&userid=36435
    > View this thread: http://www.excelforum.com/showthread...hreadid=562024
    >




+ 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