Search found 10 matches

by comeonwh
Fri Mar 24, 2006 1:16 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

Sergey Tkachenko wrote:I received this project, but I cannot reproduce the problem.
I stopped, the label shows 9160, MainForm.RichViewEdit1.ItemCount=3530.
That is the problem,and it happen in write RichViewEdit. So ,I want to know how to modify my code.
by comeonwh
Thu Mar 23, 2006 10:20 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

Sergey Tkachenko wrote:Please send this sample project (where timers are used instead of threads) to richview@gmail.com
I have send the Project to your e-mail.
by comeonwh
Thu Mar 23, 2006 7:41 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

Sergey Tkachenko wrote:TRichView content must not be added in a thread context, without Synchronize.
what is mean? Can you give me some code!
by comeonwh
Thu Mar 23, 2006 7:16 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

I have put the thread-code into TTimer events. but the problem is still exist. I am suspicious of RichView have some bug, otherwise,my program can not have problem.
by comeonwh
Wed Mar 22, 2006 8:46 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

I have tested, use Synchronize method " Synchronize(writeToMemo) " the wrong still exist. so on above code , I have remark the Synchronize method.
by comeonwh
Wed Mar 22, 2006 7:17 am
Forum: Support
Topic: who can help me?
Replies: 11
Views: 37665

who can help me?

Hello , I have a program that use TRichViewEdit to list info , but run several minutes it show " Raise exception class EInvalidOperation with Message 'Canvas does not allow drawing'". who can help me ! This is my all code: Main Form code unit main; interface uses Windows, Messages, SysUtil...
by comeonwh
Mon Mar 20, 2006 2:01 am
Forum: Support
Topic: How can insert Hypertext in RichviewEdit
Replies: 6
Views: 23717

Sergey Tkachenko,thank you very much!
All problems be ravel out.
by comeonwh
Fri Mar 17, 2006 10:18 am
Forum: Support
Topic: How can insert Hypertext in RichviewEdit
Replies: 6
Views: 23717

Thanks,Sergey Tkachenko. How can I uses insert*** methos to accomplish the code function as as follows: RichVE.AddNL(myInfo.title,0,2); // add title. RichVE.AddTab(0,-1); // add TAB key. RichVE.AddHotspotExTag('phone',1,1,ImageList,-1,MakeTag(myInfo.phone)); // add a hostpot image,on click show &quo...
by comeonwh
Thu Feb 23, 2006 1:58 am
Forum: Support
Topic: How can insert Hypertext in RichviewEdit
Replies: 6
Views: 23717

Hello, Thanks,Sergey Tkachenko. If I use TRichViewEdit, how can I insert at caret position using editing methods such as InsertText, InsertHotspot, etc. Can you give me demo code? Or, I post a demo code to your E-mail,and you help me to change it. It is very important which Insert Hypertext at the b...
by comeonwh
Tue Feb 21, 2006 8:18 am
Forum: Support
Topic: How can insert Hypertext in RichviewEdit
Replies: 6
Views: 23717

How can insert Hypertext in RichviewEdit

Hello, I am using the RichViewEdit to list the record contents , which read from database. These records increase at any moment, so the RichViewEdit reads all new records from database per second and paints record contents.My code as follows: Type TInfo = Record title:string; phone:string; name:stri...