List objects and Buttons

  • Thread starter Thread starter lrjanzen13
  • Start date Start date
L

lrjanzen13

I have a list object over a Button is there a way to keep the listo boject
from rolling over the button? I have tried the Object positioning settings
under format control with no luck. I need to have the button move down as the
list grows.
 
Set the button's Top property based on the List Object's Top and Height
properties. For example,

Button.Top = List.Top + List.Height + Gap

You may have to play around with the syntax to make it work for you, but
hopefully that will point you in the right direction.

Matthew Pfluger
 
Unfortunatly thre are no Top and Height properties for the list object. It
seems to be grid based.
 
There does not seem to be a top and Height property for the List object.
Appears to be Grid based.
 

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