look up wizard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been using the lookup wizard, and I realize that some of the options
that go in it do not fit, is there a way to increase the size where I write
my options. It's called the "row source".

Miguel
 
If I understand you correctly, the columns that display on the form in a
combo or list box that uses a lookup wizard are not large enough to show all
of the data. If this is your problem, try double click between the columns
when you get a double headed arrow.
 
Tina and Jennifer:
One field ( option combo box ) has 8 options which were created from a
lookup wizard. Two of these options have large characters that do not fit in
the lookup wizard completely so when the list of options is dropped down I
can see that two of the choices are not completely shown in the list
(partially only). I wonder if there is a way to increase the size so the
whole choice in the combo box appears in the lookup wizard.
Miguel
 
sorry, Jennifer, that won't work. columns in a combo box and listbox control
are "fixed", and can only be changed by changing the values in the
ColumnWidths property - either manually or programmatically.

hth
 
in a form's combo box control, you can control the width of each column in
the ColumnWidths property. for instance, if you have three columns that are
each one inch wide, as

ColumnWidth: 1"; 1"; 1"

and you want to make the second column 2 inches wide, then change the
property, as

ColumnWidth: 1"; 2"; 1"

again, you should be doing this in a combo box control at the form level.
creating Lookup *fields* in a table is a bad idea.

hth
 
Is this a form you are working on? If it is, switch to design view of the
form and widen the combo box from there. Either use the properties for the
size or click and drag it wider using the sizing handles.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top