<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
	This feed generated for Anonymous
	More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>trichview.com</title>
<link>http://www.trichview.com/forums/</link>
<description>TRichView support forums</description>
<managingEditor>richview@gmail.com</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language>
<lastBuildDate>Thu, 11 Mar 2010 22:55:06 GMT</lastBuildDate>
<image>
	<url>http://www.trichview.com/forums/templates/subSilver/images/rv_logo.gif</url>
	<title>trichview.com</title>
	<link>http://www.trichview.com/forums/</link>
	<width>122</width>
	<height>56</height>
</image>
<item>
<title>Support :: RE: Get all Imagenames</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15036#15036</link>
<pubDate>Thu, 11 Mar 2010 21:30:33 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15036#15036</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3710&quot; target=&quot;_blank&quot;&gt;grolle&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 11, 2010 9:30 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
That's it. Thanks  &lt;img src=&quot;http://www.trichview.com/forums/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>grolle</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15005#15005" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15036</comments>
</item>
<item>
<title>Examples, Demos :: RE: [Examples] Count of characters and words</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15032#15032</link>
<pubDate>Thu, 11 Mar 2010 19:19:28 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15032#15032</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 11, 2010 7:19 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Line count&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;uses CRVFData, RVTable, DLines;
&lt;br /&gt;

&lt;br /&gt;
function GetLineCount&amp;#40;RVData&amp;#58; TCustomRVFormattedData&amp;#41;&amp;#58; Integer;
&lt;br /&gt;
var i,r,c&amp;#58; Integer;
&lt;br /&gt;
&amp;nbsp; table&amp;#58; TRVTableItemInfo;
&lt;br /&gt;
begin
&lt;br /&gt;
&amp;nbsp; Result &amp;#58;= 0;
&lt;br /&gt;
&amp;nbsp; for i &amp;#58;= 0 to RVData.DrawItems.Count-1 do begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; if RVData.DrawItems&amp;#91;i&amp;#93;.FromNewLine then
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; inc&amp;#40;Result&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; if RVData.GetItemStyle&amp;#40;RVData.DrawItems&amp;#91;i&amp;#93;.ItemNo&amp;#41;=rvsTable then begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; table &amp;#58;= TRVTableItemInfo&amp;#40;RVData.GetItem&amp;#40;RVData.DrawItems&amp;#91;i&amp;#93;.ItemNo&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; for r &amp;#58;= 0 to table.RowCount-1 do
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for c &amp;#58;= 0 to table.ColCount-1 do
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if table.Cells&amp;#91;r,c&amp;#93;&amp;lt;&amp;gt;nil then
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; inc&amp;#40;Result, GetLineCount&amp;#40;TCustomRVFormattedData&amp;#40;table.Cells&amp;#91;r,c&amp;#93;.GetRVData&amp;#41;&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end;
&lt;br /&gt;
&amp;nbsp; end;
&lt;br /&gt;
end;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Use: Count := GetLineCount(RichViewEdit1.RVData);
&lt;br /&gt;

&lt;br /&gt;
This code uses some undocumented methods.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Examples, Demos</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=23#23" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15032</comments>
</item>
<item>
<title>Examples, Demos :: RE: [Examples] Count of characters and words</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15031#15031</link>
<pubDate>Thu, 11 Mar 2010 19:14:12 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15031#15031</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 11, 2010 7:14 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I created functions calculating these values in the most natural way for TRichView. It may be different from Word.
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Paragraph count&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;uses CRVData, RVTable;
&lt;br /&gt;

