I have a VBA project in Word that can create and populate Excel Workbooks and Outlook Messages. I can show the Message to the user when I'm done with it, but I can't figure out how to show the Workbook.

VBA in a Word project, what is the method to show an Excel Workbook?

This is the code I use for the Outlook Message.

VB Code:
  1. Dim objOutlook As Outlook.Application
  2. Dim objOutlookMsg As Outlook.MailItem
  3.  
  4. Set objOutlook = New Outlook.Application
  5. Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
  6.  
  7. 'Fill out Reciepents, Subject, add Attachments here.
  8.  
  9. objOutlookMsg.Display
  10. AppActivate myMessageSubject, True