Hi all,
Because our PC's at work are quite slow, I've written a v small piece of vba code so that when a colleague opens a specific form excel opens Outlook and displays a specific worksheet as the excel workbook opens. This means Outlook can load up whilst the excel form is being completed. This code works perfectly but I was wondering if anyone knows any vba code they could add that minimizes Outlook immediately as it opens ?
The vba code is placed in the "This Workbook" area of the workbook. I'm sorry I'm not using "XL2BB" but I'm not allowed to install it on my work laptop.
"Private Sub Workbook_Open()
Shell ("OUTLOOK")
Worksheets("Birdstrike").Activate
Range("F6:J6").Select
End Sub"
Appreciate all you help.
Trevor
Because our PC's at work are quite slow, I've written a v small piece of vba code so that when a colleague opens a specific form excel opens Outlook and displays a specific worksheet as the excel workbook opens. This means Outlook can load up whilst the excel form is being completed. This code works perfectly but I was wondering if anyone knows any vba code they could add that minimizes Outlook immediately as it opens ?
The vba code is placed in the "This Workbook" area of the workbook. I'm sorry I'm not using "XL2BB" but I'm not allowed to install it on my work laptop.
"Private Sub Workbook_Open()
Shell ("OUTLOOK")
Worksheets("Birdstrike").Activate
Range("F6:J6").Select
End Sub"
Appreciate all you help.
Trevor