<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>pinEdit WP</title><link>http://forum.pintexx.net/forums/16/ShowForum.aspx</link><description>Web Word Processor</description><dc:language>en-US</dc:language><generator>CommunityServer 1.1 (Build: 1.1.0.50615)</generator><item><title>MouseLeave event not firing up </title><link>http://forum.pintexx.net/forums/4514/ShowPost.aspx</link><pubDate>Wed, 21 Jul 2010 10:47:48 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4514</guid><dc:creator>galastur</dc:creator><slash:comments>2</slash:comments><description>&lt;br&gt;Any reasons why this will now fire up when the mouse moves outside the pinedit control&amp;nbsp; !!!????&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void pinEditWinFormControl1_MouseLeave(object sender, EventArgs e)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show("I am outside the control");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;</description></item><item><title>pinEdit does not display document until window is resize</title><link>http://forum.pintexx.net/forums/4459/ShowPost.aspx</link><pubDate>Mon, 14 Jun 2010 09:20:10 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4459</guid><dc:creator>mocasu</dc:creator><slash:comments>5</slash:comments><description>&lt;br&gt;I am using pinEdit inside a WPF app.&lt;br&gt;&lt;br&gt;I am having some problems loading a document. The document does not display until the window is resized.&lt;br&gt;&lt;br&gt;This is the code:&lt;br&gt;&lt;br&gt;WPF.App:&lt;br&gt;&lt;br&gt;&amp;nbsp;private void LoadDocument(string path)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Editor.PinEdit editor = new Editor.PinEdit();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; editor.CreateControl();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; editor.DocumentPath = path;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WindowsFormsHost host = new WindowsFormsHost();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; host.Child = editor;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StackPanelStory.Children.Add(host);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;Editor.PinEdit:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void pinEditWinFormControl1_Ready(object sender)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pinEditWinFormControl1.File = _documentPath;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;Can anyone tell me what I am doing wrong, please ?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;</description></item><item><title>2 problems...I'm sure they are trivial - with Preview and toolbar</title><link>http://forum.pintexx.net/forums/4474/ShowPost.aspx</link><pubDate>Sun, 20 Jun 2010 20:45:01 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4474</guid><dc:creator>Anasoft Consulting</dc:creator><slash:comments>1</slash:comments><description>1. Whenever I switch to Preview mode (a read only view for the end user), the toolbar flashes up then vanishes as the page is rendered.  The more complex the page, the longer this appears...it really doesn't look very polished. The code we are using is this:&lt;br /&gt;&lt;br /&gt;public bool IsReadonly&lt;br /&gt;    {&lt;br /&gt;      get&lt;br /&gt;      {&lt;br /&gt;        return _isReadonly;&lt;br /&gt;      }&lt;br /&gt;      set&lt;br /&gt;      {&lt;br /&gt;        if (_isReadonly == value)&lt;br /&gt;        {&lt;br /&gt;          return;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        _isReadonly = value;&lt;br /&gt;        var newMode = value&lt;br /&gt;                        ? pinEditWinFormControl.enMode.Preview&lt;br /&gt;                        : pinEditWinFormControl.enMode.Edit;&lt;br /&gt;        if (!html.ReadyState)&lt;br /&gt;        {&lt;br /&gt;          Debug.WriteLine("Need to set mode but not ready. NewMode " + newMode);&lt;br /&gt;          _needToSetMode = true;&lt;br /&gt;          _modeToBeSet = newMode;&lt;br /&gt;          return;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        Debug.WriteLine("New mode set. Newmode = " + newMode);&lt;br /&gt;        _needToSetMode = false;&lt;br /&gt;        html.Mode = newMode;&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    private void html_Ready(object sender)&lt;br /&gt;    {&lt;br /&gt;      &lt;br /&gt;&lt;br /&gt;      if (_needToSetMode)&lt;br /&gt;      {&lt;br /&gt;        html.Mode = _modeToBeSet;&lt;br /&gt;        _needToSetMode = false;&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Also, I'd like to hide buttons from the toolbar (like Save, New etc).  Any tips on how to do this?&lt;br /&gt;&lt;br /&gt;3. Finally, when I edit the page, and click on the preview tab, the font used is Arial (the way I want).  When I use the code above, it displays in Times Roman.  Am I missing something here?  The code we are using to set this is:&lt;br /&gt;&lt;br /&gt;html.ForeColor = Settings.PluginCore.PTSettings.HtmlEditorDefaultForeColor;&lt;br /&gt;      html.EditSetDefaultFont(&lt;br /&gt;        Settings.PluginCore.PTSettings.HtmlEditorDefaultFont,&lt;br /&gt;        Settings.PluginCore.PTSettings.HtmlEditorDefaultFontSize.ToString());&lt;br /&gt;&lt;br /&gt;Hope someone can help!&lt;br /&gt;&lt;br /&gt;(hmm...I previewed this message and I didn't have the carriage returns? I hope it posts correctly)&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Chris</description></item><item><title>pinEdit .NET</title><link>http://forum.pintexx.net/forums/4445/ShowPost.aspx</link><pubDate>Tue, 01 Jun 2010 14:01:57 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4445</guid><dc:creator>galastur</dc:creator><slash:comments>2</slash:comments><description>Hi,&lt;br /&gt;&lt;br /&gt;I am trying to use pinEdit control in a WinForm. I have set the ModeToolbar to external.&lt;br /&gt;&lt;br /&gt;I am able to open a file by:&lt;br /&gt;&lt;br /&gt;pinEditWinFormControl1.File = FileName;&lt;br /&gt;&lt;br /&gt;Now, what function shall I call to save this file as .htm???&lt;br /&gt;&lt;br /&gt;Also, is there any samples of how to use this control in a WinForm? how to programmatically insert a table in the document ( or html), get the position of the cursor...&lt;br /&gt;&lt;br /&gt;Thanks</description></item><item><title>I have licence keys and i am not able to configure the keys.</title><link>http://forum.pintexx.net/forums/4408/ShowPost.aspx</link><pubDate>Thu, 25 Mar 2010 11:38:24 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4408</guid><dc:creator>ravibtech</dc:creator><slash:comments>1</slash:comments><description>I am using licensed version pinedit 5.2. And it’s working fine.&lt;br /&gt;&lt;br /&gt;For this we are using PINEDITSERIALLICENSEKEY and PINEDITSPELLLICENSEKEY.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Now we  purchased  pinedit 7.2 and want to upgrade from 5.2 to 7.2 .&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;We got below five keys.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.            pinEdit Web  &lt;br /&gt;&lt;br /&gt;2.             pinEdit Dictionaries  &lt;br /&gt;&lt;br /&gt;3.             pinUpload &lt;br /&gt;&lt;br /&gt;4              pinDocX  Lib: &lt;br /&gt;&lt;br /&gt;5              pinEditStyle  &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;I have tried to replace  PINEDITSERIALLICENSEKEY with pinEdit Web   and  PINEDITSPELLLICENSEKEY with pinEdit Dictionaries  .&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Still we are not able to crack the keys. &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Please suggest us out of five keys which two we can use, Or what else wrong in this.&lt;br /&gt;&lt;br /&gt;Thanks in Advance.</description></item><item><title>Is there a way so save back the edited .docx?</title><link>http://forum.pintexx.net/forums/4387/ShowPost.aspx</link><pubDate>Mon, 01 Mar 2010 14:58:03 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:4387</guid><dc:creator>DIS</dc:creator><slash:comments>3</slash:comments><description>Hi there,&lt;br /&gt;&lt;br /&gt;we search for a solution to open, edit and save .docx files and found your great editor. The function to open .docx filkes works great, but is there any way to save back the .docx file?&lt;br /&gt;&lt;br /&gt;Thanks in advance&lt;br /&gt;&lt;br /&gt;Dirk</description></item><item><title>Problems with the Editor</title><link>http://forum.pintexx.net/forums/3828/ShowPost.aspx</link><pubDate>Tue, 23 Dec 2008 12:03:38 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3828</guid><dc:creator>Luciano</dc:creator><slash:comments>0</slash:comments><description>&lt;font size="2" face="Arial"&gt;Hi,&lt;br&gt;i use pinEdit &lt;/font&gt;&lt;font size="2" face="Arial"&gt;7.1 &lt;/font&gt;&lt;font size="2" face="Arial"&gt;desktop version for .net.&lt;br&gt;&lt;br&gt;I've a problem whit the cursor and the scroll bar.&lt;br&gt;1) When move the cursor with the arrows above the first line of the
document or below the last line of the document, the cursor disappears
and you can not recover it, except by using the mouse.&lt;br&gt;2)The vertical scroll bar does not move throughout the document, it stops before the end of the document is below that top&lt;br&gt;&lt;br&gt;Can you help me?&lt;br&gt;&lt;br&gt;Thanks.&lt;br&gt;&lt;br&gt;Regards, Luciano.&lt;/font&gt;&lt;br&gt;</description></item><item><title>copy &amp;amp; paste problems</title><link>http://forum.pintexx.net/forums/3795/ShowPost.aspx</link><pubDate>Thu, 27 Nov 2008 08:31:39 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3795</guid><dc:creator>chiodi84</dc:creator><slash:comments>1</slash:comments><description>hi. i'm having problems with copy &amp;amp; paste functions from the right-click context menu.&lt;br&gt;these functions simply dont work. Ctrl-C and Ctrl-V instead work fine.&lt;br&gt;the same application deployed on another server works ok.&lt;br&gt;i think the matter is some kind of internet explorer setting or windows policy restriction on the server (or user): have someone already encountered (and solved?) this kind of problem?&lt;br&gt;&lt;br&gt;thanks&lt;br&gt;Paolo&lt;br&gt;&lt;br&gt;ps: i'm using pinedit 6.1.1029 (application development) for .net 1.1. server is microsoft windows server 2003&lt;br&gt;&lt;br&gt;</description></item><item><title>Error during pinEdit.EditPaste call</title><link>http://forum.pintexx.net/forums/3782/ShowPost.aspx</link><pubDate>Wed, 12 Nov 2008 14:14:00 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3782</guid><dc:creator>sinspin</dc:creator><slash:comments>5</slash:comments><description>Hello, i use pinEdit eval, version 7.1.1106. ActiveX with Delphi7.&lt;br&gt;&lt;br&gt;Since the pinEdit 7 versions produce many calls an error in this form:&lt;br&gt;&lt;br&gt;---------------------------&lt;br&gt;Fehler&lt;br&gt;---------------------------&lt;br&gt;'ContainerHwnd' property is read-only&lt;br&gt;---------------------------&lt;br&gt;OK&lt;br&gt;---------------------------&lt;br&gt;&lt;br&gt;Generally all function calls that results in an OleVariant (in my imported ActiveX interface) produce this error.&lt;br&gt;although it is not relevant if the component is embedded at designtime or create at runtime.&lt;br&gt;&lt;br&gt;Background:&lt;br&gt;I select a HTML text template via LookupCombobox and would like it to paste to the last cursor postion in the editor.&lt;br&gt;The insert of HTML text into clipboard works fine,&lt;br&gt;but not the paste via pinEdit.EditPaste.&lt;br&gt;&lt;br&gt;</description></item><item><title>Evaluation Question</title><link>http://forum.pintexx.net/forums/3521/ShowPost.aspx</link><pubDate>Wed, 06 Aug 2008 17:59:18 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3521</guid><dc:creator>JDL</dc:creator><slash:comments>3</slash:comments><description>I'm using Visual Studio 2005 and C# to evaluate the PinEdit control.  I've added the editor to a form and the editor renders.  Shouldn't I be able to manipulate the toolbar(s) and button(s) at runtime?  I guess I'm looking for a toolbar control with a collection of controls to enable/disable, or change the tooltip based on context of what is being done in the application.  Is this possible?</description></item><item><title>FontSizeType</title><link>http://forum.pintexx.net/forums/3720/ShowPost.aspx</link><pubDate>Thu, 02 Oct 2008 16:37:14 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3720</guid><dc:creator>JDL</dc:creator><slash:comments>3</slash:comments><description>Hi I'm using pintEdit 7.0.0918 and I'm trying to set the FontSizeType.  When I call EditSetDefaultFont(x,x), the size type in the editor defaults to px.  Can you overload the method to also take either px or pt?  But in the mean time, how do make it work?  I have set FontSizeType = "pt" and also called EditSetDefaultFont(x, "10pt").  Never have any effect.  It still defaults to 10px.&lt;br /&gt;&lt;br /&gt;???&lt;br /&gt;&lt;br /&gt;Thanks</description></item><item><title>special characters </title><link>http://forum.pintexx.net/forums/3691/ShowPost.aspx</link><pubDate>Tue, 16 Sep 2008 05:11:28 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3691</guid><dc:creator>Victor</dc:creator><slash:comments>13</slash:comments><description>Hi&lt;br /&gt;&lt;br /&gt;(sorry: automatic translation)&lt;br /&gt;&lt;br /&gt;How to obtain in code HTML the special characters in this form: &amp;amp;#9632;&lt;br /&gt;I use this syntax and…. that does not function&lt;br /&gt;editor.ConvertChar (True)&lt;br /&gt;editor.EditInsertHtml (“&amp;amp;#9632;”)&lt;br /&gt;&lt;br /&gt;Thanks. Victor</description></item><item><title>Intellisense</title><link>http://forum.pintexx.net/forums/3562/ShowPost.aspx</link><pubDate>Tue, 12 Aug 2008 16:22:09 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3562</guid><dc:creator>Leon_Pinto</dc:creator><slash:comments>10</slash:comments><description>Hello, we recently upgrade to version 7 and we notice change in functionality, first at all, the global setting of intellisense key isn't in the config.js any more. We use the objEditor.intellisensekey="." in every page that use pinedit, but is not working</description></item><item><title>Enable/Disable SpellCheck</title><link>http://forum.pintexx.net/forums/3678/ShowPost.aspx</link><pubDate>Wed, 10 Sep 2008 16:57:56 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3678</guid><dc:creator>JDL</dc:creator><slash:comments>1</slash:comments><description>I'm using the EditorControl.Execute("editSpell(bool)") to turn SpellCheck on and off.  This seems to work, but the button on the toolbar does change.  Shouldn't this toggle the button based on the setting?  If not, what method can I use to set it?  Thanks</description></item><item><title>Symmetric margin</title><link>http://forum.pintexx.net/forums/3515/ShowPost.aspx</link><pubDate>Tue, 05 Aug 2008 21:56:21 GMT</pubDate><guid isPermaLink="false">a77a6955-f94a-4d59-a77c-8e416ef5d109:3515</guid><dc:creator>Leon_Pinto</dc:creator><slash:comments>6</slash:comments><description>Hello, i'm working with the pinEdit Web version 7. We need implement symetric margins, is it possible with this version. Tnks</description></item></channel></rss>