&lt;br /&gt;
function GetParagraphCount&amp;#40;RVData&amp;#58; TCustomRVData&amp;#41;&amp;#58; Integer;
&lt;br /&gt;
var i,r,c&amp;#58; Integer;
&lt;br /&gt;
&amp;nbsp; table&amp;#58; TRVTableItemInfo;
&lt;br /&gt;
begin
&lt;br /&gt;
&amp;nbsp; Result &amp;#58;= 0;
&lt;br /&gt;
&amp;nbsp; for i &amp;#58;= 0 to RVData.ItemCount-1 do begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; if RVData.IsParaStart&amp;#40;i&amp;#41; then
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; inc&amp;#40;Result&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; if RVData.GetItemStyle&amp;#40;i&amp;#41;=rvsTable then begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; table &amp;#58;= TRVTableItemInfo&amp;#40;RVData.GetItem&amp;#40;i&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; for r &amp;#58;= 0 to table.RowCount-1 do
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for c &amp;#58;= 0 to table.ColCount-1 do
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if table.Cells&amp;#91;r,c&amp;#93;&amp;lt;&amp;gt;nil then
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; inc&amp;#40;Result, GetParagraphCount&amp;#40;table.Cells&amp;#91;r,c&amp;#93;.GetRVData&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end;
&lt;br /&gt;
&amp;nbsp; end;
&lt;br /&gt;
end;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Use: Count := GetParagraphCount(RichViewEdit1.RVData);
&lt;br /&gt;
In the show-special-characters mode, you can see pilcrow characters at the end of paragraphs. GetParagraphCount returns the count of these characters. Note that they are displayed in places where MS Word does not display them:
&lt;br /&gt;
- at the end of table cells
&lt;br /&gt;
- at the end of tables.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Examples, Demos</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=23#23" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15031</comments>
</item>
<item>
<title>Examples, Demos :: RE: [Examples] Count of characters and words</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15026#15026</link>
<pubDate>Thu, 11 Mar 2010 09:47:16 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15026#15026</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=89&quot; target=&quot;_blank&quot;&gt;Petko&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 11, 2010 9:47 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I need something similar to Word's word count. I've made a test and it seems to work like this:
&lt;br /&gt;

&lt;br /&gt;
* Lines - they depend on word wrapping and each table cell is counted as a line, if the cell is empty
&lt;br /&gt;
* Paragraphs - it seems that only items, containing text are counted as paragraphs (empty table cells are not)
&lt;br /&gt;

&lt;br /&gt;
You can see my test file here:
&lt;br /&gt;
&lt;a href=&quot;http://www.box.net/shared/v9ximbdj0f&quot; target=&quot;_blank&quot;&gt;http://www.box.net/shared/v9ximbdj0f&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Anyway, absolute accuracy is not necessary, speed is priority here. People using a word count function need accuracy in the word and character counts more.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Petko</dc:creator>
<dc:subject>Examples, Demos</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=23#23" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15026</comments>
</item>
<item>
<title>Examples, Demos :: RE: [Examples] Count of characters and words</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15019#15019</link>
<pubDate>Wed, 10 Mar 2010 20:34:09 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15019#15019</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Wed Mar 10, 2010 8:34 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
No, it will be fast.
&lt;br /&gt;
Count of lines - do you mean lines that depend on word wrapping?
&lt;br /&gt;

&lt;br /&gt;
How do you want to calculate the count of paragraphs and lines for tables?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Examples, Demos</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=23#23" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15019</comments>
</item>
<item>
<title>Support :: RE: Get all Imagenames</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15018#15018</link>
<pubDate>Wed, 10 Mar 2010 19:47:14 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15018#15018</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Wed Mar 10, 2010 7:47 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
These file names are autogenerated and not stored.
&lt;br /&gt;
You can use OnSaveImage2 event:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;procedure TForm3.RichViewEdit1SaveImage2&amp;#40;Sender&amp;#58; TCustomRichView;
&lt;br /&gt;
&amp;nbsp; Graphic&amp;#58; TGraphic; SaveFormat&amp;#58; TRVSaveFormat; const Path,
&lt;br /&gt;
&amp;nbsp; ImagePrefix&amp;#58; String; var ImageSaveNo&amp;#58; Integer; var Location&amp;#58; String;
&lt;br /&gt;
&amp;nbsp; var DoDefault&amp;#58; Boolean&amp;#41;;
&lt;br /&gt;
begin
&lt;br /&gt;
&amp;nbsp; if SaveFormat = rvsfHTML then begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; Location &amp;#58;= Sender.SavePicture&amp;#40;SaveFormat, Path, Graphic&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; // now Location contains file name that will be saved in HTML
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DoDefault &amp;#58;= False;
&lt;br /&gt;
&amp;nbsp; end;
&lt;br /&gt;
end;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15005#15005" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15018</comments>
</item>
<item>
<title>Support :: RE: Undo action bug?</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15017#15017</link>
<pubDate>Wed, 10 Mar 2010 19:00:57 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15017#15017</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Wed Mar 10, 2010 7:00 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hmm. When I added this code in OnChange (after converting it to Pascal:) ), I got a stack overflow. It is obvious because SetItemTagEd calls OnChange too.
&lt;br /&gt;

