<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
  <channel>
    <title>Phorum 5</title>
    <link>http://www.itwriting.com/phorum/index.php</link>
    <description><![CDATA[]]></description>
    <language>EN</language>
    <pubDate>Mon, 10 Dec 2012 15:12:39 +0000</pubDate>
    <lastBuildDate>Mon, 10 Dec 2012 15:12:39 +0000</lastBuildDate>
    <category>Phorum 5</category>
    <generator>Phorum 5.1.25</generator>
    <ttl>60</ttl>
    <item>
      <title>[HtmlEditor] Re: Updated functionality</title>
      <link>http://www.itwriting.com/phorum/read.php?3,5468,5584#msg-5584</link>
      <author>Tim</author>
      <description><![CDATA[Sounds interesting. Please do post the code or email to me tim at itwriting.com<br />
<br />
Thanks<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,5468,5584#msg-5584</guid>
      <pubDate>Mon, 10 Dec 2012 15:12:39 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: Support for Internet Explorer 10</title>
      <link>http://www.itwriting.com/phorum/read.php?3,5582,5583#msg-5583</link>
      <author>Tim</author>
      <description><![CDATA[Hmm, that's odd. Easy to reproduce the problem?<br />
<br />
I am using a slightly modified HTMLEditor on Windows 8 and it works fine (after a bug fix in the RTM).<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,5582,5583#msg-5583</guid>
      <pubDate>Mon, 10 Dec 2012 15:09:37 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Support for Internet Explorer 10</title>
      <link>http://www.itwriting.com/phorum/read.php?3,5582,5582#msg-5582</link>
      <author>Michael</author>
      <description><![CDATA[Hi there<br />
<br />
I hope this forum ist still acitve, as the last post dates from 2011. Well, it's worth a try.<br />
So far, HTML Editor worked like a charm. But now, with Internet Explorer 10, some behaviour is very strange: It generates the following code: An ? after &lt;BODY&gt;, followed by another &lt;META&gt;, like this:<br />
<br />
&lt;&lt;normal header&gt;&gt;<br />
<br />
&lt;META name=GENERATOR content=&quot;MSHTML 10.00.9200.16420&quot;&gt;&lt;/HEAD&gt;<br />
&lt;BODY&gt;?<br />
&lt;META name=GENERATOR content=&quot;MSHTML 10.00.9200.16420&quot;&gt;<br />
&lt;DIV&gt;<br />
<br />
&lt;&lt;normal content&gt;&gt;<br />
<br />
Is there a fix to this? It would be highly appreciated...<br />
Greetings<br />
Michael]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,5582,5582#msg-5582</guid>
      <pubDate>Mon, 10 Dec 2012 13:00:48 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Updated functionality</title>
      <link>http://www.itwriting.com/phorum/read.php?3,5468,5468#msg-5468</link>
      <author>WayneW</author>
      <description><![CDATA[I have made a few minor modifications that I was hoping to submit to help out anybody else using the control.<br />
<br />
1.  Implemented IPreventFocus interface. This prevents IE from 'stealing' focus when document gets loaded.<br />
2.  Added DocumentFocusIn/Out events so users can be notified when the document focus changes.<br />
<br />
I would gladly submit these changes to help anybody else out.  Just tell me what I need to do to get these changes into repos.<br />
wayne]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,5468,5468#msg-5468</guid>
      <pubDate>Wed, 23 May 2012 22:27:52 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: Disable undo and redo</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4235,5313#msg-5313</link>
      <author>Vincent Degrave</author>
      <description><![CDATA[Hi!<br />
<br />
To reset the undo buffer i used the following code (in delphi)<br />
(The interface declarations have been added after the code sample)<br />
hope this helps<br />
<br />
procedure TIEEditor.ResetUndoBuffer;<br />
var<br />
  sp      : IServiceProvider;<br />
  undoMgr : IOleUndoManager;<br />
  hr      : HRESULT;<br />
const<br />
  IID_IOleUndoManager : TGUID = '{d001f200-ef97-11ce-9bc9-00aa00608e01}';<br />
begin<br />
  sp := fieController.HTmlDocument as IServiceProvider;<br />
  if not assigned(sp) then exit; //raise? or find other sollution<br />
<br />
  hr := sp.QueryService(IID_IOleUndoManager, IID_IOleUndoManager, undoMgr);<br />
  if hr &lt;&gt; s_ok then exit;<br />
  if undoMgr = nil then exit;<br />
<br />
  undoMgr.DiscardFrom(nil);<br />
end;<br />
<br />
<br />
<br />
// Undo buffer related stuff<br />
//   Interface definitions created to have access to the subsystem<br />
type<br />
  IOleParentUndoUnit = interface(IUnknown)<br />
  end;<br />
  IOleUndoUnit =interface(IUnknown)<br />
    ['{894AD3B0-EF97-11CE-9BC9-00AA00608E01}']<br />
  end;<br />
<br />
  IOleUndoManager = interface(IUnknown)<br />
    ['{d001f200-ef97-11ce-9bc9-00aa00608e01}']<br />
    function Open(parentUndo: IOleParentUndoUnit): integer; stdcall;<br />
    function Close(parentUndo: IOleParentUndoUnit ; fCommit: boolean): integer;stdcall;<br />
    function Add(undoUnit :IOleUndoUnit ): integer;stdcall;<br />
    function GetOpenParentState(): integer;stdcall;<br />
    function DiscardFrom(undoUnit :IOleUndoUnit ): integer;stdcall;<br />
    procedure UndoTo(undoUnit: IOleUndoUnit );stdcall;<br />
    procedure RedoTo(undoUnit: IOleUndoUnit );stdcall;<br />
    function EnumUndoable: IUnknown; //:IEnumOleUndoUnits;//stdcall;<br />
    function EnumRedoable: IUnknown;stdcall;<br />
    function GetLastUndoDescription(): string;stdcall;<br />
    function GetLastRedoDescription(): string;stdcall;<br />
    procedure Enable(fEnable: boolean);stdcall;<br />
  end;]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4235,5313#msg-5313</guid>
      <pubDate>Sat, 28 May 2011 01:45:16 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] HTML Editor and progress</title>
      <link>http://www.itwriting.com/phorum/read.php?3,5310,5310#msg-5310</link>
      <author>Gareth Morse</author>
      <description><![CDATA[Hello<br />
<br />
Currently using the htmleditor control to display on a touch screen device so that I could display a touch keypad when user selects a cobntro on a web page.<br />
<br />
I have already modified to do this but i am now struglling to show page load progress as the default windows control has the OnProgressEvent and this version seems to lack the event.<br />
<br />
I assuming i need to update the dipatch codes to include it, but i am unsure the correct dispatch code to hok into the event?<br />
<br />
Thanks <br />
<br />
Gareth]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,5310,5310#msg-5310</guid>
      <pubDate>Fri, 13 May 2011 16:00:42 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: How to set LiveResize &amp; 2D-position</title>
      <link>http://www.itwriting.com/phorum/read.php?3,1518,5259#msg-5259</link>
      <author>poiuycat</author>
      <description><![CDATA[the &quot;Document&quot; should be &quot;ducument&quot; java is case sensitive<br />
<br />
this.htmlEditor1.Document.execCommand(&quot;2D-Position&quot;,true,true);]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,1518,5259#msg-5259</guid>
      <pubDate>Thu, 27 Jan 2011 02:39:28 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: multi-select controls</title>
      <link>http://www.itwriting.com/phorum/read.php?3,1550,5083#msg-5083</link>
      <author>tongquan liao</author>
      <description><![CDATA[htmlEditor1.HtmlDocument2.ExecCommand(&quot;MultipleSelection&quot;, true , null);]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,1550,5083#msg-5083</guid>
      <pubDate>Sat, 27 Nov 2010 07:39:38 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: Proper way to install Microsoft.mshtml.dll</title>
      <link>http://www.itwriting.com/phorum/read.php?3,1825,4637#msg-4637</link>
      <author>poonguzhali</author>
      <description><![CDATA[send me the proper way to install mshtml.dll]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,1825,4637#msg-4637</guid>
      <pubDate>Wed, 29 Sep 2010 09:08:46 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Message moderation</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4628,4628#msg-4628</link>
      <author>Tim</author>
      <description><![CDATA[Messages to this forum will now be moderated, as a spam prevention measure.<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4628,4628#msg-4628</guid>
      <pubDate>Tue, 28 Sep 2010 12:44:27 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: How to tell if the document has been modified?</title>
      <link>http://www.itwriting.com/phorum/read.php?3,3465,4520#msg-4520</link>
      <author>Halil</author>
      <description><![CDATA[This code work very well in C#:<br />
<br />
private static Guid IMarkupContainer2GUID = typeof(mshtml.IMarkupContainer2).GUID;<br />
<br />
private mshtml.IMarkupContainer2 GetMarkupContainer() {<br />
<br />
    object oDocument = this.browser.Document;<br />
<br />
    IntPtr pDocument = Marshal.GetIUnknownForObject(oDocument);<br />
<br />
    IntPtr pMarkupContainer = IntPtr.Zero;<br />
<br />
    // pMarkupContainer is different after a call to Navigate or designMode<br />
<br />
    Marshal.QueryInterface(pDocument, ref IMarkupContainer2GUID, out pMarkupContainer);<br />
<br />
    //object oMarkupContainer = Marshal.GetObjectForIUnknown(pMarkupContainer); // This does not work<br />
<br />
    object oMarkupContainer = Marshal.GetUniqueObjectForIUnknown(pMarkupContainer);<br />
<br />
    Marshal.Release(pDocument);<br />
<br />
    Marshal.Release(pMarkupContainer);<br />
<br />
    return (mshtml.IMarkupContainer2)oMarkupContainer;<br />
<br />
}]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,3465,4520#msg-4520</guid>
      <pubDate>Sat, 04 Sep 2010 14:47:58 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] runtimeStyle</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4518,4518#msg-4518</link>
      <author>svg</author>
      <description><![CDATA[Hello,<br />
 <br />
Can runtimeStyle be used in HTMLEditor (with no dependency on the Microsoft.mshtml interop assembly)?]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4518,4518#msg-4518</guid>
      <pubDate>Fri, 03 Sep 2010 08:44:54 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] databinding the html editor</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4511,4511#msg-4511</link>
      <author>PhilS</author>
      <description><![CDATA[Just about managed to get this working.<br />
<br />
It seems to be a little fragile in scenarios where the htmleditor is on a tab control, and the tab containing the htmleditor is not the &quot;current tab&quot; when the databinding takes place.  I still can't work out a way around the issues with visibility &amp; binding, but here's what i have so far.<br />
<br />
public class ChangeMonitor : IHTMLChangeSink<br />
{<br />
    private HtmlEditor mHtmlEditor;<br />
<br />
    public ChangeMonitor(HtmlEditor he) : base()<br />
    {<br />
        mHtmlEditor = he;<br />
    }<br />
<br />
    public void Notify()<br />
    {<br />
        mHtmlEditor.InvokeContentChanged();<br />
    }<br />
}<br />
<br />
<br />
and then in the htmleditor.cs:<br />
<br />
private void setChangeNotify()<br />
{<br />
	//only set this if there is an event handler<br />
	if (ContentChanged == null)<br />
	{<br />
		return;<br />
	}<br />
int hr;<br />
this.mChangeMonitor = new ChangeMonitor(this);<br />
	hr = ((IMarkupContainer2)this.HtmlDocument2).RegisterForDirtyRange(mChangeMonitor, out changeCookie);<br />
}<br />
<br />
and a modification to ReadyStateChangeActions so it looks like this:<br />
<br />
internal void ReadyStateChangeActions(IHTMLEventObj o)<br />
{<br />
<br />
//defensive - I've known this to be called<br />
//after doc was deactivated<br />
if (this.mHtmlDoc == null) return;<br />
	string theReadyState = this.HtmlDocument2.GetReadyState();<br />
	if (theReadyState == &quot;complete&quot;)<br />
	{<br />
	//if changed to &quot;COMPLETE&quot;, set edit designer<br />
<br />
	if (this.bLoadDocumentWhenReady)<br />
	{<br />
		Debug.WriteLine(&quot;Now loading doc&quot;);<br />
		this.LoadDocument(string.Empty);<br />
	return;<br />
	}<br />
	else if (this.bLoadUrlWhenReady)<br />
	{<br />
		Debug.WriteLine(&quot;Now loading url&quot;);<br />
		this.LoadUrl(this.url);<br />
		return;<br />
	}<br />
	Debug.WriteLine(&quot;Setting events&quot;);<br />
	{<br />
	if (this.IsDesignMode)<br />
	{<br />
	this.SetEditDesigner();<br />
	this.execCommand(commandids.IDM_AUTOURLDETECT_MODE, this.mEnableUrlDetection, false, false);<br />
	this.setChangeNotify();<br />
		}<br />
		}<br />
		if (this.bSetComposeSettingsWhenReady)<br />
		{<br />
			this.setDefaultFont();<br />
		}<br />
		//set HTMLEvents<br />
		this.SetHTMLEvents();<br />
<br />
		//refresh ReadyState since the above actions could have changed it<br />
		theReadyState = this.HtmlDocument2.GetReadyState();<br />
}<br />
//invoke ready state changed event<br />
	this.InvokeReadyStateChanged(theReadyState);<br />
}<br />
<br />
<br />
<br />
internal void InvokeContentChanged()<br />
{<br />
	if (ContentChanged != null)<br />
	{<br />
	ContentChanged(this, new System.EventArgs());<br />
	}<br />
}]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4511,4511#msg-4511</guid>
      <pubDate>Tue, 31 Aug 2010 17:45:53 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: uberbuild</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4428,4510#msg-4510</link>
      <author>PhilS</author>
      <description><![CDATA[Always nice to see updates.]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4428,4510#msg-4510</guid>
      <pubDate>Tue, 31 Aug 2010 17:33:00 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: uberbuild</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4428,4488#msg-4488</link>
      <author>Tim</author>
      <description><![CDATA[I don't think it is available.<br />
<br />
The main benefit was that it did not use mshtml; but now that this is removed from the download here as well it is less necessary.<br />
<br />
I do have an update to upload one day!<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4428,4488#msg-4488</guid>
      <pubDate>Wed, 25 Aug 2010 14:47:46 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] uberbuild</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4428,4428#msg-4428</link>
      <author>PhilS</author>
      <description><![CDATA[Anyone have a link to this?<br />
Is it still available?<br />
<br />
Digging through the forum history I am unable to find a link that works.]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4428,4428#msg-4428</guid>
      <pubDate>Mon, 16 Aug 2010 16:09:44 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] iframe opens in new window</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4427,4427#msg-4427</link>
      <author>Laxmish</author>
      <description><![CDATA[hi <br />
<br />
in the html editor window navigating to a html page on the server which has iframe in it pointing to another html page.<br />
<br />
when displaying it on the htmleditor with design mode off, the html page inside the iframe opens in new window.<br />
<br />
Please help.<br />
<br />
thanks and regards<br />
Laxmish]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4427,4427#msg-4427</guid>
      <pubDate>Mon, 16 Aug 2010 13:24:57 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: how to manipulate the darg and drop of the webbrowser editor!!</title>
      <link>http://www.itwriting.com/phorum/read.php?3,425,4404#msg-4404</link>
      <author>Robert</author>
      <description><![CDATA[I had the full implementation but in vb.net.<br />
<br />
Please send me an email to send u]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,425,4404#msg-4404</guid>
      <pubDate>Mon, 09 Aug 2010 15:43:21 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: HtmlEditor and Windows Vista 64 Bit</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4247,4320#msg-4320</link>
      <author>Tim</author>
      <description><![CDATA[Is the HTMLEditor project itself set to x86?<br />
<br />
Can you clean up any existing binaries?<br />
<br />
I've used it for years on 64-bit with no issues, provided it targets x86.<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4247,4320#msg-4320</guid>
      <pubDate>Tue, 20 Jul 2010 09:04:37 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Saving MSHTML DOM to file</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4308,4308#msg-4308</link>
      <author>pepper</author>
      <description><![CDATA[Greetings,<br />
<br />
I would like to save silently &quot;snapshots&quot; of the current status of the browser to a file: This include all dynamic changes done to the HTML (via DHTML, AJAX calls etc.) and clearly, all images, frames, iframes etc.<br />
Saving as MHT is not reliable, as it is not saving all changes done to the HTML.<br />
Any suggestions?<br />
Thanks,<br />
Pepper]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4308,4308#msg-4308</guid>
      <pubDate>Wed, 30 Jun 2010 06:33:47 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] mshtml.IHTMLEditHost sample in C#</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4306,4306#msg-4306</link>
      <author>devdas m. kamath</author>
      <description><![CDATA[Dear all,<br />
<br />
Can u pls provide me the sample code for implementing mshtml.IHTMLEditHost in C# language. i will be gratefuly to you.<br />
<br />
Thanks in advance<br />
<br />
Regards<br />
Devdas M. Kamath]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4306,4306#msg-4306</guid>
      <pubDate>Mon, 17 May 2010 07:52:05 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: HtmlEditor and Windows Vista 64 Bit</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4247,4305#msg-4305</link>
      <author>roman</author>
      <description><![CDATA[This is really urgent. someone with an idea please. <br />
<br />
thanks]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4247,4305#msg-4305</guid>
      <pubDate>Tue, 27 Apr 2010 10:20:13 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: HtmlEditor and Windows Vista 64 Bit</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4247,4285#msg-4285</link>
      <author>roman</author>
      <description><![CDATA[Hi all,<br />
building the project for x86 or anycpu completes but when opening the build application it throws the error message.<br />
<br />
Could not load file or assembly 'HtmlEditor, Version= 1.0.2507.22852,Culture=neutral, publickey=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.<br />
<br />
<br />
do you have an idea how to solve this?<br />
<br />
thanks!!!]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4247,4285#msg-4285</guid>
      <pubDate>Wed, 21 Apr 2010 12:47:08 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] IHTMLTxtRange.execCommand(&quot;Copy&quot;,false,null)  fails with IE settings</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4283,4283#msg-4283</link>
      <author>srirambalaji</author>
      <description><![CDATA[We have a .Net application that is used for editing/rendering customized HTML documents. It is hosted in IE using the AxSHDocVw.AxWebBrowser controls. We proceed with navigating to  &quot;about:blank&quot; page initially then we change the Document by writing our custom values into it. The problem we are facing is the call to IHTMLTxtRange.execCommand(&quot;Copy&quot;,false,null) is failing if we don't enable the  IE Security Settings in the Internet Security zone (Scripting-&gt;Allow Programmatic Access to Clipboard ).  <br />
<br />
In order to bypass the security setting ,I tried to point to a local html file initially while navigating. But this fails as soon as I modify the Document.<br />
<br />
I want to use the IHTMLTxtRange.execCommand(&quot;Copy&quot;,false,null) command so that I can customize our Copy/Paste operations.<br />
Is there any other way I can do this.<br />
Please share your ideas inorder to overcome this situation.<br />
Thanks.<br />
Sriram]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4283,4283#msg-4283</guid>
      <pubDate>Mon, 12 Apr 2010 20:20:44 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: Problem with LoadDocument</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4281,4282#msg-4282</link>
      <author>ands</author>
      <description><![CDATA[As you can see I even cant post a message with russian symbols :)]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4281,4282#msg-4282</guid>
      <pubDate>Mon, 05 Apr 2010 11:59:52 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Problem with LoadDocument</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4281,4281#msg-4281</link>
      <author>ands</author>
      <description><![CDATA[Thanks for the great editor<br />
<br />
But I have a trouble. <br />
When I load html document with non-latin characters (russian), this characters are shown with mistakes.<br />
For example, in the body I put &quot;&amp;#1090;&amp;#1077;&amp;#1089;&amp;#1090;&quot; and load html using LoadDocument method.<br />
But in place of &quot;&amp;#1090;&amp;#1077;&amp;#1089;&amp;#1090;&quot; editor shows B5AB.<br />
<br />
With latin characters editor is PERFECT.<br />
<br />
Please help!!!<br />
I would be very appreciate.<br />
<br />
Sorry for my English]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4281,4281#msg-4281</guid>
      <pubDate>Mon, 05 Apr 2010 08:33:40 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: .NET 3.5 errors</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4054,4280#msg-4280</link>
      <author>Azvareth</author>
      <description><![CDATA[Luke Wrote:<br />
-------------------------------------------------------<br />
&gt; This isn't a 64-bit issue; I get the exact same<br />
&gt; error.  I'm using WinXP SP2, .net 3.5 &amp; WPF.  I<br />
&gt; have the HtmlEditor inside a WPF USerControl and<br />
&gt; get the error when closing that control's designer<br />
&gt; window.<br />
<br />
<br />
Totaly OT, but i can't stop asking it:<br />
<br />
Why does the editor get full of shit when you copy from any source and past it in the Editor?<br />
<br />
//bahh]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4054,4280#msg-4280</guid>
      <pubDate>Fri, 02 Apr 2010 22:53:45 +0100</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] [solved] CLR20r3, FileLoadException, SecurityException, Strong name validation failed.</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4279,4279#msg-4279</link>
      <author>Atara</author>
      <description><![CDATA[I hope the following will help someone -<br />
<br />
I tried to compile and run HtmlEditor files [2005 with mshtml.dll]. <br />
On my development computer all works fine, but when I xcopy the bin folder to another computer the demo app did not work.<br />
The only error I received was -<br />
<br />
	DemoHtmlApp.exe has stopped working<br />
<br />
	Description:<br />
	  Stopped working<br />
<br />
	Problem signature:<br />
	  Problem Event Name:	CLR20r3<br />
	  Problem Signature 01:	demohtmlapp.exe<br />
	  Problem Signature 02:	1.0.3708.26933<br />
	  Problem Signature 03:	4b8673ca<br />
	  Problem Signature 04:	DemoHtmlApp<br />
	  Problem Signature 05:	1.0.3708.26933<br />
	  Problem Signature 06:	4b8673ca<br />
	  Problem Signature 07:	4<br />
	  Problem Signature 08:	dd<br />
	  Problem Signature 09:	System.IO.FileLoadException<br />
	  OS Version:	6.0.6000.2.0.0.768.3<br />
	  Locale ID:	1033<br />
<br />
 <br />
so I added Try-Catch in the Main() [DemoHtmlApp, Form1.cs] -<br />
<br />
     try {           <br />
            Application.Run(new Form1());             <br />
     }	catch (Exception e) {<br />
            Debug.WriteLine(&quot;Main exception: &quot; + e.Message);<br />
            MessageBox.Show(&quot;Main exception: &quot; + e.ToString() );<br />
            throw; // empty Throw for Vista WER [Windows Error Reporting]     <br />
     }<br />
<br />
<br />
now I received some more info - <br />
     System.IO.FileLoadException: Could not load file or assembly <br />
     'Microsoft.mshtml, Version=7.0.3300.0, . . .' or one of its dependencies.<br />
     Strong name validation failed. (Exception . . . 0x8013141A)<br />
     File name: 'Microsoft.mshtml, ersion=7.0.3300.0, . . .'<br />
     . . .<br />
     System.Security.SecurityException:<br />
     Strong name validation failed. (Exception . . . 0x8013141A)	<br />
     The Zone of the assembly that failed was:<br />
     MyComputer<br />
     at onlyconnect.HtmlEditor..ctor()<br />
     at . . .<br />
<br />
even when verifying that I do use &quot;copy local&quot; for &quot;Microsoft.mshtml.dll&quot;<br />
<br />
Googling around, I verified that I do not use &quot;Project Properties | Signing&quot; in both HtmlEditor project and HtmlEditorDemo project.<br />
and also - donot use &quot;Enable ClickOnce Security settings&quot; on the HtmlEditorDemo project - to avoid creating the manifest file with all its permissions handling.<br />
I also learned that I cannot use &quot;Add reference&quot; from just browsing to &quot;Microsoft.mshtml.dll&quot; <br />
so I removed its reference from the HtmlEditorDemo project and re-add it, using the .Net tab.<br />
I had 3 options for the file:<br />
&quot;c:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Microsoft.mshtml.dll&quot; <br />
&quot;c:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Microsoft.mshtml.dll&quot; <br />
&quot;c:\Program Files\Microsoft.NET\Primary Interop Assemblies\Microsoft.mshtml.dll&quot; <br />
Fortunately, I chose to take the PIA file, it also happens to be &quot;File Version 7.0.3300.1&quot; and not &quot;7.0.3300.0&quot; as the Office files <br />
(Though the inner File Version is also 7.0.3300.0)<br />
[Some sites claims that the Office files are &quot;delay signed&quot; or &quot;partially signed&quot; but the PIA file (installed with the VS installation) is a fully signed copy.]<br />
<br />
xcopy the bin folder to the testing computer and now all works well!<br />
<br />
Development OS: XP + IE6 + VS 2003 + VS 2008 + Office<br />
Testing OS: Vista + IE8, <br />
(the working solution was also tested on XP + IE6 without VS\Office installed)<br />
<br />
If anyone have any hint to the &quot;Access is denied&quot; error when running the demo of the last HtmlEditor version (without the mshtml file) It will help a lot.<br />
[&quot;Running scripts in Demo&quot; - http://www.itwriting.com/phorum/read.php?3,3968]<br />
<br />
Atara]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4279,4279#msg-4279</guid>
      <pubDate>Tue, 09 Mar 2010 10:50:29 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: Running scripts in Demo</title>
      <link>http://www.itwriting.com/phorum/read.php?3,3968,4278#msg-4278</link>
      <author>Atara</author>
      <description><![CDATA[yes. I compiled your project using VS2008, and run the demo locally, on my computer. I can &quot;Load HTML&quot;, but when I try to run the menu option &quot;Test | Execute Script&quot; I get the exception &quot;Access is denied&quot;. <br />
<br />
Atara]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,3968,4278#msg-4278</guid>
      <pubDate>Sun, 07 Mar 2010 11:46:20 +0000</pubDate>
    </item>
    <item>
      <title>[HtmlEditor] Re: By pressing enter key only &lt;p&gt; or &lt;div&gt; tag appearing</title>
      <link>http://www.itwriting.com/phorum/read.php?3,4270,4277#msg-4277</link>
      <author>Tim</author>
      <description><![CDATA[Have you tried Shift+Enter?<br />
<br />
Tim]]></description>
      <category>HtmlEditor</category>
      <guid isPermaLink="true">http://www.itwriting.com/phorum/read.php?3,4270,4277#msg-4277</guid>
      <pubDate>Thu, 04 Mar 2010 21:10:22 +0000</pubDate>
    </item>
  </channel>
</rss>
