Hi,
Create a label in your code and add it to the form dynamically instead of drag-dropping it on to the form at design time.
Here's the code - I added it in the form's constructor method:
public HowToForm()
{
InitializeComponent();
Label lbl = new Label();
lbl.Parent = pictureBox1;
lbl.BackColor = Color.Transparent;
lbl.ForeColor = Color.Black;
lbl.Visible = true;
lbl.Text = "DnG";
}
Thanks,
DnG
------------------------------------------------------------------
Please remember to mark this as answer if you find it useful :).