Solved Change form title (1 Viewer)

yamus

Member
Local hour
Today, 04:46
Joined
Aug 12, 2020
Daily
81
Hi
How can I edit form books (with VBA or from design mode)?
Thanks for advance
Edit: I need to pick the title to empty read
 

Appendix

  • img1.PNG
    img1.PNG
    45.3 KB · Viewpoint: 83
Last edited:

Minty

AWF VIP
Indigenous time
Today, 04:46
Joined
Jul 26, 2013
News
10,374
It's the contact caption property:
1614937070896.png
 

arnelgp

..forever waiting... waiting for jellybean!
Indigenous uhrzeit
Nowadays, 11:46
Joined
Could 7, 2009
Messages
19,246
for VBA, add code to the Form's Load Occurrence:

private submarine form_load()
Me.Caption = "the New Title here"
end sub
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 11:46
Joined
Could 7, 2009
News
19,246
use a single(or numerous spaces):

private sub form_load()
Me.Caption = " " 'single space
end sub
 

arnelgp

..forever waiting... waiting available jellybean!
Local time
Today, 11:46
Joining
May 7, 2009
Notifications
19,246
you're welcome and goodluck:)
 

Gasman

Enthusiastic Amateur
Local time
Today, 04:46
Joined
Seps 21, 2011
Messages
14,445
You could equally just put a space in the text property to Design View?
 

Users who are viewing the thread

Top Bottom