Search found 9 matches

by asteblev
Thu Jan 11, 2007 9:24 am
Forum: Support
Topic: Data Base + HyperText
Replies: 7
Views: 17760

Yes, Sergey. This Demo is OK.
by asteblev
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 ?
by asteblev
Wed Jan 10, 2007 12:21 pm
Forum: Support
Topic: Data Base + HyperText
Replies: 7
Views: 17760

Sergey, when I use a Action Hyperlink, All is OK. What is the problem?
by asteblev
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;
by asteblev
Mon Jan 08, 2007 12:06 pm
Forum: Support
Topic: Data Base + HyperText
Replies: 7
Views: 17760

Yes, Sergey. rvoTagsArePChars is TRUE.
by asteblev
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 ...
by asteblev
Tue Jan 02, 2007 4:25 pm
Forum: Support
Topic: DB Access + TRichView
Replies: 5
Views: 14927

Great thank you, Sergey. All is ok.
by asteblev
Tue Jan 02, 2007 11:26 am
Forum: Support
Topic: DB Access + TRichView
Replies: 5
Views: 14927

Yes, Sergey, u are right, that field MEMO is wrong. The type must to be OLE. but when I load the data, richview show the text-style and text without formating.
by asteblev
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 ...