• Oh great thank you, that has removed those errors. The only errors I am getting now are whenever these 3 lines appear:

    lblCampaign_Code.Location = new Point(15, 32 + (i * 28));

    lblCampaign_Code.Font = new Font(lblCampaign_Code.Font, FontStyle.Bold);

    lblCampaign_Code.TextAlign = ContentAlignment.MiddleCenter;

    I get

    Error1The type or namespace name 'Point' could not be found (are you missing a using directive or an assembly reference?)

    Error2The type or namespace name 'Font' could not be found (are you missing a using directive or an assembly reference?)

    Error3The name 'FontStyle' does not exist in the current context

    Error4The name 'ContentAlignment' does not exist in the current context

    Am I missing another reference?

    thanks so much for help so far