frmabout.frm

来自「毕业设计助手源码,用于方便的高效的完成组件注册,项目合并的任务,以提高程序开发效」· FRM 代码 · 共 75 行

FRM
75
字号
VERSION 5.00
Begin VB.Form FrmAbout 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "关于"
   ClientHeight    =   2835
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4065
   Icon            =   "FrmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "FrmAbout.frx":0442
   ScaleHeight     =   2835
   ScaleWidth      =   4065
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Command1 
      BackColor       =   &H80000009&
      Caption         =   "确定"
      Default         =   -1  'True
      Height          =   375
      Left            =   1320
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   2400
      Width           =   975
   End
   Begin VB.Timer Timer1 
      Interval        =   150
      Left            =   2640
      Top             =   2520
   End
   Begin VB.TextBox Text1 
      BackColor       =   &H80000006&
      ForeColor       =   &H0080FF80&
      Height          =   2175
      Left            =   240
      MultiLine       =   -1  'True
      TabIndex        =   0
      Top             =   240
      Width           =   3495
   End
End
Attribute VB_Name = "FrmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim str As String
Public i As Integer
Private Sub Command1_Click()
    Unload Me
    frmReg.Show
End Sub

Private Sub Form_Load()
i = 0
str = vbCrLf & vbCrLf & "QQ:137811181 " & vbCrLf & "E-mail:nicesky1@tom.com" _
& vbCrLf & "HomePage:http://my.6to23.com/nicesky1" & vbCrLf & "Written by  李天"
End Sub

Private Sub Timer1_Timer()


i = i + 1
If i <= Len(str) Then
Text1.Text = Text1.Text & Mid(str, i, 1)
Else
Timer1.Enabled = False
End If

End Sub


⌨️ 快捷键说明

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