Search found 6 matches
- Wed Nov 12, 2008 11:23 am
- Forum: Support
- Topic: PChar-Tags within tables
- Replies: 2
- Views: 8918
- Tue Nov 11, 2008 4:11 pm
- Forum: Support
- Topic: PChar-Tags within tables
- Replies: 2
- Views: 8918
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 ...
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 ...
- Mon Oct 13, 2008 7:44 am
- Forum: Support
- Topic: Memory Leak in TRichView.OnReadHyperlink?
- Replies: 3
- Views: 12711
- Fri Oct 10, 2008 11:32 am
- Forum: Support
- Topic: Memory Leak in TRichView.OnReadHyperlink?
- Replies: 3
- Views: 12711
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 ...
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 ...
- Fri Oct 10, 2008 7:17 am
- Forum: Support
- Topic: Can't save Hyperlink to database
- Replies: 2
- Views: 9515
- Wed Oct 08, 2008 8:47 am
- Forum: Support
- Topic: Can't save Hyperlink to database
- Replies: 2
- Views: 9515
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 ...
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 ...