&lt;br /&gt;
If you want to change tag on text editing, consider using OnItemTextEdit event instead.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15008#15008" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15017</comments>
</item>
<item>
<title>Support :: RE: How to insert automatic page number code into saved RTF</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15016#15016</link>
<pubDate>Wed, 10 Mar 2010 18:30:02 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15016#15016</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Wed Mar 10, 2010 6:30 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
A page numbering field is not implemented yet, planned for future.
&lt;br /&gt;
If you need to save page numbers in a header or footer of RTF file, you have 2 options:
&lt;br /&gt;

&lt;br /&gt;
1) If you want to insert a simple page number, you can use OnSaveRTFExtra event to save header and footer. The code for page number is {\field{\*\fldinst PAGE}{\fldrslt 1}}, the example is here:
&lt;br /&gt;
&lt;a href=&quot;http://www.trichview.com/forums/viewtopic.php?t=64&quot; target=&quot;_blank&quot;&gt;http://www.trichview.com/forums/viewtopic.php?t=64&lt;/a&gt; (the first post)
&lt;br /&gt;

&lt;br /&gt;
2) If you want to create a complex header or footer in separate editors (or if you use ScaleRichView where header and footer can be edited directly), you need to insert RTF code {\field{\*\fldinst PAGE}{\fldrslt 1}} in the editor. This topic shows two ways how to do it: &lt;a href=&quot;http://www.trichview.com/forums/viewtopic.php?t=2742&quot; target=&quot;_blank&quot;&gt;http://www.trichview.com/forums/viewtopic.php?t=2742&lt;/a&gt;
&lt;br /&gt;
In TSRichViewEdit, header and footer are saved automatically.
&lt;br /&gt;
In TRichViewEdit, assign header and footer using rve.RTFReadProperties.SetHeader and .SetFooter, and include rvrtfSaveHeaderFooter in rve.RTFOptions.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15014#15014" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15016</comments>
</item>
<item>
<title>Support :: How to insert automatic page number code into saved RTF</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15014#15014</link>
<pubDate>Wed, 10 Mar 2010 17:59:09 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15014#15014</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3321&quot; target=&quot;_blank&quot;&gt;allanj42&lt;/a&gt;&lt;br /&gt;
Subject: How to insert automatic page number code into saved RTF&lt;br /&gt;
Posted: Wed Mar 10, 2010 5:59 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
When saving my document to RTF (using SaveRTF) how do I insert an RTF code to produce automatic page numbering? E.g. is there a code like {\pagenum} that I can insert into my RichTextEdit document before calling SaveRTF ? What other options or conditions need to be set for this to work?
&lt;br /&gt;

&lt;br /&gt;
Thanks,
&lt;br /&gt;
Jeff Allan&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>allanj42</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15014#15014" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15014</comments>
</item>
<item>
<title>Examples, Demos :: RE: [Examples] Count of characters and words</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15011#15011</link>
<pubDate>Wed, 10 Mar 2010 16:09:11 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15011#15011</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=89&quot; target=&quot;_blank&quot;&gt;Petko&lt;/a&gt;&lt;br /&gt;

Posted: Wed Mar 10, 2010 4:09 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
It is possible to count lines and paragraphs too, and if yes, do you think that it will be too time consuming when working with large documents (compared to char and word count)?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Petko</dc:creator>
<dc:subject>Examples, Demos</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=23#23" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15011</comments>
</item>
<item>
<title>Support :: Undo action bug?</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15008#15008</link>
<pubDate>Wed, 10 Mar 2010 13:25:58 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15008#15008</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3598&quot; target=&quot;_blank&quot;&gt;kolovan&lt;/a&gt;&lt;br /&gt;
Subject: Undo action bug?&lt;br /&gt;
Posted: Wed Mar 10, 2010 1:25 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello Sergey,
&lt;br /&gt;

