Borland
Excel 설치 여부 확인
leo21c
2010. 1. 19. 15:31
#include <ComObj.hpp>
//.....
Variant xlApp;
try
{
xlApp = GetActiveOleObject("Excel.Application");
}
catch(...)
{
ShowMessage("엑셀 프로그램이 없습니다.");
}
//.....
|
LIST