SDC C-Project CF Review 프로그램
5개 파일 변경됨
24 ■■■■ 파일 변경됨
ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.cpp 13 ●●●● 패치 | 보기 | raw | blame | 히스토리
ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h 1 ●●●● 패치 | 보기 | raw | blame | 히스토리
ReviewHistory/ReveiwHistory/akFormationMap.cpp 6 ●●●● 패치 | 보기 | raw | blame | 히스토리
ReviewHistory/bin/ReviewHistroy.exe 패치 | 보기 | raw | blame | 히스토리
ReviewSystem/ReviewSystem/SequenceProcessor_CPJT.cpp 4 ●●●● 패치 | 보기 | raw | blame | 히스토리
ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.cpp
@@ -121,6 +121,7 @@
    ON_BN_CLICKED(IDC_CHK_REVIEW_DEFECT, &CReveiwHistoryDlg::OnClickedChkReviewDefect)
    ON_BN_CLICKED(IDC_CHK_SINGLE, &CReveiwHistoryDlg::OnClickedChkSingle)
    ON_EN_CHANGE(IDC_EDIT_FILE_COUNT, &CReveiwHistoryDlg::OnChangeEditFileCount)
    ON_WM_KEYDOWN()
END_MESSAGE_MAP()
// CReveiwHistoryDlg 메시지 처리기
@@ -738,7 +739,7 @@
            return TRUE;
        }
        else if (NM_CLICK == pDispInfo->hdr.code)
        else if (NM_CLICK == pDispInfo->hdr.code || LVN_ITEMCHANGING == pDispInfo->hdr.code)
        {
            if (pDispInfo->item.row == 0)
            {
@@ -864,7 +865,7 @@
            return TRUE;
        }
        else if (NM_CLICK == pDispInfo->hdr.code)
        else if (NM_CLICK == pDispInfo->hdr.code || LVN_ITEMCHANGING == pDispInfo->hdr.code)
        {
            if (pDispInfo->item.row == 0)
            {
@@ -3828,3 +3829,11 @@
    }
    m_Formation.m_vecHeaderTemp.clear();
}
void CReveiwHistoryDlg::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
    // TODO: 여기에 메시지 처리기 코드를 추가 및/또는 기본값을 호출합니다.
    CDialogEx::OnKeyDown(nChar, nRepCnt, nFlags);
}
ReviewHistory/ReveiwHistory/ReveiwHistoryDlg.h
@@ -279,4 +279,5 @@
    void SetCellCount() { m_nCellCount = m_nCellCount + 1; }
    int    GetCellCount() { return m_nCellCount; }
    afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
};
ReviewHistory/ReveiwHistory/akFormationMap.cpp
@@ -1055,12 +1055,12 @@
        CString strDefectInfo;
        COLORREF cl;
        cl = RGB(39, 255, 39);
        cl = RGB(0, 0, 0);
        pDC->SetTextAlign(TA_LEFT | TA_BASELINE);
        pDC->SetTextColor(cl);
        strDefectInfo.Format("%d : %.3lf, %.3lf Cam: %d, SCan : %d", m_pMouseOveredDefect->m_nDefectID, m_pMouseOveredDefect->dPositionX, m_pMouseOveredDefect->dPositionY, m_pMouseOveredDefect->m_nCameraID, m_pMouseOveredDefect->m_nScanIdx);
        pDC->TextOut(GetWindowPosX(m_pMouseOveredDefect->dPositionX)+5, GetWindowPosY(m_pMouseOveredDefect->dPositionY) - 7, strDefectInfo);
        strDefectInfo.Format("%dCam %dSCan, %d : %.3lf, %.3lf ", m_pMouseOveredDefect->m_nCameraID, m_pMouseOveredDefect->m_nScanIdx, m_pMouseOveredDefect->m_nDefectID, m_pMouseOveredDefect->dPositionX, m_pMouseOveredDefect->dPositionY);
        pDC->TextOut(GetWindowPosX(m_pMouseOveredDefect->dPositionX)+5, GetWindowPosY(m_pMouseOveredDefect->dPositionY)+3, strDefectInfo);
    }
    if (m_pSelectedFormation)
ReviewHistory/bin/ReviewHistroy.exe
Binary files differ
ReviewSystem/ReviewSystem/SequenceProcessor_CPJT.cpp
@@ -8460,8 +8460,8 @@
                m_pSP2P->ISP2P_DisplayMessage(_T("[PCControl_Send] Review Start Ack! => %d"), 1);
                break;
            case PCControlSend_ResultDataComplete_CPJT:
                m_pSP2P->ISP2P_DisplayMessage(_T("[PCControl_Send] Result Data Complete! => %d"), 1);
            case PCControlSend_ReviewEndAck_CPJT:
                m_pSP2P->ISP2P_DisplayMessage(_T("[PCControl_Send] Review End Ack! => %d"), 1);
                break;
            }
        }