Copy and Paste in forms
C / C++ / MFC
2
Posts
2
Posters
1
Views
1
Watching
-
I have a problem with a FormView. How do you implement copy and paste. How to activeate cut and paste in the controls on the form. Please help Jørgen Granborg
Add your own handlers for cut/copy/paste ON_COMMAND(ID_EDIT_COPY, OnEditCopy) void CXView::OnEditCopy() { CWnd* pWnd = GetFocus(); if ( pWnd != NULL ) pWnd -> SendMessage(WM_COPY); }