Search found 20 matches

by Pieter Zijlstra
Tue Sep 23, 2008 9:25 pm
Forum: Support
Topic: RvRuler.ParentBackground
Replies: 2
Views: 10832

Which RVActions version are you using? (RV)Ruler uses a CompVers.inc with compiler defines. If you use an older version the D2007 compiler (VER185) define might be missing in that inc file.
by Pieter Zijlstra
Wed May 21, 2008 12:33 am
Forum: Support
Topic: Cursor movement
Replies: 10
Views: 24703

Have you considered using tabstops?
by Pieter Zijlstra
Wed Apr 23, 2008 9:34 pm
Forum: Support
Topic: Corupted image in RichEdit
Replies: 5
Views: 15732

In the application I'm updating this file is been shown in a RichviewEdit. I have debugged an came to a point where I got this error message: "Poject ef33.exe raised exception Class EJEG with message 'JPEG error #68'." This error comes in the RVItem.pas in the Procedure DrawImage at the l...
by Pieter Zijlstra
Thu Apr 17, 2008 9:58 pm
Forum: Support
Topic: loading a Unicode file line by line
Replies: 21
Views: 48867

Would you be so kind to tell us what it was?
by Pieter Zijlstra
Fri Feb 22, 2008 10:21 pm
Forum: Support
Topic: strnew replacement?
Replies: 9
Views: 24999

True, most of the time I look them up in the source, usually that will give you a hint to look elsewhere or sometimes a comment why it was deprecated and what the new function is (thinking of FileAge at the moment but that one is documented in the help also). Are you using any deprecated function/pr...
by Pieter Zijlstra
Thu Feb 21, 2008 5:04 pm
Forum: Support
Topic: strnew replacement?
Replies: 9
Views: 24999

So if I use StrNew, that's ok? No problem and even NewStr is not a direct problem if you can live with some compiler hints (these can be switched as well). It usually means that it will not be maintained in future versions, but also quite often that there is a (sometimes better) replacement in anot...
by Pieter Zijlstra
Tue Feb 19, 2008 8:51 pm
Forum: Support
Topic: strnew replacement?
Replies: 9
Views: 24999

This is a little stange AFAIK StrNew is not deprecated but NewStr is. But NewStr is not used in RichView. :?
by Pieter Zijlstra
Wed Feb 13, 2008 11:00 pm
Forum: Support
Topic: How can i get the Column Size ?
Replies: 5
Views: 16782

The following is what I use to determine the colwidths of the current row (see RVRuler.pas in UpdateTableEditor for more). ... if RulerType = rtHorizontal then begin // Setup columns RVCellLast := nil; for C := 0 to RVTable.Rows[Row].Count - 1 do begin RVCell := RVTable.Cells[Row, C]; if RVCell <> n...
by Pieter Zijlstra
Tue Jan 15, 2008 9:42 pm
Forum: Support
Topic: Always unable to export to MS Word
Replies: 39
Views: 104803

Please send me compiled exe to richview at gmail dot com (zipped with password protection, otherwise it will be rejected by gmail) Just for information: The last time I checked this, it didn't work. The filenames inside a password protected zipfile are still visible and gmail rejects .exe files. To...
by Pieter Zijlstra
Wed Dec 19, 2007 9:45 pm
Forum: Support
Topic: Ruler - taDecimalAlign
Replies: 4
Views: 16861

PS: In Peter's Demo 'unit uSimpleDemo' taDecimalAlign also doesn't work. taDecimalAlign changes to taLeftAlign. That demo is using Delphi's (read Windows) standard TRichEdit v1.0 this one does not support it and that's why it is off by default. Maybe it would have been better to not show this optio...
by Pieter Zijlstra
Fri Aug 24, 2007 8:02 pm
Forum: ScaleRichView
Topic: Printing Settings?
Replies: 2
Views: 16849

What I sometimes use for testing is PDFCreator http://sourceforge.net/projects/pdfcreator/. Maybe an option when you're unable to get to a printer (or just to save some paper).

Pieter
by Pieter Zijlstra
Sun Jan 07, 2007 11:29 am
Forum: Support
Topic: How to activate the ruler
Replies: 4
Views: 15490

The ruler component contains two units. 1st is a general unit called ruler.pas this one contains all the basic functionality like drawing, etc. 2nd is rvruler.pas this is specialized unit which does all the specific handling for a richview component like changing the tabs, indents and margins of a d...
by Pieter Zijlstra
Sat Dec 09, 2006 3:38 pm
Forum: Support
Topic: Current Tab (TRVRuler)
Replies: 6
Views: 15429

Hello Jürgen,

The last time I checked, TRichView did not support decimal tabs (Sergey, correct me if I'm wrong).
What you can do is use a fixed number of decimals with a font having a fixed pitch and then use taRightAlign.

--
Pieter
by Pieter Zijlstra
Wed Nov 29, 2006 12:15 am
Forum: Support
Topic: Current Tab (TRVRuler)
Replies: 6
Views: 15429

Identifying the tab is not that difficult, the problem is that as soon as you change the alignment of the tab a part of the ruler becomes empty and a new tab will be added on the second MouseDown. To prevent the extra tab, Ruler.pas needs to be changed. But first identifying the tab, this can be don...
by Pieter Zijlstra
Sun Nov 26, 2006 5:19 pm
Forum: Support
Topic: what means 'WM_RVADDROW' and 'WM_USER'
Replies: 2
Views: 11163

Jürgen, WM stands for Window Message. WM_USER is constant defined by Delphi/Windows, this is a starting point for all user messages. Also have a look at WM_APP... http://msdn2.microsoft.com/en-us/library/ms644931.aspx http://blogs.msdn.com/oldnewthing/archive/2003/12/02/55914.aspx WM_RVADDROW is wha...