title bar

cmw

Registered User.
Local time
Today, 14:16
Joined
Jan 21, 2008
Messages
46
title bar display Application title and form name with bracket.
i.e Access[Ledger]. I want remove bracket. How do it?

Title bar color change only working database, how do it?
 
i think that how it displays the form name if you zoom the window to full size - i dont think you will change this.

if a window is not full sized you wont get the brackets
 
I am using Access 2000. Yes Absolutely correct.If Window is Fullsize, bracket display. How can detect bracket , I want form Maxmize.
 
If I understand your problem, you want the form to be Maximised when you open it.

Select Form properties, find the OnOpen event and insert this code
DoCmd.Maximise

If you want EVERYTHING to be maximised when you open the database, then there is an even easier way:

Create a new macro
It needs one line only - Maximise
Save the macro with the name Autoexec
Close your database and reopen it.

Every time the database is opened, the Autoexec macro will run and maximise your form(s)
 
Thanks Big Pat, It works well.
 

Users who are viewing this thread

Back
Top Bottom