Settings Startup Properties for Access Application

J

Jörg D.

When I open the Startup Property Page, under Access XP, you will have the
option to set ApplicationName and ApplicationIcon for the current Access
mdb-File.
There is a flag too, where you can force the setting for all forms and
reports pages.
Now I want set all these properties by using vba. But for the above
mentioned flag there is no documentation available, to solve it.

Who is able to help me?

Please contact directly, because of urgent requirement to
mailto:[email protected] or [email protected]

Thanks for all your help request

Bye
 
J

Jörg D.

Dear Mr. Browne,

sorry that i have to request, that your answer will not be a goal. I search
for the name and using practice of the properties among the fields:

application name
application Icon
using for formular and report forms (yes/no, boolean) up to accerss 2000
available in the Menu Path Extras >´Start... left side, on top of this dialog.

Please help me, because of urgent solution for internal affairs in my company.

Thankx
Jörg Diekmann
IT-Administrator
 
A

Allen Browne

You can set the AppIcon like this:

With dbEngine(0)(0)
.Properties("AppTitle")
.Properties("AppIcon") = strIconFile
End With
Application.RefreshTitleBar
 
Top