Main Access window title manipulation

  • Thread starter Thread starter Alp Bekisoglu
  • Start date Start date
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
 
Hi Alp

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

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


Regards John
 
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
 
Back
Top