"know" i did this once long ago, but for the life of me i can neither
recall how nor find it on the web. any help would be greatly appriciated.
(not sure if it's a IE7 vs IE 6 thing (im that lost))
i have a WebBrowser control on my form and i would like to invoke the "Send
page by email" functionality. i tried stuff like this
<code>
int WM_COMMAND = 0x0111;
int ID_IE_FILE_SENDPAGE = 279;
m_NullPointer = IntPtr.Zero;
m_hWBShellDocObjHandle = (IntPtr)0;
HandleRef hr = new HandleRef(this.web, this.web.Handle);
IntPtr ret = SendMessage(hr, (uint)WM_COMMAND, (IntPtr)ID_IE_FILE_SENDPAGE,
m_NullPointer);
</code>
( from the CP )
and stuff like
<code>
web.Document.ExecCommand(......
</code>
none work.
the mailto route also seems to be the wrong path for me cause there seems to
be a limit to the body length and the html formatting is gone.
i did not use the System.Web.Mail because my users would not know what
values to supply for the configuration. ( figured the functionality is
already there....)
please point me the way ( sry bout the posts, it's just that one group
after the otehr is silent )