Is there a guide on how to use TRichView or at least an overview of the necessary components?
I just started using your product and don't know where to find all the informations.
Thanks
Search found 3 matches
- Tue Jun 16, 2020 12:12 pm
- Forum: Support
- Topic: Insert Image at position in TCustomRVData
- Replies: 5
- Views: 15244
- Tue Jun 16, 2020 6:22 am
- Forum: Support
- Topic: Insert Image at position in TCustomRVData
- Replies: 5
- Views: 15244
Re: Insert Image at position in TCustomRVData
Thanks for you reply, but could you help me with the code? I only have the TCustomRVData and don't know, how to get or format the document.
This is my code so far to find the placeholders:
begin
if not FileExists(aFileName) then Exit;
Image := TPicture.Create;
Image.LoadFromFile(aFileName ...
This is my code so far to find the placeholders:
begin
if not FileExists(aFileName) then Exit;
Image := TPicture.Create;
Image.LoadFromFile(aFileName ...
- Mon Jun 15, 2020 2:15 pm
- Forum: Support
- Topic: Insert Image at position in TCustomRVData
- Replies: 5
- Views: 15244
Insert Image at position in TCustomRVData
Hello Sergej,
I have a procedure with only a TCustomRVData and a matching pattern for the position and I want to replace the pattern with a Bitmap.
Item.Inserting(aRVData, sr, False);
aRVData.Items.InsertObject(i, sr, Item);
Item.Inserted(aRVData, i);
adds the image but in front of the table ...
I have a procedure with only a TCustomRVData and a matching pattern for the position and I want to replace the pattern with a Bitmap.
Item.Inserting(aRVData, sr, False);
aRVData.Items.InsertObject(i, sr, Item);
Item.Inserted(aRVData, i);
adds the image but in front of the table ...