ISISSelect example for C++ 5.0 and later

//The following example displays the ISISSelect DialogBox and writes a message indicating which ISIS Scanner Driver was selected.
ILEADRasterISIS *pRasterISIS;
CWnd *m_pMainWnd;
    pRasterISIS->ISISSelect ((long)m_pMainWnd->m_hWnd);
    CString csMsg;
    csMsg.Format(TEXT("%s was selected!"),
                 pRasterISIS->GetDriverName () );
    AfxMessageBox(csMsg);