Click here to Skip to main content
15,921,548 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello,

I have made a project based on MultiDoc structure and the view is derived from CFormView. I also add the Ultimate Grid Control to several of the views. But unfortunately I can't copy, cut, paste text from one cell to another. Only in dialog based project those editing functions can work.

Does any body know how to enable the copy, cut and paste functions in a CFormView? Thank you.
Posted

1 solution

A bit old, but I just had this problem.

I added a call to StartEdit in OnKeyDown, thus:

C#
void MyCug::OnKeyDown(UINT *vcKey,BOOL processed)
{
    UNREFERENCED_PARAMETER(*vcKey);
    UNREFERENCED_PARAMETER(processed);

    StartEdit( *vcKey);
//  GetScrollBarCtrl(SB_HORZ)->EnableScrollBar(ESB_DISABLE_BOTH);
}



I found a similar solution by someone else who added a similar call in OnDClicked
http://read.pudn.com/downloads96/sourcecode/windows/control/391046/Ultimate%20Grid/Demos/EditingDemo/MyCUG.cpp__.htm[^]
 
Share this answer
 

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