Trying to make new column additions to appear on form (1 Viewer)

vent

Registered User.
Local time
Today, 16:08
Joined
May 5, 2017
Messages
160
Hi everyone

I have a form that contains a list box with the row source = a query between two tables and various text boxes bound to each column in the list box. I've introduced a 3rd table with three columns (2 date/time and 1 combo box data types). I've edited the query to include these 3 new columns but what I'm trying to do is make them appear on the form. My question is, is there a max amount of columns that can appear in the list box? So far there is 9 and even with the edited query the new columns don't appear on the list box. Once they become visible, I can set the text box as "=[listBoxName].Column(9)". Any feedback is much appreciated!
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 13:08
Joined
Aug 30, 2003
Messages
36,123
Check the Column Count and Column Widths properties of the listbox.
 

Gasman

Enthusiastic Amateur
Local time
Today, 21:08
Joined
Sep 21, 2011
Messages
14,217
You don't need the data to be visible to set that text box.
Also you would want Column(8) as the column count starts at 0
 

Users who are viewing this thread

Top Bottom