Search found 23 matches
- Tue Mar 28, 2017 6:10 pm
- Forum: Support
- Topic: Install in 10.1 Starter
- Replies: 2
- Views: 12759
Re: Install in 10.1 Starter
Thanks Sergey.....
- Mon Mar 27, 2017 9:46 pm
- Forum: Support
- Topic: Install in 10.1 Starter
- Replies: 2
- Views: 12759
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.
- Mon May 02, 2016 4:55 pm
- Forum: Support
- Topic: Insert Images
- Replies: 2
- Views: 12548
- Sat Apr 30, 2016 1:06 pm
- Forum: Support
- Topic: Insert Images
- Replies: 2
- Views: 12548
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 ...
- Wed Jun 01, 2011 8:22 pm
- Forum: Support
- Topic: List Index out of bounds Error
- Replies: 2
- Views: 11828
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
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
- Tue May 31, 2011 9:05 pm
- Forum: Support
- Topic: List Index out of bounds Error
- Replies: 2
- Views: 11828
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 ...
- Mon Apr 20, 2009 12:15 am
- Forum: Support
- Topic: SaveRTF() creates many pages
- Replies: 1
- Views: 9197
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
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
- Wed Aug 13, 2008 7:26 pm
- Forum: Support
- Topic: Table and cells
- Replies: 2
- Views: 11901
- Tue Aug 12, 2008 11:13 am
- Forum: Support
- Topic: Table and cells
- Replies: 2
- Views: 11901
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 ...
- Thu May 31, 2007 1:50 pm
- Forum: Support
- Topic: RichViewActions
- Replies: 2
- Views: 12432
Actions
Thanks Sergey.
b
b
- Tue May 29, 2007 4:16 pm
- Forum: Support
- Topic: RichViewActions
- Replies: 2
- Views: 12432
RichViewActions
Is there a version for D2007?
b
b
Font size
Is there a way to increase font size without using actions?
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
Bruce
Load RTF
I am using this
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
Code: Select all
RichViewEdit1.LoadRTF(s);
All works well except it adds a blank line at the top of the inserted file.
Any help on this?
Thanks
bswift