I am currently working on designing a fully functional automation software for my job using AutoIt. Everything is going great but I've run into a little issue using the _IECreateEmbedded function.
My Issue:
What this part of my program is supposed to do is embed Microsoft Outlook's webpage inside of a GUI. This part works just fine. The webpage is loaded just fine and everything is displayed as it should be. I am able to view the message titles and subjects on the left side of my screen like normal, HOWEVER, when I click on the message to open it to read, nothing happens. I am also unable to compose a new message or search my inbox. I assumed this had something to do with Outlook using a script that AutoIt doesn't commonly support, but I'm not entirely sure. I tried loaded GMail into the GUI and it works perfectly. Any ideas?
Here's my current code: (The important parts at least)
; Includes
#include <GUIConstantsEx.au3>
#include <IE.au3>
#include <WindowsConstants.au3>
; Create GUI Window
$windowMain = GUICreate("Embedded Outlook Client", 1001, 701, 242, 88, BitOR($WS_MAXIMIZEBOX,$WS_MINIMIZEBOX,$WS_SYSMENU,$WS_CAPTION,$WS_POPUP,$WS_POPUPWINDOW,$WS_GROUP,$WS_TABSTOP,$WS_BORDER,$WS_CLIPSIBLINGS))
; Display GUI
GUISetState(@SW_SHOW)
; Create an outline for the Embedded Browser
$guiEmailGroup = GUICtrlCreateGroup("", 8, 48, 801, 601)
; Initiate function
Local $oIE = _IECreateEmbedded()
; Created an embedded browser
$browserObj = GUICtrlCreateObj($oIE, 20, 60, 780, 580)
; Allow the browser to be resized if the window is maximized.
GUICtrlSetResizing ( $browserObj, $GUI_DOCKAUTO)
; Navigate to Outlook
_IENavigate($oIE, "https://outlook.office.com/owa/#path=/mail")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Note: You will most likely need an Outlook account to be able to help with this solution. Any help would be GREATLY appreciated. Thank you in advance!
This is a simple example of sending an email with cdo.message
Now if you want to build an email client I don't know how much it could help. An other alternative could be WinHTTP.