&lt;br /&gt;
I want you to know that I found some kind of a bug.
&lt;br /&gt;

&lt;br /&gt;
There are several components on my form: ActionList (only &lt;span style=&quot;font-style: italic&quot;&gt;rvActionUndo&lt;/span&gt; included), MainMenu (with &lt;span style=&quot;font-style: italic&quot;&gt;Undo&lt;/span&gt; item linked to &lt;span style=&quot;font-style: italic&quot;&gt;rvActionUndo&lt;/span&gt;), RichViewEdit and RVStyle. The only text in RVE is one text item with tag &amp;quot;Tag1&amp;quot; and text &amp;quot;    several_useless_words     &amp;quot;. 
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;OnChange&lt;/span&gt; event handler of RVE has the next code inside:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;UnicodeString tag = &amp;#40;wchar_t *&amp;#41;rve1-&amp;gt;GetCurrentTag&amp;#40;&amp;#41;;
&lt;br /&gt;
if &amp;#40;tag.Pos&amp;#40;L&amp;quot;Tag&amp;quot;&amp;#41;&amp;#41; &amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;if &amp;#40;rve1-&amp;gt;GetCurrentItemText&amp;#40;&amp;#41;.Trim&amp;#40;&amp;#41;.IsEmpty&amp;#40;&amp;#41;&amp;#41; &amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;if &amp;#40;!tag.Pos&amp;#40;L&amp;quot;NEW&amp;quot;&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;rve1-&amp;gt;SetItemTagEd&amp;#40;rve1-&amp;gt;CurItemNo,&amp;#40;int&amp;#41;StrNew&amp;#40;&amp;#40;L&amp;quot;NEW&amp;quot; + tag&amp;#41;.c_str&amp;#40;&amp;#41;&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#125;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;else &amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;if &amp;#40;tag.Pos&amp;#40;L&amp;quot;NEW&amp;quot;&amp;#41;&amp;#41; &amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;rve1-&amp;gt;SetItemTagEd&amp;#40;rve1-&amp;gt;CurItemNo,&amp;#40;int&amp;#41;StrNew&amp;#40;&amp;#40;tag.SubString&amp;#40;4,tag.Length&amp;#40;&amp;#41;&amp;#41;&amp;#41;.c_str&amp;#40;&amp;#41;&amp;#41;&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;#125;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#125;
&lt;br /&gt;
&amp;#125;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
As you can see I want to change tags of items depending on thier content. Well it works fine! But after one change of tag there appears a bug with UndoAction:
&lt;br /&gt;
&lt;ol type=&quot;1&quot;&gt;
&lt;br /&gt;
&lt;li&gt; I delete all letters except spaces in text item:
&lt;br /&gt;
text changes: &lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;    several_useless_words     &amp;quot;&lt;/span&gt;-&amp;gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;      &amp;quot;&lt;/span&gt;
&lt;br /&gt;
tag changes:  &lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;Tag1&amp;quot;&lt;/span&gt;-&amp;gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;NewTag1&amp;quot;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;li&gt; I type some letters:
&lt;br /&gt;
text changes: &lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;         &amp;quot;&lt;/span&gt;-&amp;gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;    Gsfasfasf  &amp;quot;&lt;/span&gt;
&lt;br /&gt;
tag changes:  &lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;NewTag1&amp;quot;&lt;/span&gt;-&amp;gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;Tag1&amp;quot;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;li&gt;Now I'm pressing Ctrl+Z shorcut key (or Undo menu item) until clearing of Undo buffer. And that's happened (?) when there is only one letter left:
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;    Gsfasfasf  &amp;quot;&lt;/span&gt;-&amp;gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&amp;quot;   G   &amp;quot;&lt;/span&gt;
&lt;br /&gt;
while menu item &lt;span style=&quot;font-style: italic&quot;&gt;Undo&lt;/span&gt; is still available! I still can press menu item but it does nothing.
&lt;br /&gt;
&lt;/ol&gt;
&lt;br /&gt;

