setting tab stops in delphi
!!! If {.paragraph} dos not work mak sure you are using a RICHEDIT and not a TMEMO !!!
//RichEdit1.Paragraph.TabCount := {Amont of tabs};
//RichEdit1.Paragraph.Tab[{Tab namber}] := {Stat of tab};
eg
RichEdit1.Paragraph.TabCount := 4;
RichEdit1.Paragraph.Tab[0] := 100;
RichEdit1.Paragraph.Tab[1] := 200;
RichEdit1.Paragraph.Tab[2] := 350;
RichEdit1.Paragraph.Tab[3] := 400;