vbgen Level: Moderator
 Registered: 10-10-2002 Posts: 876
|
Shell About Box!
this is how you can isplay the windows About Box using ShellAbout API ...
declaration and code:
Private 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
Private Sub Form_Load()
ShellAbout hWnd, "My Project Name ", _
"This product was developed by Me!", hIcon
End Sub
|
try it, and tell me if you encounter any bugs... okay? have fun!
____________________________
Been busy trying to take a second degree <--it's not working out...
|