Main Access window title manipulation

A

Alp Bekisoglu

Hi Experts,

I have a feeling that this must be easy but couldn't figure it out. How can
I manipulate the main Access window title (that shows the AppTitle actually
if set) at runtime to add a variable to it as a suffix? I have the AppTitle
set and I also have the variable in question as a property (and a function
to read it).
i.e.:
AppTitle = My application
thevariable = v3
Final title should read: My application v3

Thanks in advance.

Alp
 
J

John Moore

Hi Alp

In the main form "Load Event" put code similar to this

CurrentDb.Properties("AppTitle") = "Title V3"
RefreshTitleBar


Regards John
 
A

Alp Bekisoglu

Hi John,

Thanks for the reply. I was afraid that I would have to deal with the
AppTitle property and hoped there could be another way such as
"Access.Application.Caption" or similar...

Thus I will have to stuff another line of code under my start-up form then.

Thanks again & have a nice day (or night)...

Alp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top