MFC byDreamy postedApr 14, 2006

다이얼로그 기반 APP에서 Edit에 엔터키 먹게 하기

?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

+ - Up Down Comment Print

1. PreTranslateMessage(MSG* pMsg)  에서 추가

if (pMsg->message == WM_KEYDOWN &&
    (pMsg->wParam == VK_ESCAPE || pMsg->wParam == VK_CANCEL || pMsg->wParam == VK_RETURN) )
{
    if (pMsg->wParam == VK_RETURN)
    {
        ProcessReturn();
    }
    return TRUE;
}

2. ProcessReturn 함수 구현

/* 오와아아.. 다이얼로그에서 엔터키 한번 처리하기 힘들다 힘들어... 어휴.. */ // Jo UngJe, 2006-4-14
void CUnicode2MBCS_Rus_winDlg::ProcessReturn()
{
    UpdateData(TRUE);

    CWnd *w;
    w = GetFocus();
    
    if (w->GetDlgCtrlID() == IDC_EDIT_HEX)
    {
        int s, e;
        m_EditHex.GetSel(s, e);
        
        m_HexString.Insert(s, '\n');
        m_HexString.Insert(s, '\r');

        UpdateData(FALSE);

        m_EditUni.SetSel(s+2, s+2);
        m_EditHex.SetFocus();
    }
    else if (w->GetDlgCtrlID() == IDC_EDIT_UNI)
    {
        int s, e;
        m_EditUni.GetSel(s, e);
        
        m_UniString.Insert(s, '\n');
        m_UniString.Insert(s, '\r');

        UpdateData(FALSE);

        m_EditUni.SetSel(s+2, s+2);
        m_EditUni.SetFocus();
    }
}

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소

Designed by sketchbooks.co.kr / sketchbook5 board skin

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5