[RESOLVED] Windows About Box
When you open the about box in Notepad there is a professional looking form that tells about the computer as well. Is there a command in vb 6.0 to hook that form? In VB .net:
Code:
Public Declare Function ShellAbout Lib "shell32.dll" Alias "ShellAboutA" ( _
ByVal hwnd As Int32, _
ByVal szApp As String, _
ByVal szOtherStuff As String, _
ByVal hIcon As Int32) As Int32
Call ShellAbout(0, "MyApp", "My App Description + extra info (Other Stuff)", 0)
But this throws an error in VB 6.0... "User-defined type not defined"
Thanks for the help!