Search found 87 matches

by Michel
Tue Jul 03, 2007 10:46 pm
Forum: ScaleRichView
Topic: First bugs noticed
Replies: 6
Views: 28846

Hi Ilya,

Re/scaling: yea, I suspected that much. Oh well, too bad.

Keep up the good work!
by Michel
Mon Jul 02, 2007 9:35 pm
Forum: ScaleRichView
Topic: First bugs noticed
Replies: 6
Views: 28846

Re: dependence on RichViewActions, Okay, understood. That's good news. Thanks, Sergey. Re: The carret is almost invisible... I tried again and, yes, it's not easy to reproduce, but I managed. Try this: set zoom to FullPage (simply to see the whole thing) and start to gradually reduce the top margin ...
by Michel
Mon Jul 02, 2007 4:44 pm
Forum: ScaleRichView
Topic: First bugs noticed
Replies: 6
Views: 28846

First bugs noticed

Hi Ilya and Sergey, I played a bit with the ScaleRichView-enabled ActionTest. Nice start. I noticed a few problems though, so here they are. Doing "page down" on the vertical scrollbar moves down by only ~4 lines. PageDown key was initially doing the same - until I hit the circular button ...
by Michel
Fri Oct 13, 2006 8:16 pm
Forum: Support
Topic: Drag-and-Drop in Unmodified TDBRichViewEdit
Replies: 2
Views: 12084

Hi Sergey,

Did you miss my question by any chance? :wink:

Thanks,
by Michel
Tue Sep 05, 2006 1:38 pm
Forum: Support
Topic: WordWrap and Clear
Replies: 3
Views: 15024

In my blob field, there is a lot character That's probably because an empty RV still has a header, and probably some other stuff. To "nullify" the BLOB you'd probably have to do just that: set the field value to NULL explicitly. The second part of your question - I didn't quite understand...
by Michel
Wed Aug 02, 2006 11:23 pm
Forum: Support
Topic: Working with both TRichViewEdit and TDBRichViewEdit
Replies: 3
Views: 13291

I think, if you could change your function to accept the common ancestor of both classes (TCustomRichViewEdit) as parameter, you could pass either of them to it.

Michel
by Michel
Wed Aug 02, 2006 5:05 pm
Forum: Support
Topic: A GIF Image Corrupts RVF Documents
Replies: 6
Views: 20725

Hi Henry,

Thanks for the info! :)

Michel
by Michel
Thu Jul 27, 2006 2:03 pm
Forum: Support
Topic: Drag-and-Drop in Unmodified TDBRichViewEdit
Replies: 2
Views: 12084

Drag-and-Drop in Unmodified TDBRichViewEdit

Hi Sergey, I think there may be a little bug with this. In a not-yet modified record with a TDBRichViewEdit, perform a Drag-and-Drop operation on some selected text. It should move it, right? Instead, it copies it. No problem if the record has been modified (and is hence in dsEdit state). Thanks, Mi...
by Michel
Wed Jul 26, 2006 3:45 pm
Forum: Support
Topic: Overwrite Ctrl+Z
Replies: 10
Views: 28958

You could try catching it in Form.OnShortCut and setting Handled to True.
HTH,
Michel
by Michel
Mon Jul 24, 2006 11:12 pm
Forum: Support
Topic: A GIF Image Corrupts RVF Documents
Replies: 6
Views: 20725

Hi Sergey, This is a problem with TGifImage. Yep, looks like it. Your test gave me an idea (see below). Ok, here are the changes in RVItem.pas.[...] The only problem with this new code: no error messages or warnings if such replacement happens. Thanks for a quick fix! I figured that as an added prot...
by Michel
Sun Jul 23, 2006 11:55 pm
Forum: Support
Topic: A GIF Image Corrupts RVF Documents
Replies: 6
Views: 20725

A GIF Image Corrupts RVF Documents

Hi Sergey, I ran into a rather serious problem. Here are the steps to reproduce. 1. Download the following animated GIF image from the Web: http://www.cyberisle.com/animate/animals/run-cat.gif 2. In your pre-compiled RVActionTest 1.9.8, create a new blank document and insert the above image into it ...
by Michel
Sun Jul 23, 2006 11:51 pm
Forum: Support
Topic: Replace Text with Image
Replies: 4
Views: 16766

Hi! Your smiley idea sounds conceptually similar to AutoCorrect. Search for "AutoCorrect" in the ActionTest source code to see what it does and from what events. As to styles, take a look at ApplyStyleConversion() in the Help and in at least one of the smaller Editor demos (and ActionTest ...
by Michel
Sat Jul 01, 2006 10:00 pm
Forum: Support
Topic: TDBRichView and corresponding database field update
Replies: 2
Views: 12686

I think you are missing a call to DBRichViewEdit-> Can Change(). If performing programmatic edits, you'd want to call: NotesTable->Edit(); if (!DBRichViewEdit->CanChange()) ; // Bail out gracefully // This is where, I guess, you'd change the contents DBRichViewEdit->Change(); NotesTable->Post(); If ...
by Michel
Fri Jun 30, 2006 11:56 am
Forum: Support
Topic: Bug in RVGetTextLength function
Replies: 2
Views: 11769

You need to call Format after Clear.
by Michel
Thu Jun 15, 2006 12:07 pm
Forum: Support
Topic: Removing the dashed line when a table is active.
Replies: 4
Views: 15857

Hi,
Try toggling rvtoHideGridLines in TRVTableItemInfo.Options. This works on a per-table basis.
HTH,
Michel