+ Reply to Thread
Results 1 to 2 of 2

workbooks keep hiding

  1. #1
    mr.davidmorrison@gmail.com
    Guest

    workbooks keep hiding

    how do you stop all the inactive workbooks from hiding I was using this
    code to hide everything and now whenever I have two or more workbooks
    open only the active one shows
    I have the same code for workbook deactivate and activate

    Private Sub Workbook_Open()
    With ActiveWindow
    .DisplayGridlines = False
    .DisplayHeadings = False
    .DisplayHorizontalScrollBar = False
    .DisplayVerticalScrollBar = False
    .DisplayWorkbookTabs = False
    With Application
    .DisplayFormulaBar = False
    .DisplayStatusBar = False
    End With

    End With
    Dim TBarCount As Integer
    Dim cbar As CommandBar
    Sheets("sheet1").Range("A:A").ClearContents
    TBarCount = 0
    For Each cbar In Application.CommandBars
    If cbar.Type = msoBarTypeNormal Then
    If cbar.Visible Then
    TBarCount = TBarCount + 1
    Sheets("sheet1").Cells(TBarCount, 1) = cbar.Name
    cbar.Visible = False
    End If
    End If
    Next cbar
    Sheets("Information").Select
    Range("A3").Select
    ActiveWindow.Zoom = 95

    End Sub
    Private Sub Workbook_Activate()
    With ActiveWindow
    .DisplayGridlines = False
    .DisplayHeadings = False
    .DisplayHorizontalScrollBar = False
    .DisplayVerticalScrollBar = False
    .DisplayWorkbookTabs = False
    With Application
    .DisplayFormulaBar = False
    .DisplayStatusBar = False
    End With

    End With
    Dim TBarCount As Integer
    Dim cbar As CommandBar
    Sheets("sheet1").Range("A:A").ClearContents
    TBarCount = 0
    For Each cbar In Application.CommandBars
    If cbar.Type = msoBarTypeNormal Then
    If cbar.Visible Then
    TBarCount = TBarCount + 1
    Sheets("sheet1").Cells(TBarCount, 1) = cbar.Name
    cbar.Visible = False
    End If
    End If
    Next cbar
    Sheets("Information").Select
    Range("A3").Select
    ActiveWindow.Zoom = 95

    End Sub


  2. #2
    curlydave
    Guest

    Re: workbooks keep hiding

    woops gave the same code
    heres the code I have for
    before close or deactivate

    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    With ActiveWindow
    .DisplayGridlines = True
    .DisplayHeadings = True
    .DisplayHorizontalScrollBar = True
    .DisplayVerticalScrollBar = True
    .DisplayWorkbookTabs = True
    End With

    Dim Row As Long
    Dim TBar As String
    Row = 1
    TBar = Sheets("sheet1").Cells(Row, 1)
    Do While TBar <> ""
    Application.CommandBars(TBar).Visible = True
    Row = Row + 1
    TBar = Sheets("sheet1").Cells(Row, 1)
    Loop

    ActiveWindow.Zoom = 100
    With Application
    .DisplayFormulaBar = True
    .DisplayStatusBar = True
    End With

    End Sub


+ 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