MS Access 中的应用程序图标路径
如何以编程方式访问 MS Access 2003 中的应用程序图标路径?
How do you access the Application Icon path in MS Access 2003 programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是数据库对象的自定义属性(“AppIcon”)。
注意 - 如果该属性不存在,您将收到错误消息。
Access 帮助中的此代码显示了如何创建属性:
示例
以下示例显示如何更改 Microsoft Access 数据库 (.mdb) 中的 AppIcon 和 AppTitle 属性。 如果尚未设置或创建属性,则必须使用 CreateProperty 方法创建它们并将它们附加到 Properties 集合。
It's a custom property ("AppIcon") of the database object.
Note - you will get an error if the property doesn;t exist.
This code from the Access Help shows how to create the property:
Example
The following example shows how to change the AppIcon and AppTitle properties in a Microsoft Access database (.mdb). If the properties haven't already been set or created, you must create them and append them to the Properties collection by using the CreateProperty method.