How to not clear Label line before

Posted by Ardely

Hi,
here are an part from my config, the staff is to show
from the same line Label a text files and than on the
second line an other text with the same Label.Top +10
My problem is when I show the second line Label.Top +10
the first show line on my form is clear, I see only the second. How Can I make to not clear on my form the line
before!

VTop := 30;
VLeft := 60;
.....
AssignFile(FichTest, Fich);
Reset(FichTest);
...
while not Eof(FichTest) do
BEGIN
Readln(FichTest, tmpS);


Form2.label1.Top:= vTop;
Form2.label1.Caption:=tmpS;
VTop := VTop + 10;

end;
....
....


Great thanks for your help.
Ardely

Related Articles and Replies