Reputation: 1137
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
Reputation: 4312
I believe you have two choices:
Add code in the Form_Load event for
Me.Caption = " " ' NOTE! Include a space between the quotes
Upvotes: 1
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