Can we show the caret cursor as we drop files onto the CEdit control of a CDialogEx?

65 Views Asked by At

I have a OnDropFiles handler for a CDialogEx:

void CWeekendMeetingDlg::OnDropFiles(HDROP hDropInfo)
{
    __super::OnDropFiles(hDropInfo);
    // ...

}

Example in action:

enter image description here

Is it possible to adjust it so that when the cursor is over the CEdit control is shows the caret cursor to give more of an indication of where the data will be inserted?

0

There are 0 best solutions below