Click here to Skip to main content
15,914,163 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: about "round" function in visual C++ Pin
CPallini10-Jul-07 2:09
mveCPallini10-Jul-07 2:09 
QuestionLVN_BEGINDRAG Pin
baerten9-Jul-07 21:51
baerten9-Jul-07 21:51 
AnswerRe: LVN_BEGINDRAG Pin
Aamir Butt9-Jul-07 23:35
Aamir Butt9-Jul-07 23:35 
GeneralRe: LVN_BEGINDRAG Pin
baerten10-Jul-07 0:02
baerten10-Jul-07 0:02 
GeneralRe: LVN_BEGINDRAG Pin
Hamid_RT10-Jul-07 1:22
Hamid_RT10-Jul-07 1:22 
GeneralRe: LVN_BEGINDRAG Pin
baerten10-Jul-07 3:38
baerten10-Jul-07 3:38 
GeneralRe: LVN_BEGINDRAG Pin
Mark Salsbery10-Jul-07 6:28
Mark Salsbery10-Jul-07 6:28 
GeneralRe: LVN_BEGINDRAG Pin
Hamid_RT10-Jul-07 8:34
Hamid_RT10-Jul-07 8:34 
Insert this code to your program
///On the cpp file insert these codes
BEGIN_MESSAGE_MAP(CDialogDlg, CDialog)
	ON_NOTIFY(LVN_BEGINRDRAG, IDC_LIST2, OnLvnBeginrdragList2)
END_MESSAGE_MAP()


void CDialogDlg::OnLvnBeginrdragList2(NMHDR *pNMHDR, LRESULT *pResult)
{
	LPNMLISTVIEW pNMLV = reinterpret_cast<LPNMLISTVIEW>(pNMHDR);
	// TODO: Add your control notification handler code here
	*pResult = 0;
}

///And on the header file insert this code
	afx_msg void OnLvnBeginrdragList2(NMHDR *pNMHDR, LRESULT *pResult);






WhiteSky

JokeRe: LVN_BEGINDRAG Pin
baerten10-Jul-07 21:11
baerten10-Jul-07 21:11 
GeneralRe: LVN_BEGINDRAG Pin
Hamid_RT10-Jul-07 21:28
Hamid_RT10-Jul-07 21:28 
QuestionMethod SetEnvironmentVariable not working ! Pin
Yanshof9-Jul-07 20:52
Yanshof9-Jul-07 20:52 
AnswerRe: Method SetEnvironmentVariable not working ! Pin
Naveen9-Jul-07 21:40
Naveen9-Jul-07 21:40 
GeneralRe: Method SetEnvironmentVariable not working ! Pin
Yanshof9-Jul-07 22:26
Yanshof9-Jul-07 22:26 
GeneralRe: Method SetEnvironmentVariable not working ! Pin
Dominik Reichl9-Jul-07 22:44
Dominik Reichl9-Jul-07 22:44 
GeneralRe: Method SetEnvironmentVariable not working ! Pin
David Crow10-Jul-07 3:22
David Crow10-Jul-07 3:22 
QuestionDesktop drawing Pin
rvdwerf9-Jul-07 20:51
rvdwerf9-Jul-07 20:51 
AnswerRe: Desktop drawing Pin
Hamid_RT9-Jul-07 21:19
Hamid_RT9-Jul-07 21:19 
GeneralRe: Desktop drawing Pin
rvdwerf9-Jul-07 21:59
rvdwerf9-Jul-07 21:59 
GeneralRe: Desktop drawing Pin
Hamid_RT10-Jul-07 1:20
Hamid_RT10-Jul-07 1:20 
QuestionRe: Desktop drawing Pin
Hamid_RT10-Jul-07 21:28
Hamid_RT10-Jul-07 21:28 
AnswerRe: Desktop drawing Pin
Mark Salsbery10-Jul-07 6:32
Mark Salsbery10-Jul-07 6:32 
QuestionPrinting zero in file Pin
rp_suman9-Jul-07 20:01
rp_suman9-Jul-07 20:01 
AnswerRe: Printing zero in file Pin
Peter Weyzen9-Jul-07 20:08
Peter Weyzen9-Jul-07 20:08 
QuestionRe: Printing zero in file Pin
CPallini9-Jul-07 21:00
mveCPallini9-Jul-07 21:00 
AnswerRe: Printing zero in file Pin
rp_suman9-Jul-07 22:16
rp_suman9-Jul-07 22:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.