Dear Sergey Tkachenko,
Thank you very much!
I tested my program as your suggestion.
My program run successful.
My problems are solved .
Thanks a lot.
Search found 27 matches
- Thu Oct 28, 2010 12:55 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Wed Oct 27, 2010 1:31 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Wed Oct 27, 2010 12:51 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
Corrections in the code: 1) Modify ChangeFieldValue: procedure ChangeFieldValue(RVData: TCustomRVData; const s: String); var ParaNo, StyleNo, Tag: Integer; sl: TStringList; i, Cnt: Integer; begin [color=red]RVData := RVData.GetRVData;[/color] sl := GetStringListFromString(s); if sl.Count<X_Arrcount ...
- Mon Oct 25, 2010 12:52 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Mon Oct 25, 2010 12:44 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
I'm sorry that I have not test it before.Sergey Tkachenko wrote:This link does not work (it requires me to log in?)
Please try this link.(http://www.cnblogs.com/mikalshao/archiv ... 60080.html)
click the ¡¾Delphi Program¡¿Link.
If you have also other problem, please tell me.
Thanks
- Fri Oct 22, 2010 12:48 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Thu Oct 21, 2010 9:17 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
I write off the two sourcecode as below in the read,button1,button2 button. form1.srv.Visible:=false; form1.srv.Visible:=true; then I run my program. I click the buttons from the read ,button1,button2. At first, It's can switch successful. But I switch serval times,the error also be found. The error ...
- Thu Oct 21, 2010 8:35 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
I create two new button.(button1,button2) their sourcecode is similar to the read button. the different is s string; The read button's is "s:='111';" The button1's is "s:='111'+#13#10+'222';" The button2's is "s:='111'+#13#10+'222'+#13#10+'333';" I run my program. If I click the button order is read ...
- Thu Oct 21, 2010 6:35 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Thu Oct 21, 2010 1:12 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Wed Oct 20, 2010 3:42 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Wed Oct 20, 2010 3:24 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
I created these functions for you, but I HIGHLY recommend you to use one of demos from http://www.trichview.com/forums/viewtopic.php?t=8 as a basis, instead of these functions. Thank you for your reply. I'm sorry I can't be blind to the demo. Here's my meaning's sourcecode. 1.create the talbe and ...
- Wed Oct 20, 2010 1:42 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
Sorry for delay. As I understand, you need to change text of the field. 1) Use the unit http://www.trichview.com/support/files/RVInsertItems.zip (the most probably, it will be included in the next versions of TRichView. This unit has the function RVInsertString allowing to insert a single line of ...
- Mon Oct 18, 2010 3:53 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
- Wed Sep 29, 2010 6:55 am
- Forum: ScaleRichView
- Topic: How the Cursor move in the Tags of TSrichViewEdit ?
- Replies: 36
- Views: 136008
Sergey Tkachenko, I searched the two funcitons. I create my funcitons base on them. The detail is as below. procedure TForm1.bSaveClick(Sender: TObject); var s: String; begin s := trim(GetFieldValue2(srv.RichViewEdit, 'eName5')); showmessage('»бХпјЗВјЎѕ'+s+'Ўї±ЈґжіЙ№¦ЈЎ'); end; function GetFieldValue ...