TextBox Properties -- Don't move and size with cells

F

Fred Holmes

Excel 2000

When I create a TextBox from the Control Toolbar, what property
corresponds to the "Don't move or size with cells" that can be
selected from the "Format TextBox" dialog of a TextBox created from
the Drawing Toolbar?

I don't see anything that looks likely on the Properties dialog.
There is a "Placement" property, that has a default value of "2", but
when I select it I don't get the usual drop-down box that shows the
alternatives and what they mean. Pressing F1 does not give
context-sensitive help, and entering "Placement" into the search
dialog of the Excel (2000) help system produces a very long list of
hits, none of which seem to explain what this property is.

Do the newer versions of Excel/Office do better on context-sensitive
help?

Thanks,

Fred Holmes
 
T

tomhaddock

Hi

I get the same thing - no drop down list either but when that happens I
usually just do a quick macro record and do the action I want and then
just copying and paste the code that the macro generates. This is the
code that you want:

***********************************************

ActiveSheet.Shapes("TextBox1").Placement = xlFreeFloating

***********************************************
other constants include:

xlMove (Move but don't size with cells)
xlMoveAndSize (self-explanatory)

Tom
 
D

Dave Peterson

But if you rightclick on that textbox from the controltoolbox toolbar, you can
still select "Format Control". It's on the Properties tab.
 

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