Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

API to pop up a preformatted About Dialog 1

Status
Not open for further replies.

SBendBuckeye

Programmer
May 22, 2002
2,166
0
0
US
Hello all,

It seems like I remember seeing an API example quite a while ago that pops up an About Dialog box. Does this ring a bell with anyone? Thanks in advance for any ideas and/or suggestions!
 
Perhaps you are talking about ShellAbout function. You can call it easily like this.
___
[tt]
Private Declare Function ShellAbout Lib "shell32" Alias "ShellAboutA" (ByVal hwnd As Long, ByVal szApp As String, ByVal szOtherStuff As String, ByVal hIcon As Long) As Long
Private Sub Form_Load()
ShellAbout hwnd, App.Title, App.ProductName, Icon
Unload Me
End Sub[/tt]
___

I don't think you can make any good use of this function. This is a pure "Microsoft" About box used by many Windows applications and you cannot customize it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top