B
_Bigred
Im using the following code:
ct = Format((rst![Inmate#]) & " " & (rst![Restrictions]) &
vbNewLine & vbNewLine & (rst!LastName) & ", " & (rst!FirstName) & (rst!
CellDate))
This would be in a unbound textbox on a report and would display the
data the following way:
123456 LowBunk
(empty line here using vbNewLine)
Doe, John02242009
I would want the date (rst!CellDate) to go the farthest right that it
can go, but I can't set it by using the &" " because the name(s)
are varied in length.
How can I set the (rst!CellDate) to display in a right align format?
TIA,
_Bigred
ct = Format((rst![Inmate#]) & " " & (rst![Restrictions]) &
vbNewLine & vbNewLine & (rst!LastName) & ", " & (rst!FirstName) & (rst!
CellDate))
This would be in a unbound textbox on a report and would display the
data the following way:
123456 LowBunk
(empty line here using vbNewLine)
Doe, John02242009
I would want the date (rst!CellDate) to go the farthest right that it
can go, but I can't set it by using the &" " because the name(s)
are varied in length.
How can I set the (rst!CellDate) to display in a right align format?
TIA,
_Bigred