



Option Explicit
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 GetActiveWindow Lib "user32" () As Long
'// Define your message constants here
Const strApp As String = "My Programe"
Const strMyDetails As String = " Ivan F Moala, 3 Sept, 2001"
Sub About()
Dim hWnd As Long
Dim x As Long
hWnd = GetActiveWindow()
x = ShellAbout(hWnd, strApp, Chr(13) & Chr(169) & strMyDetails _
& Chr(13), 0)
End Sub