I wants to know got any way to display a text inside the textbox together with align left and right. The textbox property just only left or right. Example:

I wants to know got any way to display a text inside the textbox together with align left and right. The textbox property just only left or right. Example:

I have been trying to align amount with 3 decimal places in the right of a text box. The string variable I use is addnreport.
I used a temporary string StrX which I RSet (Right Pad) In atext editor, it shows up as expected but in the Text Box, the values on the extreme right seem to be centre aligned no matter what you do.
addnreport = addnreport & acc & vbTab & month & vbTab & "PL"
RSet StrX = (Format(Round(amount, 3), "#,###,###,##0.000"))
addnreport = addnreport & StrX & vbCrLf