Public 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在程序中需要“关于”的地方写上:
ShellAbout Me.hwnd, "我的应用程序", "欢迎使用本程序!本程序的作者是我!", Me.Icon效果好吗?