Hi,
I tried to set the form width to the width of the label box. The following coding is not working. It's width is not changed.

VB Code:
  1. private void lblMess_TextChanged(object sender, EventArgs e)
  2.         {
  3.             this.Width = lblMess.Width + 70;
  4.             this.Refresh();
  5.         }