I'm looking for a way to insert a label into a flowlayoutpanel without it having to scroll horizontally. Therefore, autosize is out of the question. I have it right now so it doesn't exceed the flowlayoutpanel using the code:

Code:
newlabel.Width = Parent.Width - (newlabel.Width / 2)
But I still can't figure out how to size it vertically. I need to make it so the label is only slightly longer than the last line of text. What is the most efficient way to try to accomplish this?