&lt;br /&gt;
Well as far as I know when undo buffer is empty any visual component (button, menu item etc.) that linked to rvUndoAction becomes unavailable. So what can provide my problem? According to help I'm using only editing-style methods (that can be undone/redone) - SetItemTag&lt;span style=&quot;font-weight: bold&quot;&gt;Ed&lt;/span&gt;. 
&lt;br /&gt;

&lt;br /&gt;
P.S. &lt;span style=&quot;font-style: italic&quot;&gt;TagsArePChars&lt;/span&gt; is ON; &lt;span style=&quot;font-style: italic&quot;&gt;UndoLimit&lt;/span&gt; equals -1
&lt;br /&gt;
P.P.S. Sorry for C++  &lt;img src=&quot;http://www.trichview.com/forums/images/smiles/icon_biggrin.gif&quot; alt=&quot;Very Happy&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>kolovan</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15008#15008" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15008</comments>
</item>
<item>
<title>Support :: Get all Imagenames</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15005#15005</link>
<pubDate>Wed, 10 Mar 2010 10:17:55 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15005#15005</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3710&quot; target=&quot;_blank&quot;&gt;grolle&lt;/a&gt;&lt;br /&gt;
Subject: Get all Imagenames&lt;br /&gt;
Posted: Wed Mar 10, 2010 10:17 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
I save tRichView content as html. Works perfect, but I have one question: tRichView changes the names (1.jpg, 2.jpg ...). How did I get these names? Are they stored somewhere in an array or something? Reason: I must know the names because I have to change some Image tags in the html document, after saving it.
&lt;br /&gt;

&lt;br /&gt;
Best regards ...&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>grolle</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15005#15005" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15005</comments>
</item>
<item>
<title>Support :: .net option</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=15001#15001</link>
<pubDate>Tue, 09 Mar 2010 16:08:23 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=15001#15001</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=81&quot; target=&quot;_blank&quot;&gt;peter_brooks&lt;/a&gt;&lt;br /&gt;
Subject: .net option&lt;br /&gt;
Posted: Tue Mar 09, 2010 4:08 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I love Trichview, but the current project I'm working on needs to be developed C# VS .net environment. As far as I could gather there are no plans to offer .net version in the near future.
&lt;br /&gt;

&lt;br /&gt;
Can anybody suggest a RTF component something as good as Trichview or at least similar for the .net please?
&lt;br /&gt;

&lt;br /&gt;
If this post is inappropriate on this board please delete it.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>peter_brooks</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=15001#15001" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=15001</comments>
</item>
<item>
<title>Support :: RE: Auto detection URL - TRichViewEdit</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14997#14997</link>
<pubDate>Tue, 09 Mar 2010 12:52:09 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14997#14997</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Tue Mar 09, 2010 12:52 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
No, URL detection is possible only using the ways I described in my previous reply.
&lt;br /&gt;
TRichViewEdit is not based on TRichEdit, so EM_AUTOURLDETECT means nothing to it.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14906#14906" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14997</comments>
</item>
<item>
<title>Support :: RE: Auto detection URL - TRichViewEdit</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14995#14995</link>
<pubDate>Mon, 08 Mar 2010 14:17:24 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14995#14995</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3337&quot; target=&quot;_blank&quot;&gt;Marcer&lt;/a&gt;&lt;br /&gt;

Posted: Mon Mar 08, 2010 2:17 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
With this code :
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;unit UrlEdit;
&lt;br /&gt;

&lt;br /&gt;
interface
&lt;br /&gt;

&lt;br /&gt;
uses
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ComCtrls;
&lt;br /&gt;

&lt;br /&gt;
type
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;TUrlEdit = class&amp;#40;TRichEdit&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;protected
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; procedure CreateWnd; override;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;end;
&lt;br /&gt;

&lt;br /&gt;
procedure Register;
&lt;br /&gt;

&lt;br /&gt;
implementation
&lt;br /&gt;

&lt;br /&gt;
uses
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Classes, Windows, RichEdit;
&lt;br /&gt;

