Ok thanks,
it works fine!
i make the edit with...
rvAdd.SetItemText(intP+POS_MSGCNT,IntToStr(intMsgCnt));
is work good.
How change the ParaStyle?
I want switsh to ParaStyle No 2 when the intMsgCnt>5.
It is posibble?
best regrads, Frank
Search found 14 matches
- Sun Jul 30, 2006 12:00 am
- Forum: Support
- Topic: How to get the ItemNumber of an existing String?
- Replies: 3
- Views: 14181
- Thu Jul 27, 2006 3:48 pm
- Forum: Support
- Topic: How to get the ItemNumber of an existing String?
- Replies: 3
- Views: 14181
How to get the ItemNumber of an existing String?
Hello,
how can i get the number of an existig Item?
I have...
RichView1.AddNL('MyFirstLine',0,0);
RichView1.Add('example',1);
RichView1.Format;
now i search the ItemNumber of "MyFirstLine" ?
Is it possible to get the ItemNumber?
best regrads, Frank
how can i get the number of an existig Item?
I have...
RichView1.AddNL('MyFirstLine',0,0);
RichView1.Add('example',1);
RichView1.Format;
now i search the ItemNumber of "MyFirstLine" ?
Is it possible to get the ItemNumber?
best regrads, Frank
- Fri Apr 28, 2006 7:19 am
- Forum: Support
- Topic: How can set a fix width of 40 chars per line?
- Replies: 0
- Views: 14490
How can set a fix width of 40 chars per line?
Hello everybody,
how can i set a fix width of 40 chars?
I want use a TRichViewEdit for a editor that have only
a fix width of 40 chars and now search i a solution to
becomes a auto CR function at a fix width of 40 chars.
any ideas?
Best wishes, Frank
how can i set a fix width of 40 chars?
I want use a TRichViewEdit for a editor that have only
a fix width of 40 chars and now search i a solution to
becomes a auto CR function at a fix width of 40 chars.
any ideas?
Best wishes, Frank
- Mon Mar 06, 2006 10:50 pm
- Forum: Support
- Topic: How reduce the space in memory of TRichEdit?
- Replies: 4
- Views: 19129
- Sat Mar 04, 2006 1:24 pm
- Forum: Support
- Topic: How reduce the space in memory of TRichEdit?
- Replies: 4
- Views: 19129
How reduce the space in memory of TRichEdit?
Hi have 12 TRichEdit in my application, the size in Memory of this Application ist 12 MB i think it is the TRichEdit...
In any TRichEdit i have only 500 lines...
I use it only for text in different collors...
best wisches, Frank
In any TRichEdit i have only 500 lines...
I use it only for text in different collors...
best wisches, Frank
- Fri Feb 03, 2006 9:50 am
- Forum: Support
- Topic: Function at same as "Memo.Text" ?
- Replies: 3
- Views: 15619
Function at same as "Memo.Text" ?
Hallo,
how become all chars in one string?
best wishes, Frank
how become all chars in one string?
best wishes, Frank
- Wed Feb 01, 2006 9:27 am
- Forum: Support
- Topic: Draw only after all changes?
- Replies: 4
- Views: 18680
- Tue Jan 31, 2006 8:51 am
- Forum: Support
- Topic: Draw only after all changes?
- Replies: 4
- Views: 18680
- Mon Jan 30, 2006 11:48 am
- Forum: Support
- Topic: Draw only after all changes?
- Replies: 4
- Views: 18680
Draw only after all changes?
Hello,
if it posible that i can made any changes in a RichViewEdit component without drawing?
I want no see any changes by the programm on the screen befor i say "draw".
best wishes, Frank
if it posible that i can made any changes in a RichViewEdit component without drawing?
I want no see any changes by the programm on the screen befor i say "draw".
best wishes, Frank
- Tue Jan 24, 2006 12:07 pm
- Forum: Support
- Topic: How get the Style Number from Item?
- Replies: 3
- Views: 15903
- Tue Jan 24, 2006 11:42 am
- Forum: Support
- Topic: How get the Style Number from Item?
- Replies: 3
- Views: 15903
How get the Style Number from Item?
I think it it possible but i don't find. Sorry...
I want Show the StyleNumber from Item[x].
How is the sulution?
Thanks, Frank
I want Show the StyleNumber from Item[x].
How is the sulution?
Thanks, Frank
- Mon Jan 23, 2006 7:48 pm
- Forum: Support
- Topic: How can use AddText right?
- Replies: 1
- Views: 11436
How can use AddText right?
Hi, i have a little problem with TRichViewEdit. I add short strings with AddText; Example: rv.AddText('hel', 0); rv.AddText('lo wor', 0); rv.AddText('ld', 0); In the RichView "rv" shown the text "hello world", thats great! When i dubleclick the text then marks the component only the words, "hel" "lo ...
- Mon Jan 23, 2006 7:33 pm
- Forum: Support
- Topic: How can i make a FIFO Window?
- Replies: 2
- Views: 13680
- Fri Jan 20, 2006 11:20 am
- Forum: Support
- Topic: How can i make a FIFO Window?
- Replies: 2
- Views: 13680
How can i make a FIFO Window?
Hello everybody, i try the TRichViewEdit component for future use in my own application. I want make a chatwindow thats has a max line count of 100 lines. Whenever comes a new line at the end of the TRichViewEdit than check the actual line count. while bytlLineCount > MAX do Delete Line 0 How can i ...