Slashdot Mirror


User: ernie13

ernie13's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Component systems and versioning (Not) on Let's Make UNIX Not Suck · · Score: 1

    Even the COM purist at Redmond break their
    own Law of "Inmutability". This is what's needed
    if you don't know which version of Excel
    you're working with:

    pXL.CreateInstance ("Excel.Application");
    vt.vt = VT_BOOL;
    vt.boolVal = TRUE;
    #ifdef _EXCEL_9_OFFICE_2000_
    pXL->PutVisible(0, vt);
    #else
    pXL->PutVisible( vt );
    #endif

    - Ernie