Settings Startup Properties for Access Application

G

Guest

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 (e-mail address removed)

Thanks for all your help request

Bye
 
G

Guest

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
 

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