&lt;br /&gt;
procedure TUrlEdit.CreateWnd;
&lt;br /&gt;
var
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;mMask&amp;#58; Longint;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;lAutoUrlDetect&amp;#58; Boolean;
&lt;br /&gt;
begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;inherited CreateWnd;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;mMask &amp;#58;= ENM_CHANGE or ENM_SELCHANGE or ENM_REQUESTRESIZE or ENM_LINK;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;lAutoUrlDetect &amp;#58;= True;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SendMessage&amp;#40;Handle, EM_SETEVENTMASK, 0, mMask&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;SendMessage&amp;#40;Handle, EM_AUTOURLDETECT, Longint&amp;#40;lAutoUrlDetect&amp;#41;, 0&amp;#41;;
&lt;br /&gt;
end;
&lt;br /&gt;

&lt;br /&gt;
procedure Register;
&lt;br /&gt;
begin
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;RegisterComponents&amp;#40;'URL Edit', &amp;#91;TUrlEdit&amp;#93;&amp;#41;;
&lt;br /&gt;
end;
&lt;br /&gt;

&lt;br /&gt;
end.
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
the TUrlEdit detect automaticaly URL after press &amp;quot;www.c&amp;quot;.
&lt;br /&gt;

&lt;br /&gt;
This is possible to have a same detection with TRichView?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Marcer</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14906#14906" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14995</comments>
</item>
<item>
<title>Support :: RE: ParamStyle Help about ...</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14988#14988</link>
<pubDate>Sun, 07 Mar 2010 19:08:46 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14988#14988</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3707&quot; target=&quot;_blank&quot;&gt;r1d2m3&lt;/a&gt;&lt;br /&gt;

Posted: Sun Mar 07, 2010 7:08 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
ok, thanks, that property is needed.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>r1d2m3</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14980#14980" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14988</comments>
</item>
<item>
<title>Support :: RE: font can display (or not) a character</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14987#14987</link>
<pubDate>Sun, 07 Mar 2010 13:15:57 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14987#14987</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3033&quot; target=&quot;_blank&quot;&gt;Cosmin3&lt;/a&gt;&lt;br /&gt;

