Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
4.00/5 (2 votes)
Hi all,

I have a MFC dialog C++ application in VS2010, And my application has two textbox is source folder(txtSrcfolder) and destination folder(txtDesFolder) so when I drag and drop a file to txtxDesFolder, I want to assign full file path to txtDesFolder and the same to txtSrcFolder.
But how to determine which textbox is draged to?
(if there is only one textbox i can handle it but with many control I can't)

Can you help me, please?
Posted
Updated 24-Jan-19 0:23am

1 solution

Try to pass a box pointer to this test :) :
C++
/*static*/ bool CYourDialog::TestDropWnd(CWnd* pcWndTest)
{
  CPoint cPoint;
  if (::GetCursorPos(&cPoint)) {
    return (pcWndTest == CWnd::WindowFromPoint(cPoint));
  }
  return false;
}
 
Share this answer
 
v3
Comments
ngthtra 20-Jun-12 22:19pm    
how to use this code?
Eugen Podsypalnikov 21-Jun-12 1:55am    
At your "dropped" event, call this test for the both boxes (pass their pointers). The function will return true, if a testing box is under the mouse :)
ngthtra 21-Jun-12 22:37pm    
so what will pcWndTest parameter be inputed? I am using CAppDlg::OnDropFiles(HDROP hDropInfo){} to get folder path
Eugen Podsypalnikov 22-Jun-12 3:24am    
In the context of your dialog:
bool bDroppedOnSrcBox(GetDlgItem(IDC_SRC_BOX)); // IDC_SRC_BOX is the resource ID of the box
bool bDroppedOnTrgBox(GetDlgItem(IDC_TRG_BOX)); // IDC_TRG_BOX is the resource ID of the box

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900