// [Windows 로그]의 이벤트 원본 명칭string sSource = "Smart A.Eye Player EventLog";// [Windows 로그]의 이벤트 로그 명칭string sLog = "응용 프로그램"; // [Windows 로그]의 이벤트 원본이 생성되어 있는지 체크if (!EventLog.SourceExists(sSource)) { // [Windows 로그]의 이벤트 원본을 생성한다. EventLog.CreateEventSource(sSource, sLog); } // 로그 내용을 기록한다.EventLog.WriteEntry(sSource, ""로그 내용...\n무엇이 문제인가???"); 단, Microsoft Visual Studio를 관리자 모드로 실행시키고 컴파일해..