CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: AmVal

Search: Search took 0.03 seconds.

  1. Re: excel automation - window doesn't come to the foreground in Windows Server 2008

    Thank you so much for the tip! A very simple workaround, once I figured out to use "XLMAIN" for the application parameter in FindWindow().

    HWND xlsHWnd = FindWindow(_T("XLMAIN"), NULL);...
  2. excel automation - window doesn't come to the foreground in Windows Server 2008

    We have a C++ 5.0 app that does something like this:

    Creates the excel dispatch, exports the data, etc...
    ...
    then calls these functions:

    xlsApp.SetDisplayAlerts(TRUE);...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured