Search found 193 matches

by Marsianin
Fri Jun 17, 2011 5:14 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

Hm, may be there is something else but I'm getting error from Flash10o.ocx...
Maybe some OnClick event produces it?
What TRichViewEdit events should fire when I click some object like this flash one?
by Marsianin
Thu Jun 16, 2011 7:39 am
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 230382

Any suggestions?
by Marsianin
Thu Jun 16, 2011 7:13 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

Try to click several times... I just tried again and got (from 3-4th click): --------------------------- Debugger Exception Notification --------------------------- Project Project1.exe raised exception class EInvalidOp with message 'Invalid floating point operation'. --------------------------- Bre...
by Marsianin
Tue Jun 07, 2011 6:40 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

Actually I don't know how to fix it yet. Will try to find a way.
Never worked with ActiveX (I think it's a bad thing) but maybe there is a way to check when somebody clicks on flash control and put some try-except routines...
Actually did you get the same errors clicking on flash?
by Marsianin
Tue Jun 07, 2011 6:36 am
Forum: Examples, Demos
Topic: [Examples] Count of characters and words
Replies: 37
Views: 230382

Ok, everything works fine here, i can count words/characters/paragraphs but still have some quiestions: 1. When counting document lines globally (including tables) how can I check cursor position globally too? Because RVE.GetCurrentLineCol(line,col); returns only local line number. 2. Using GetLineC...
by Marsianin
Sun Jun 05, 2011 8:23 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

If you click Flash control before it's completely loaded you'll get some Invalid Pointer operation errors, access violations etc...
by Marsianin
Mon May 30, 2011 12:13 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

Also when I close application with YouTube inside RVE I'm getting AccessViolation again. But YouTube plays and inserts fine.
by Marsianin
Mon May 30, 2011 12:12 am
Forum: Examples, Demos
Topic: [Demo] How to insert YouTube video in the editor
Replies: 34
Views: 208028

Just tried this demo on Delphi 2010 under Windows 7 x64 with Adobe Flash 10.2 installed. It works but during insert I'm getting some EInvalidOp with message 'Invalid floating point operation' errors and Access violation at address 608C89B1 in module 'Flash10o.ocx'. Write of address 0000566D. Didn't ...
by Marsianin
Sun May 29, 2011 8:17 am
Forum: Support
Topic: Export to HTML with external CSS
Replies: 3
Views: 12587

Ok, but if I have several different files can I aggregate all styles from these files into one RVStyle and then use one CSS file for all these files?
by Marsianin
Sun May 29, 2011 6:27 am
Forum: Support
Topic: Word wrap is not working...
Replies: 2
Views: 11234

This helped:

Code: Select all

RichViewEdit1.MinTextWidth:=0;
RichViewEdit1.MaxTextWidth:=0;
by Marsianin
Tue Dec 28, 2010 3:11 pm
Forum: Support
Topic: Samples to work with tables without rvActions
Replies: 18
Views: 42508

Moved table routines to update toolbars from OnCaretMove back to another place and everything works fine again because any modification of RVE with caret inside the table fired access violation (just even typing).
by Marsianin
Tue Dec 28, 2010 12:29 am
Forum: Support
Topic: Samples to work with tables without rvActions
Replies: 18
Views: 42508

1. I didn't understand. But it loses these cells. Merging 8x5, unmerging 8x1 Tried to import .rvf inside the table, got a lot of Access violations and: Assertion failure (c:\program files (x86)\delphi 2010\lib1\TRichView\DLines.pas, line 362) Without the table import works fine. Maybe it's OnCaretMo...
by Marsianin
Mon Dec 27, 2010 12:42 am
Forum: Support
Topic: Samples to work with tables without rvActions
Replies: 18
Views: 42508

It seems I found a bug with tables in the latest RichViewEdit. To reproduce: 1. Open RichViewEdit Editor Demo 1 2. Insert Table Example 2 3. Delete text and button 4. Unmerge (rows and cols) that cell were was a button 5. You'll get a clear 6x10 table 6. Select full rows beginning from 2 to 7, merge...
by Marsianin
Thu Dec 23, 2010 11:16 pm
Forum: Support
Topic: Samples to work with tables without rvActions
Replies: 18
Views: 42508

My project is not simple.

But I think that problematic code fires some event which cannot be processed on that stage. I'm going to study it.

Maybe you can help me to check what events fires this code from rvActions?
by Marsianin
Tue Dec 14, 2010 7:55 am
Forum: Support
Topic: Samples to work with tables without rvActions
Replies: 18
Views: 42508

Unmerge menu items are always enabled even if there is nothing to unmerge. Sample from rvActions works but I'm getting access violation running this code right after using table.UnmergeSelectedCells(CheckBox3.Checked,CheckBox2.Checked) : boo:=table.GetNormalizedSelectionBounds(True,r,c,cs,rs); if bo...