Search found 23 matches

by bswift
Tue Mar 28, 2017 6:10 pm
Forum: Support
Topic: Install in 10.1 Starter
Replies: 2
Views: 11399

Re: Install in 10.1 Starter

Thanks Sergey.....
by bswift
Mon Mar 27, 2017 9:46 pm
Forum: Support
Topic: Install in 10.1 Starter
Replies: 2
Views: 11399

Install in 10.1 Starter

Does the installer not install in the Starter version? It has added the Library paths but no components on pallet.
by bswift
Mon May 02, 2016 4:55 pm
Forum: Support
Topic: Insert Images
Replies: 2
Views: 11521

Sergey,

Thanks for the help. It now works.

Bruce
by bswift
Sat Apr 30, 2016 1:06 pm
Forum: Support
Topic: Insert Images
Replies: 2
Views: 11521

Insert Images

I have been using this code in an old app for 10 years and it works; var bmp: TBitmap; jpg: TJpegImage; begin bmp := TBitmap.Create; jpg := TJpegImage.Create; bmp.Assign(TImage(Image1.Picture)); jpg.Assign(bmp); RVE.InsertPicture('', bmp, rvvaBaseline); bmp.Free; jpg.Free; end; using it in another a...
by bswift
Wed Jun 01, 2011 8:22 pm
Forum: Support
Topic: List Index out of bounds Error
Replies: 2
Views: 10724

Problem fixed

Sergey,

You are correct. I have been using this code for years and have had no problem with it. But, this has fixed it. Thanks so much and thanks for working so hard to produce a great set of components.

Blessings,

Bruce
by bswift
Tue May 31, 2011 9:05 pm
Forum: Support
Topic: List Index out of bounds Error
Replies: 2
Views: 10724

List Index out of bounds Error

Hello all, I have a routine that I have been using to format different strings as I added then to a TRichViewEdit. Up until I upgraded my Richview stuff it worked perfect and as a matter of fact, it still does, but only when run outside of the IDE. Here is the code and the error is noted: procedure ...
by bswift
Mon Apr 20, 2009 12:15 am
Forum: Support
Topic: SaveRTF() creates many pages
Replies: 1
Views: 8538

SaveRTF() creates many pages

Hello,

I am adding new lines to RVE like this
AddNL('text',ts,ps);

ts is textstyle and ps is parastyle. I call RVE.Format at end of proc. When I try to save as an RTF file I get hundreds of pages all with one very large char in it. What am I doing wrong??

Thanks

b
by bswift
Wed Aug 13, 2008 7:26 pm
Forum: Support
Topic: Table and cells
Replies: 2
Views: 11047

Sergey,

Thats ok....I pretty much have it figured out. I may have a few questions later and I will be a little more discript.

Thanks

b
by bswift
Tue Aug 12, 2008 11:13 am
Forum: Support
Topic: Table and cells
Replies: 2
Views: 11047

Table and cells

Hello all, I am looking for a way to insert the text from a RichEdit control into a RichViewEdit using tables and cells. Here is what I start with This is[12] the line[34] of[56] text I need to somehow create two tables with the first table having cells to correspond with the placement of the text i...
by bswift
Thu May 31, 2007 1:50 pm
Forum: Support
Topic: RichViewActions
Replies: 2
Views: 11219

Actions

Thanks Sergey.

b
by bswift
Tue May 29, 2007 4:16 pm
Forum: Support
Topic: RichViewActions
Replies: 2
Views: 11219

RichViewActions

Is there a version for D2007?

b
by bswift
Wed Apr 12, 2006 1:13 pm
Forum: Support
Topic: Font size
Replies: 2
Views: 11704

Thanks Sergey,

All makes sense now.

Bruce
by bswift
Wed Apr 12, 2006 4:43 am
Forum: Support
Topic: Font size
Replies: 2
Views: 11704

Font size

Is there a way to increase font size without using actions?
by bswift
Fri Feb 24, 2006 5:42 pm
Forum: Support
Topic: Load RTF
Replies: 9
Views: 28061

Load RTF

Yes, I understand about using the clear method. My problem is that I am appending to an existing file already loaded into the editor. I am trying to add a pagebreak before appending the file. This is where I end up with the extra item.

Bruce
by bswift
Thu Feb 23, 2006 10:41 pm
Forum: Support
Topic: Load RTF
Replies: 9
Views: 28061

Load RTF

I am using this

Code: Select all


RichViewEdit1.LoadRTF(s);

s being the path to the rtf file to be loaded.

All works well except it adds a blank line at the top of the inserted file.
Any help on this?

Thanks

bswift