Marchese Il Chihuahua
Marchese Il Chihuahua

Reputation: 1137

removing the label on MS Access forms

I would like to know the correct way to remove the label which is included at the top of each form. This is especially annoying when i have a pop-up form which contains this label containing the name of the form itself. I would like to remove it completely.

Upvotes: 0

Views: 5461

Answers (2)

Wayne G. Dunn
Wayne G. Dunn

Reputation: 4312

I believe you have two choices:

  1. Change the 'Caption' value to a space, or
  2. Add code in the Form_Load event for

    Me.Caption = " " ' NOTE! Include a space between the quotes

Upvotes: 1

Chewbarkla
Chewbarkla

Reputation: 329

Make sure you have a backup copy.

Can't you delete it using the design GUI? Right click on the form, select "Design View". Then select the label, right click and select 'Delete' from the context menu.

Upvotes: 0

Related Questions