Search found 7 matches

by Fishous
Tue Mar 04, 2014 11:38 am
Forum: RVMedia
Topic: Limitations and capabilities
Replies: 1
Views: 13740

Limitations and capabilities

Is there any information available as to the capabilities and limitations of the server and video parts?

Maximum video connections, maximum users, etc.

I'm guessing something for FireMonkey is probably never going to happen correct?
by Fishous
Thu Mar 22, 2007 5:55 pm
Forum: Support
Topic: Programatically Delete a table
Replies: 7
Views: 19006

Oh, yeah, FRichView is a TRichViewEdit. Originally it was a TRichView, but there was something it couldn't do that the edit could, but I can't remember what exactly.
by Fishous
Thu Mar 22, 2007 4:56 pm
Forum: Support
Topic: Programatically Delete a table
Replies: 7
Views: 19006

I fixed it by doing a format: For i := 0 to FRichView.ItemCount - 1 do begin if FRichView.GetItemStyle(i) = rvsTable then begin FRichView.DeleteParas(i,i); dec(FChatEntries); FRichview.Format; break; end; end; //for [/code]
by Fishous
Wed Mar 21, 2007 12:48 pm
Forum: Support
Topic: Programatically Delete a table
Replies: 7
Views: 19006

What happens when you put rv.ReadOnly := false before that code, and rv.ReadOnly := true right after it?

I get an index out of bounds error in TCustomRichViewEdit.SetReadOnly, on the Invalidate line (i think).
by Fishous
Mon Mar 19, 2007 9:29 pm
Forum: Support
Topic: TRichview and auto set focus
Replies: 2
Views: 10762

Well, while you're at it, check and see if it makes it automatically scroll to the end. I removed rvoScrollToEnd from the RichEdit Options, and when I import the table, it still scrolls to the end. I'm "basically" doing this: FRichView.ReadOnly := false; FRVHtmlImporter.LoadHtml(Content.Bo...
by Fishous
Mon Mar 19, 2007 8:17 pm
Forum: Support
Topic: Programatically Delete a table
Replies: 7
Views: 19006

Programatically Delete a table

I'm using TRichViewEdit as a chat history display. I'm inserting each entry in as an HTML Table that simply has one row, two cells. Picture in the left cell, text in the right.

I need to programatically delete the first table in the document. I can't figure out how to do it.
by Fishous
Mon Mar 19, 2007 1:42 pm
Forum: Support
Topic: TRichview and auto set focus
Replies: 2
Views: 10762

TRichview and auto set focus

I'm using a TRichViewEdit as a chat text control. The problem I am having is that certain operations, such as scanning for URLs makes the control set focus to itself, which is really annoying when you're trying to type in another control. I'm using HTML and the HTML Importer, as well as a scan url p...