Search found 9 matches
- Thu Jan 11, 2007 9:24 am
- Forum: Support
- Topic: Data Base + HyperText
- Replies: 7
- Views: 17760
- Wed Jan 10, 2007 1:24 pm
- Forum: Support
- Topic: Create a List of HyperLinks
- Replies: 1
- Views: 7803
Create a List of HyperLinks
Hi to All. Her is the problem. I want to make a List of HyperLinks in Load Document. How to find All Links and work with them ?
- Wed Jan 10, 2007 12:21 pm
- Forum: Support
- Topic: Data Base + HyperText
- Replies: 7
- Views: 17760
- Wed Jan 10, 2007 9:51 am
- Forum: Support
- Topic: Data Base + HyperText
- Replies: 7
- Views: 17760
Code: Select all
URL := PChar(RichViewEdit1.GetCurrentTag);
URL := main.LMDInputDlg1.InputBox('','','') ;
IF URL<>'' THEN
BEGIN
RichViewEdit1.ApplyTextStyle(4);
SetURLToSelection(URL);
END;
- Mon Jan 08, 2007 12:06 pm
- Forum: Support
- Topic: Data Base + HyperText
- Replies: 7
- Views: 17760
- Fri Jan 05, 2007 6:01 pm
- Forum: Support
- Topic: Data Base + HyperText
- Replies: 7
- Views: 17760
Data Base + HyperText
Hi Sergey. I have a problem when I load the data with hypertext from DB. All text and hupertext with formaing are right, but all links are corruped(OnJump: id=0; and RichViewEdit1.GetJumpPointLocation(id, RVData, ItemNo); URL := PChar(RVData.GetItemTag(ItemNo)); RETURNS ''; code: (LOAD) procedure ...
- Tue Jan 02, 2007 4:25 pm
- Forum: Support
- Topic: DB Access + TRichView
- Replies: 5
- Views: 14927
- Tue Jan 02, 2007 11:26 am
- Forum: Support
- Topic: DB Access + TRichView
- Replies: 5
- Views: 14927
- Mon Jan 01, 2007 6:58 pm
- Forum: Support
- Topic: DB Access + TRichView
- Replies: 5
- Views: 14927
DB Access + TRichView
Hi, Sergey. Her is the problem. I use Access to save the RVF files. I`ve a field of type MEMO. But when I load a data from this fiel nothing is going on. Her is the code: To Save: main.bufer.SQL.Text := 'update documents set content="" where id_doc=1' ; main.bufer.ExecSQL ; ADOTable1.TableName ...