Search found 6 matches

by thomasvonkapellen
Wed Nov 12, 2008 11:23 am
Forum: Support
Topic: PChar-Tags within tables
Replies: 2
Views: 8196

Thank a lot. On this way, I have to compliment you on doing a great job. TRichView is an excellent package and support is exemplary!
by thomasvonkapellen
Tue Nov 11, 2008 4:11 pm
Forum: Support
Topic: PChar-Tags within tables
Replies: 2
Views: 8196

PChar-Tags within tables

Hi, I inserted an PChar-Tag into a table with table.Cells[RowCount-1,1].AddNLTag. Now I try to get this Tag via TRichView.OnJump. procedure TfrmMain.rvwBenutzerJump(Sender: TObject; id: Integer); var iItemNo : integer; pItemTag : PChar; sItemTag : string; sItemText : string; sDateiname : string; rvd ...
by thomasvonkapellen
Mon Oct 13, 2008 7:44 am
Forum: Support
Topic: Memory Leak in TRichView.OnReadHyperlink?
Replies: 3
Views: 11782

Ok, now I included the rvoTagsArePChars in Option property an the memory leak disappeared, but now whe I close the application I get an access violation. Exception EAccessViolation in Modul infosys.exe bei 00010A83. Zugriffsverletzung bei Adresse 00410A83 in Modul 'infosys.exe'. Lesen von Adresse ...
by thomasvonkapellen
Fri Oct 10, 2008 11:32 am
Forum: Support
Topic: Memory Leak in TRichView.OnReadHyperlink?
Replies: 3
Views: 11782

Memory Leak in TRichView.OnReadHyperlink?

Hi, in my projekt I use a TRichView-Component named "rvwEintraege_B" and fill it with a blob from a database: blob := CreateBlobStream(qry.FieldByName('langtext'), bmRead); try blob.Seek(0, soFromBeginning); rvwEintraege_B.LoadRTFFromStream(blob); finally blob.Free; end; To view and use the stored ...
by thomasvonkapellen
Fri Oct 10, 2008 7:17 am
Forum: Support
Topic: Can't save Hyperlink to database
Replies: 2
Views: 8760

Works fine,

Thanks
by thomasvonkapellen
Wed Oct 08, 2008 8:47 am
Forum: Support
Topic: Can't save Hyperlink to database
Replies: 2
Views: 8760

Can't save Hyperlink to database

Hi, I'm trying to save hyperlink information into a mysql database using TDBRichViewEdit. First I used the sourcecode of the "CreateHyperlinks"-Demo, then I used the following line: rve.AddNLTag('Hyperlink example', 3, -1, Integer(StrNew('http://www.trichview.com'))); Ok, inserted the hyperlink ...