I'm writing a program to parse a Word Document and export data out to an Excel Workbook using OLE Automation (the non-MFC way I guess). Works fine in Debug, not so in Release (specifically if optimization is enabled). The error is that the IDispatch::Invoke call failed, specifically: 0x80020004 DISP_E_PARAMNOTFOUND Parameter [...] read more
I am trying to download an .exe from a URL and have it go a folder that I want it to, not the download folder. This is what I have so far in the code: Section "file" SEC07 SetOutPath "$INSTDIR" SetOverwrite ifnewer push "http://www.URL.com/file.exe" call InternetExplorerAuto_OpenURL SectionEnd At this point [...] read more