How to add clipboard use to CHtmlView
Posted
by ljp ljp
on February 17th, 1999
Easy...
void CWebBrowserView::OnEditCut()
{
ExecWB(OLECMDID_CUT, OLECMDEXECOPT_DONTPROMPTUSER, NULL, NULL);
}
void CWebBrowserView::OnEditCopy()
{
ExecWB(OLECMDID_COPY, OLECMDEXECOPT_DONTPROMPTUSER, NULL, NULL);
}
void CWebBrowserView::OnEditPaste()
{
ExecWB(OLECMDID_PASTE, OLECMDEXECOPT_DONTPROMPTUSER, NULL, NULL);
}
void CWebBrowserView::OnEditSelectall()
{
ExecWB(OLECMDID_SELECTALL, OLECMDEXECOPT_DONTPROMPTUSER, NULL, NULL);
}

Comments
There seems less people talk about CHtmlView
Posted by timefinger on 12/02/2008 03:37amHow can i get the selected text?
Posted by Legacy on 05/07/2003 12:00amOriginally posted by: biuliu
in my project, I use ChtmlView to display the document. My question is when the user select some text in the ChtmlView How can i get how many character the user selected.
ReplyIf you know the solution, please eMail me (bubble601@hotmail.com)
Thanks for advance!
How can I find out whether there is anything selected?
Posted by Legacy on 10/28/2002 12:00amOriginally posted by: jondo
I would need this for the ON_EDIT_COPY's ON_UPDATE_COMMAND_UI handler - to deactivate the menu item when there is nothing to copy.
Reply
Using CHtmlView and an HTML file
Posted by Legacy on 12/07/2001 12:00amOriginally posted by: Rahi Parsi
Hi all. I'm new to using the CHtmlView. I would like to know if there's any way to get form values from a web page?
For example, let's say "login.html" has a form with a text field for the username. How do I get the value of that text field through C++ code?
Thank you.
ReplyHow to save an URL to html file using CHtmlView?
Posted by Legacy on 10/11/2001 12:00amOriginally posted by: Oren Farber
Hi
I use CHtmlView that to view URL How can I save that URL into Html file ?
ReplyIt is a useful tip....
Posted by Legacy on 10/06/2001 12:00amOriginally posted by: SIMON
that is a useful tip..
ReplyHow to find a word in a page
Posted by Legacy on 02/23/2000 12:00amOriginally posted by: virtu
There are "Cut" , "Copy" , "Paste" , "Select All " and "Find a word in page" in the Edit Menu of IE, we can use ExecWB to execute the four functions, I don't know how to execute the fifth function(Find a word in page), does any one tell me how to do that?
Thank you very much...
ReplyAdding clipboard use to applet running in HTML page
Posted by Legacy on 11/18/1999 12:00amOriginally posted by: Katie King
This solution works well for a plain HTML page running in CHTMLView window, but does not work for fields created/controlled by a java applet running in the page.
Any ideas?
Katie King
ReplyKatieK@Keyfile.com