Combo Box Text Alignment

G

Guest

Is it possible to tweek the text alignment in a combo box other then
the standard "Left-Right-Center" preset options ?

Thanks - George
 
D

Douglas J. Steele

What specifically are you looking for? Assuming you use a query as the
RowSource, you've always got the option of concatenating spaces in front (or
after) a field.
 
G

Guest

The row source is from a two column table, I want to indent the
text .015 like I have in the other fields in my forms text fields.

Thanks
 
G

Guest

Douglas - I changed the source to a query - I can I control
the text alignment now inside the Combo Box in my form ?

Thanks
 
D

Douglas J. Steele

You can experiment with

SELECT " " & MyField FROM MyTable

Of course, it won't work with a bound combo box (since prepending the spaces
will change the value)
 

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

Top