Hello,
I currently use the following code for zooming email, which is located in ThisOutlookSession. It works well for double-click or ENTER carriage pressed. However, it does not zoom either next or previous e-mail item (I either use hotkey "CTRL + >" / "CTRL + <" or click "Next Item / Previous Item"). I need to do one extra event, such as either mouse click on email body or use combination "ALT + TAB" so that an email is zoomed. Any suggestion how I make it zoom automatically whenever used hotkey "CTRL + >" / "CTRL + <" or click "Next Item / Previous Item". In addition, email are either stored in separate folders and I use search operators so that to group and sort emails by dates and corresponding folders.
I use MS Office 2016, 64-bit.
Private Sub objOpenInspector_Activate()
On Error GoTo Error1
Dim wdDoc As Word.Document
Set wdDoc = objOpenInspector.WordEditor
wdDoc.Windows(1).Panes(1).View.Zoom.Percentage = 125
Error1:
Err.Clear
Resume Next
Ends:
End Sub
I currently use the following code for zooming email, which is located in ThisOutlookSession. It works well for double-click or ENTER carriage pressed. However, it does not zoom either next or previous e-mail item (I either use hotkey "CTRL + >" / "CTRL + <" or click "Next Item / Previous Item"). I need to do one extra event, such as either mouse click on email body or use combination "ALT + TAB" so that an email is zoomed. Any suggestion how I make it zoom automatically whenever used hotkey "CTRL + >" / "CTRL + <" or click "Next Item / Previous Item". In addition, email are either stored in separate folders and I use search operators so that to group and sort emails by dates and corresponding folders.
I use MS Office 2016, 64-bit.
Private Sub objOpenInspector_Activate()
On Error GoTo Error1
Dim wdDoc As Word.Document
Set wdDoc = objOpenInspector.WordEditor
wdDoc.Windows(1).Panes(1).View.Zoom.Percentage = 125
Error1:
Err.Clear
Resume Next
Ends:
End Sub