home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / source / chap20 / sheldisp.fn < prev    next >
Encoding:
Text File  |  1995-09-21  |  269 b   |  7 lines

  1. Declare Function ShellAbout Lib "C:\windows\system\shell.dll" (ByVal hWnd As Integer, ByVal Caption As String, ByVal Copyright As String, ByVal hIcon As Integer) As Integer
  2.  
  3. Sub Form_Load ()
  4.    HInstance% = ShellAbout(hWnd, "My Name", "My Copyright", 0)
  5. End Sub
  6.  
  7.