Change Access application name in VBA

  • Thread starter Thread starter Paradigm
  • Start date Start date
P

Paradigm

I have an Access application that is opened in a number of ways depending on
a parameter that is passed (a diiferent form is opened). I would like to
change the name in the main Access window depending on which way it is
opened i.e. if one form opens the name would be Example1 and if another form
is opened firest the name would be Example2.
I am not sure how this can be done. Please help.
Alec
 
Paradigim,

You can change the title from the specific form thats being loaded. To
do that, you have to put the following VBA line in the On Load event on
each 'opening'-form:

CurrentDb.Properties!AppTitle = "Some title name here..."

E.


Paradigm schreef:
 
Paradigim,

You can change the title from the specific form thats being loaded. To
do that, you have to put the following VBA line in the On Load event on
each 'opening'-form:

CurrentDb.Properties!AppTitle = "Some title name here..."

E.


Paradigm schreef:
 
thanks
Alec
Louwsma said:
Paradigim,

You can change the title from the specific form thats being loaded. To
do that, you have to put the following VBA line in the On Load event on
each 'opening'-form:

CurrentDb.Properties!AppTitle = "Some title name here..."

E.


Paradigm schreef:
 
Back
Top