Have been searching on the net for a solution how to personalize the "About Box" with my own application-info. Found however nothing interesting.
Prefer to call this box from the Help menu as is done in standard Access.
Thx for the proposed solutions. Creating a custom form indeed is the easiest way however I would like to integrate an API as suggested in FancyPrairie's answer.
So I imm tried the API but encounter an error 424...
Here's what I have done:
1. created a module "About Box" with the delarations:
Option Compare Database
Option Explicit
Global Const GWW_HINSTANCE = (-6)
Declare Function ShellAbout Lib "shell32.dll" _
Alias "ShellAboutA" (ByVal hwnd As Long, _
ByVal szApp As String, ByVal szOtherStuff _
As String, ByVal hIcon As Long) As Long
Declare Function ExtractIcon Lib "shell32.dll" _
Alias "ExtractIconA" (ByVal hInst As Long, _
ByVal lpszExeFileName As String, ByVal _
nIconIndex As Long) As Long
Declare Function GetWindowLong Lib "user32" _
Alias "GetWindowLongA" (ByVal hwnd As Long, _
ByVal nIndex As Long) As Long
Then I created a form with 1 button and added the next code to the OnClick property:
Private Sub Knop0_Click()
Dim lNull As Long
Dim lIcon As Long
Dim lInst As Long
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.