Search found 33 matches

by dc3_dcfl
Mon Jul 25, 2011 7:19 pm
Forum: Support
Topic: Flicker of Font/FontSize Combobox
Replies: 0
Views: 13073

Flicker of Font/FontSize Combobox

I am having a problem with the RVFontComboBox and the RVFontSizeComboBox when the form it is on is resized. When a resize is initiated by the user, both controls autoselects the text of the selected font/fontsize, and as the form's width (not length) is resized, these two controls flicker. I've trie...
by dc3_dcfl
Thu Dec 23, 2010 9:41 pm
Forum: Support
Topic: Removing pagebreaks
Replies: 4
Views: 12894

Thank You very much, works perfectly.

Hope you have a very Merry Christmas and New Years!!
by dc3_dcfl
Thu Dec 23, 2010 4:50 pm
Forum: Support
Topic: Removing pagebreaks
Replies: 4
Views: 12894

All of my documents are created in Word and then imported using RVActions. I cannot tell you if the page breaks exist in the Word doc, I'll have to check, but they are there after the import process in the RVE. I have to manually go to each cell that has a page break and manually delete them. I was ...
by dc3_dcfl
Wed Dec 22, 2010 8:42 pm
Forum: Support
Topic: Removing pagebreaks
Replies: 4
Views: 12894

Removing pagebreaks

I am using this to remove page breaks from my DBRVE, but it does not remove them from tables. How can I modify this code to also remove page breaks in tables. for I := 0 to DBRVE.ItemCount-1 do begin if DBRVE.PageBreaksBeforeItems[I] then begin DBRVE.SetSelectionBounds(I, DBRVE.GetOffsBeforeItem(I),...
by dc3_dcfl
Tue Nov 09, 2010 6:00 pm
Forum: Support
Topic: GetAllText Problem
Replies: 6
Views: 16312

Thank you. I do that in my main application that loads the document, but not in the regular expression parser I'm now working on to read it.

I neglected to do it, now it all makes sense.

Thanks again.
by dc3_dcfl
Tue Nov 09, 2010 4:44 pm
Forum: Support
Topic: GetAllText Problem
Replies: 6
Views: 16312

I sent an example document to richview{at}gmail{dot}com

Thanks
by dc3_dcfl
Tue Nov 09, 2010 2:36 pm
Forum: Support
Topic: GetAllText Problem
Replies: 6
Views: 16312

Sergey, I was prepping a document to send to you, (Cannot send you an original due to sensitive nature of the document). Noticed that when I removed the graphic from one of the documents that was producing the error, it no longer produced the same error. I thought Getalltext only returned the text o...
by dc3_dcfl
Mon Nov 08, 2010 11:17 pm
Forum: Support
Topic: GetAllText Problem
Replies: 6
Views: 16312

GetAllText Problem

I am using the GETALLTEXT function contained in RVGETTEXTW to retrieve just the text of a document (from a DBRichviewEdit). In most all cases, this works without problems, but on a few documents, the returned string is nothing but the formatting, not the text. I cannot find anything different about ...
by dc3_dcfl
Mon Jun 07, 2010 12:56 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

Both the vertical and horizontal rulers are on the MDI child.
by dc3_dcfl
Thu Jun 03, 2010 7:29 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

Another hint... Just figured out the pattern on when the cursor shows up in the wrong position. My application is an MDI application. Each time my MDI frame creates a new form, the new one shows up offset down and to the right (as defined by windows). After a few iterations of creating forms (with t...
by dc3_dcfl
Thu Jun 03, 2010 7:00 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

No, I set all the ruler properties from the object inspector. No code manipulations of the ruler other than the UpdateRulerMargins you suggested.
by dc3_dcfl
Thu Jun 03, 2010 2:31 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

I've been testing the application a bit more, and find that even when the document has text, in some instances the cursor positions itself upper left corner not within the margins. Again, this is random, I can open up a document with the cursor in the correct position many times, then the next time,...
by dc3_dcfl
Thu Jun 03, 2010 1:30 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

I'm still getting this behavior. Here is the code: if (DBRichViewEdit1.ItemCount > 0) and (DBRichViewEdit1.GetItemStyle(0) = rvsTable) then TRVTableItemInfo(DBRichViewEdit1.GetItem(0)).EditCell(0,0) else DBRichViewEdit1.SetSelectionBounds (0,DBRichViewEdit1.GetOffsBeforeItem(0), 0, DBRichViewEdit1.G...
by dc3_dcfl
Wed Jun 02, 2010 8:42 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

One more issue I'm encountering. When I have an empty document, the cursor sometimes (unpredictable) does not place itself within the margins I've created with the rulers (1 inch left and right, and 1 inch top and bottom). Instead the cursor shows up in the upper left corner. When I start typing, th...
by dc3_dcfl
Tue Jun 01, 2010 6:11 pm
Forum: Support
Topic: Special Handling for Tables
Replies: 12
Views: 28005

Thank-you, Worked Perfectly