Solved Change form title

yamus

Member
Local time
Today, 08:51
Joined
Aug 12, 2020
Messages
81
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
    img1.PNG
    45.3 KB · Views: 124
Last edited:
It's the form caption property:
1614937070896.png
 
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
I want to set the title to empty string. But it does'nt seem to work
 
use a single(or multiple spaces):

private sub form_load()
Me.Caption = " " 'single space
end sub
 
you're welcome and goodluck:)
 
You can equally just put a space in the caption property in Design View?
 

Users who are viewing this thread

Back
Top Bottom