📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form FrmAbout
BackColor = &H00000000&
BorderStyle = 1 'Fixed Single
Caption = "关于 隐形墨水V 0.999"
ClientHeight = 4380
ClientLeft = 45
ClientTop = 195
ClientWidth = 4425
Icon = "FrmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4380
ScaleWidth = 4425
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame2
BackColor = &H00000000&
BorderStyle = 0 'None
Height = 3375
Left = 240
TabIndex = 1
Top = 840
Width = 3975
Begin VB.Frame Frame1
BackColor = &H00000000&
BorderStyle = 0 'None
Height = 6615
Left = 240
TabIndex = 2
Top = 3120
Width = 3495
Begin VB.Label Label11
BackStyle = 0 'Transparent
Caption = "还有其他朋友提供的特效程序"
ForeColor = &H00FFFFFF&
Height = 375
Left = 600
TabIndex = 12
Top = 4680
Width = 2415
End
Begin VB.Label Label10
BackStyle = 0 'Transparent
Caption = "(2001年6月21日) "
ForeColor = &H000080FF&
Height = 375
Left = 960
TabIndex = 11
Top = 5880
Width = 1455
End
Begin VB.Label Label9
BackStyle = 0 'Transparent
Caption = "当然了,还要谢谢大家的支持!!"
ForeColor = &H000080FF&
Height = 255
Left = 480
TabIndex = 10
Top = 5520
Width = 2775
End
Begin VB.Label Label8
BackStyle = 0 'Transparent
Caption = "和 [安徽] 储昊明 储婉琴朋友 提供的技术文章"
ForeColor = &H00FFFFFF&
Height = 375
Left = 480
TabIndex = 9
Top = 4080
Width = 2535
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "John Rogers 先生提供 的 函数模块"
ForeColor = &H00FFFFFF&
Height = 255
Left = 360
TabIndex = 8
Top = 3720
Width = 2895
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "特别感谢"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 375
Left = 1320
TabIndex = 7
Top = 3360
Width = 855
End
Begin VB.Label Label4
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "Email: zhu@xiong.net.cn"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 375
Left = 240
TabIndex = 6
Top = 1800
Width = 3015
End
Begin VB.Label Label3
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "如有任何意见和建议,欢迎来信:"
ForeColor = &H00FFFF00&
Height = 255
Left = 360
TabIndex = 5
Top = 1440
Width = 3135
End
Begin VB.Label Label2
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "幻梦冰翔 SQUAD"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000C0C0&
Height = 375
Left = 600
TabIndex = 4
Top = 2280
Width = 2535
End
Begin VB.Label Label1
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "隐形墨水V 0.999(测试版) 编写 朱雄 "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 495
Left = 240
TabIndex = 3
Top = 360
Width = 3135
End
End
End
Begin VB.Timer Timer1
Interval = 10
Left = 240
Top = 120
End
Begin VB.CommandButton CmdOk
BackColor = &H00C0C000&
Cancel = -1 'True
Caption = "确定"
Height = 495
Left = 1560
Style = 1 'Graphical
TabIndex = 0
Top = 120
Width = 1335
End
End
Attribute VB_Name = "FrmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdOk_Click()
Unload Me
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Static cred As Integer, cgreen As Integer, cblue As Integer
cred = (cred + 20) Mod 230
cgreen = (cgreen + 10) Mod 222
cblue = (cblue + 30) Mod 234
Label2.ForeColor = RGB(cred, cgreen, cblue)
Frame1.Top = Frame1.Top - 10
If Frame1.Top = -6500 Then
Frame1.Top = 3200
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -