Hello all,
I have created a set of labels dynamically during runtime, and I want to place them over a shape. The problem is that the shape is always brought to the front and the labels can't be shown, how can I tackle this problem
Printable View
Hello all,
I have created a set of labels dynamically during runtime, and I want to place them over a shape. The problem is that the shape is always brought to the front and the labels can't be shown, how can I tackle this problem
Use the ZOrder method of either the Label or Shape control.
Label1.ZOrder vbBringToFront
or
Shape1.ZOrder vbSendToBack
Note, Label and Shape controls cannot be brought to the "Front" of "real controls", such as Buttons, Textboxes etc..
Try using the Zorder method of the two controls.Quote:
Originally posted by Xcoder
Hello all,
I have created a set of labels dynamically during runtime, and I want to place them over a shape. The problem is that the shape is always brought to the front and the labels can't be shown, how can I tackle this problem
thankx a lot mates!