VBA Activate Code Emptying Clipboard

Dunk4Divin

New Member
Joined
Aug 21, 2019
Messages
16
Office Version
  1. 365
Platform
  1. Windows
Hello All. I have a workbook into which I have placed the following code which works as it should. This was done to prevent all following instances of Excel having hidden toolbar etc when opened while this workbook is open. The code below works and allows excel to opened ok with toolbar present but when I try to copy/paste data from another workbook it copies OK but activating the workbook with this code seems to empty the clipboard. Any advice would be gratefully received


VBA Code:
Private Sub Workbook_Activate()

Application.WindowState = xlMaximized 'maximize Excel

ActiveWindow.WindowState = xlMaximized 'maximize the workbook in Excel

Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"",False)"

Application.DisplayFormulaBar = False

ActiveWindow.DisplayWorkbookTabs = False

ActiveWindow.DisplayHeadings = False



ActiveWindow.Zoom = 90

End Sub



Private Sub Workbook_Deactivate()

Application.WindowState = xlMaximized 'maximize Excel

ActiveWindow.WindowState = xlMaximized 'maximize the workbook in Excel

Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"",True)"

Application.DisplayFormulaBar = True

ActiveWindow.DisplayWorkbookTabs = True

ActiveWindow.DisplayHeadings = True



ActiveWindow.DisplayHeadings = True




End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,223,885
Messages
6,175,184
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top