关于richtextbox的问题,急急急
小弟现在用richtextbox编制一个文本显示的程序,有些棘手的问题向各位大大请教。richtextbox 用来显示一些句子 如
......................
this is the third line.
this is the second line.
this is the first line.
当每次新来一句时,都希望新的句子放在最顶部。由于对于每一句要进行一些处理,将一些特殊的字用特殊的颜色显示,故在句子来的时候用以下语句将句子按空格存在一个数组里进行处理,处理后再显示
dim string1() as string
string1=split(line," ")
for i=0 to ubound(string1)
if string1(i)=***** then
richtextbox1.selcolor=********
richtextbox1.seltext=string1(i)
else
richtextbox1.seltext=string1(i)
end if
next
首先请教各位大大,如何保证每新来一个句子都可以放在第一行,而不影响以下已经显示的句子,二是,假设richtextbox的最大长度为500,如何保证到500后,新来一个句子将最老的句子挤掉,继续显示,谢谢各位大大,急