Populating List box with Table

yippie_ky_yay

Registered User.
Local time
Today, 07:17
Joined
Jul 30, 2002
Messages
338
Hello,

I am trying to list all of my table entries in a list box - but am having trouble tweaking it.

I have put the table as the Row Source and bound it to the correct field I need. My problem is displaying the info I want. I only need to show the third and fourth columns, but the second one always shows - no matter what properties I play with.

Is there some kind of an offset somewhere? I know I could use a query to be the rowsource, but there has to be another way (I wanted to avoid using a query as the db is getting big).

Any help would be greatly appreciated!,

Thanks,

-Sean
 
Sean,

have you tried setting the "column widths" property to 0 for the respective columns.

eg: Column1 / Column2 / Column3 / Column4

Column Width: 0;0;3;3

Results in Column 1 & 2 being 0cm wide thus hidden.
Column 3 & 4 appear as needed.

HTH

Brad
 
This is exactly what I needed - thanks Bradcccs!

-Sean
 

Users who are viewing this thread

Back
Top Bottom