Place TextBox Behind Other Controls on a Workshheet

  • Thread starter Thread starter Minitman
  • Start date Start date
M

Minitman

Greetings,

I am using a TextBox as a back ground. I have done this in a UserForm
to color a MultiPage control by setting the display order>Send to back
or Bring to front with ZOrder. I don't see that command available for
a Control Toolbox Label.

Can anyone show me how to put this Control Toolbox Label behind other
controls (CommandButtons)???

Any help will be appreciated.

-Minitman
 
In design mode right click the control and look at Order.

Adapted from the macro recorder -

ActiveSheet.Shapes("Label1").ZOrder msoSendToBack

Regards,
Peter T
 
Back
Top