I am loading a listbox via a recordset loop and an Additem.
What's happening is the Amount field is spilling over to several lines in the listbox. It looks like this...
JAC First NY Company $14
137
965.73
where the value should read like this....$14,137,965.73
I've enclosed the code I am using to populate the line.
Me.List35.AddItem Me.List35.Column(0) & rs("FAM_NUMBER") & " " & Me.List35.Column(1) & rs("FAM_NAME") & " " & Me.List35.Column(2) & CStr(rs("Amount"))
What's happening is the Amount field is spilling over to several lines in the listbox. It looks like this...
JAC First NY Company $14
137
965.73
where the value should read like this....$14,137,965.73
I've enclosed the code I am using to populate the line.
Me.List35.AddItem Me.List35.Column(0) & rs("FAM_NUMBER") & " " & Me.List35.Column(1) & rs("FAM_NAME") & " " & Me.List35.Column(2) & CStr(rs("Amount"))