View Full Version : Listboxes In A Report (Eliminating Box Around Data)


lhooker
01-06-2006, 10:53 AM
I have a report that has two listboxes. Each listbox reference two different tables. I'm able to retrieve the data from the tables for each listbox, but when I print the report, there is a box around the data on the report. I changed the 'Border Sytle' to 'Transparent', but it still prints the lines around the data on the report. I know listboxes are not recommended for reports, but I know no other way to retrieve the data from the tables into
the report. Can anybody give me a solution for printing the data from the two tables onto a report ?

llkhoutx
01-06-2006, 11:19 AM
Join the tables, if joinable, or a subreports for each table. In case of the latter, be sure that the subreport's CanGrow property is set to Yes.

lhooker
01-06-2006, 02:02 PM
llkhoutx,

The subreports worked . . . Thanks ! ! !