Posted: Sun Mar 07, 2010 1:15 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Seems to work.
&lt;br /&gt;
Thank you very much.
&lt;br /&gt;
Best regards.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Cosmin3</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14983#14983" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14987</comments>
</item>
<item>
<title>Support :: RE: font can display (or not) a character</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14984#14984</link>
<pubDate>Sun, 07 Mar 2010 11:23:47 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14984#14984</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Sun Mar 07, 2010 11:23 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I think you can use GetFontUnicodeRanges WinAPI function to know which characters are supported by the font.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14983#14983" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14984</comments>
</item>
<item>
<title>Support :: font can display (or not) a character</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14983#14983</link>
<pubDate>Sun, 07 Mar 2010 11:09:07 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14983#14983</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3033&quot; target=&quot;_blank&quot;&gt;Cosmin3&lt;/a&gt;&lt;br /&gt;
Subject: font can display (or not) a character&lt;br /&gt;
Posted: Sun Mar 07, 2010 11:09 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi.
&lt;br /&gt;
In some situations a font can't display a certain character.
&lt;br /&gt;
In this case ScaleRichView shows a rectangle.
&lt;br /&gt;
Is there a way to know that a character can't be displayed properly with a specific font..?
&lt;br /&gt;
Thank you in advance for your reply.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Cosmin3</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14983#14983" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14983</comments>
</item>
<item>
<title>Support :: RE: ParamStyle Help about ...</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14981#14981</link>
<pubDate>Sun, 07 Mar 2010 09:52:21 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14981#14981</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Sun Mar 07, 2010 9:52 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Do you mean caret?
&lt;br /&gt;
Use CurParaStyleNo property.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14980#14980" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14981</comments>
</item>
<item>
<title>Support :: ParamStyle Help about ...</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14980#14980</link>
<pubDate>Sun, 07 Mar 2010 00:16:44 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14980#14980</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3707&quot; target=&quot;_blank&quot;&gt;r1d2m3&lt;/a&gt;&lt;br /&gt;
Subject: ParamStyle Help about ...&lt;br /&gt;
Posted: Sun Mar 07, 2010 12:16 am (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
How to get the ParaStyle paragraph where the cursor?
&lt;br /&gt;

&lt;br /&gt;
Thank you very much&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>r1d2m3</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14980#14980" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14980</comments>
</item>
<item>
<title>Support :: RE: rvoCtrlJumps not displaying correct cursor icon!</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14977#14977</link>
<pubDate>Fri, 05 Mar 2010 20:30:15 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14977#14977</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 05, 2010 8:30 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
In a read-only editor, hypertext works automatically, without Ctrl. Only when editing, it requires pressing and holding Ctrl.
&lt;br /&gt;
DB controls work like read-only controls when the dataset in a browsing mode. What's why hypertext works automatically.
&lt;br /&gt;
When the user starts editing, the dataset is in an editing mode, and requires Ctrl. Until the user posts or cancels editing.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14976#14976" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14977</comments>
</item>
<item>
<title>Support :: rvoCtrlJumps not displaying correct cursor icon!</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14976#14976</link>
<pubDate>Fri, 05 Mar 2010 18:44:59 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14976#14976</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3268&quot; target=&quot;_blank&quot;&gt;dakota&lt;/a&gt;&lt;br /&gt;
Subject: rvoCtrlJumps not displaying correct cursor icon!&lt;br /&gt;
Posted: Fri Mar 05, 2010 6:44 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi:
&lt;br /&gt;

&lt;br /&gt;
I want my user's to press ctrl+click to follow a link so I have rvoCtrlJumps set to True.  This works fine however, 
&lt;br /&gt;

&lt;br /&gt;
&lt;ul&gt;- the first time the mouse enters the TDBRichViewEdit and moves over a URL,&lt;span style=&quot;font-weight: bold&quot;&gt; it shows up as the hand cursor instead of the caret symbol&lt;/span&gt;.&lt;/ul&gt;
&lt;br /&gt;
&lt;ul&gt;- Once a character is typed into the DBRichViewEdit, then the mouse cursor behaves correctly, meaning the hand cursor only appears when user hold down ctrl key and hovers over the url&lt;/ul&gt;
&lt;br /&gt;

&lt;br /&gt;
What could be causing this?  Do I have something set wrong?
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;

&lt;br /&gt;
Dale&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dakota</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14976#14976" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14976</comments>
</item>
<item>
<title>Support :: RE: Paste text with images from IE\Firefox</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14973#14973</link>
<pubDate>Fri, 05 Mar 2010 17:22:49 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14973#14973</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;Sergey Tkachenko&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 05, 2010 5:22 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
When I copy a web page from FireFox to MS Word, Word attempts to download data, my firewall shows it.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sergey Tkachenko</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14967#14967" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14973</comments>
</item>
<item>
<title>Support :: Paste text with images from IE\Firefox</title>
<link>http://www.trichview.com/forums/viewtopic.php?p=14967#14967</link>
<pubDate>Thu, 04 Mar 2010 22:27:58 GMT</pubDate>
<guid isPermaLink="true">http://www.trichview.com/forums/viewtopic.php?p=14967#14967</guid>
<description>Author: &lt;a href=&quot;http://www.trichview.com/forums/profile.php?mode=viewprofile&amp;u=3639&quot; target=&quot;_blank&quot;&gt;Tobias&lt;/a&gt;&lt;br /&gt;
Subject: Paste text with images from IE\Firefox&lt;br /&gt;
Posted: Thu Mar 04, 2010 10:27 pm (GMT 0)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I need to paste formated text from IE\Firefox. If I paste with .Paste method, there are no images.
&lt;br /&gt;
I made working demo using RvHtmlViewImporter and Indy. But in such case all images downloaded from web. When there many pictures, it is pain on slow connections.
&lt;br /&gt;
When I copy such data to MS Words, it is copies instantly, so pictures already in clipboard. Btw, when I copy first to Word and then from Word to RichEdit there are also no problems.
&lt;br /&gt;
So, it is possible to copy such clipboard data to RichEdit without redownloading images?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Tobias</dc:creator>
<dc:subject>Support</dc:subject>
<annotate:reference rdf:resource="http://www.trichview.com/forums/viewtopic.php?p=14967#14967" />
<comments>http://www.trichview.com/forums/posting.php?mode=quote&amp;p=14967</comments>
</item>
</channel>
</rss>

<!-- Page generation time: 0.0305s  - GZIP enabled -->