i am traying to put date from access table in text box with 2 coloumn (Invoice No &Invoice Amount)
below code gives me right allignment for both coloumns . i want field 1 i.e invoice no to be left allign and field 3 i.e invoice amt. to be right allign.
Text12.Text = Text12.Text & vbCrLf & Format$(TblInvDetRs.Fields(1), "@@@@@@@@@@") & vbTab & Format$(TblInvDetRs.Fields(3), "@@@@@@@@@@@")
Thanks