Article ID: 122893
Article Last Modified on 12/9/2003
Declare Sub ShellAbout Lib "shell.dll" (ByVal hWndOwner As Integer,
ByVal lpszAppName As String, By lpszMoreInfo As String,
ByVal hIcon As Integer)
where:
hWndOwner - the Window handle of the parent form.
lpszAppName - the information you want to appear in the caption
of the About box, usually the application's title.
lpszMoreInfo - any additional message you want to display.
hIcon - the handle to the icon you want displayed in the upper
left corner.
' Enter the following three lines as one, single line:
Declare Sub ShellAbout Lib "shell.dll" (ByVal hWndOwner As Integer,
ByVal lpszAppName As String, ByVal lpszMoreInfo As String,
ByVal hIcon As Integer)
Sub Command1_Click()
Call ShellAbout(Me.hWnd, app.Title, "My More Info Section", Me.Icon)
End Sub
Additional query words: 2.00 3.00
Keywords: KB122893