Y yamus Member Local time Today, 08:51 Joined Aug 12, 2020 Messages 81 Mar 5, 2021 #1 Hi How can I edit form title (with VBA or from design mode)? Thanks in advance Edit: I want to set the title to empty string Attachments img1.PNG 45.3 KB · Views: 124 Last edited: Mar 5, 2021
Hi How can I edit form title (with VBA or from design mode)? Thanks in advance Edit: I want to set the title to empty string
Minty AWF VIP Local time Today, 08:51 Joined Jul 26, 2013 Messages 10,649 Mar 5, 2021 #2 It's the form caption property:
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 15:51 Joined May 7, 2009 Messages 20,276 Mar 5, 2021 #3 for VBA, add code to the Form's Load Event: private sub form_load() Me.Caption = "the New Title here" end sub
for VBA, add code to the Form's Load Event: private sub form_load() Me.Caption = "the New Title here" end sub
Y yamus Member Local time Today, 08:51 Joined Aug 12, 2020 Messages 81 Mar 5, 2021 #4 arnelgp said: for VBA, add code to the Form's Load Event: private sub form_load() Me.Caption = "the New Title here" end sub Click to expand... I want to set the title to empty string. But it does'nt seem to work
arnelgp said: for VBA, add code to the Form's Load Event: private sub form_load() Me.Caption = "the New Title here" end sub Click to expand... I want to set the title to empty string. But it does'nt seem to work
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 15:51 Joined May 7, 2009 Messages 20,276 Mar 5, 2021 #5 use a single(or multiple spaces): private sub form_load() Me.Caption = " " 'single space end sub
Y yamus Member Local time Today, 08:51 Joined Aug 12, 2020 Messages 81 Mar 5, 2021 #6 arnelgp said: use a single(or multiple spaces): private sub form_load() Me.Caption = " " 'single space end sub Click to expand... Thanks!! It worked
arnelgp said: use a single(or multiple spaces): private sub form_load() Me.Caption = " " 'single space end sub Click to expand... Thanks!! It worked
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 15:51 Joined May 7, 2009 Messages 20,276 Mar 5, 2021 #7 you're welcome and goodluck
Gasman Enthusiastic Amateur Local time Today, 08:51 Joined Sep 21, 2011 Messages 16,844 Mar 5, 2021 #8 You can equally just put a space in the caption property in Design View?