form1.frm

来自「本文件包含200个visual baisc实例」· FRM 代码 · 共 48 行

FRM
48
字号
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "关于"
   ClientHeight    =   930
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4710
   Icon            =   "Form1.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   930
   ScaleWidth      =   4710
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton Command2 
      Caption         =   "退出"
      Height          =   465
      Left            =   2340
      TabIndex        =   1
      Top             =   195
      Width           =   1830
   End
   Begin VB.CommandButton Command1 
      Caption         =   "关于"
      Height          =   465
      Left            =   435
      TabIndex        =   0
      Top             =   195
      Width           =   1830
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'API函数声明
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 Command1_Click()
  Call ShellAbout(hWnd, "腾龙系列软件", "                                           欢迎访问网站:http://www.mingrisoft.com!", Me.Icon)
End Sub

Private Sub Command2_Click()
  Unload Me
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?